/* Variables */
:root {
    --primary-color: #ff0000;
    --secondary-color: #222;
    --accent-color: #ff0000;
    --dark-color: #111;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --gray: #666;
    --light-gray: #e0e0e0;
    --danger: #ff0000;
    --success: #00cc66;
    --warning: #ffcc00;
    --info: #33b5e5;
    
    --primary-gradient: linear-gradient(45deg, var(--primary-color), #cc0000);
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.3);
    --shadow-xl: 0 16px 32px rgba(0,0,0,0.4);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --border-radius-sm: 2px;
    --border-radius-lg: 8px;
    --border-radius-xl: 16px;
    --font-family: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--white);
    font-weight: 400;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 2000;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background: var(--primary-gradient);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--dark-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
    opacity: 0.8;
}

/* Buttons & CTAs */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.cta-button {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-medium);
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.cta-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.cta-button:hover::after {
    left: 100%;
}

.package-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

.package-button:hover {
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.package-button:hover::before {
    width: 100%;
}

.form-button {
    width: 100%;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.form-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.form-button:hover {
    box-shadow: var(--shadow-medium);
}

.form-button:hover::after {
    left: 100%;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled .navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styling */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    line-height: 1;
}

.logo-text span {
    color: var(--primary-color);
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
    transition: var(--transition);
}

.logo a:hover .logo-tagline {
    color: var(--primary-color);
}

.logo-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    bottom: -3px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo img {
    height: 50px;
}

.nav-links ul {
    display: flex;
}

.nav-links ul li {
    margin: 0 15px;
    position: relative;
}

.nav-links ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.language-switcher {
    margin-right: 30px;
    color: var(--white);
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.language-switcher a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--light-color);
    margin: 0 5px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a.active {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
}

.language-switcher span {
    margin: 0 3px;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--secondary-color);
    perspective: 1000px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('../images/IMG_2312-Enhanced-NR.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroEffects 30s infinite alternate;
    transform-origin: center;
    position: relative;
    filter: saturate(1.2) contrast(1.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,0,0,0.3) 0%, rgba(0,0,0,0) 60%);
    z-index: 2;
    animation: gradientPulse 8s infinite alternate;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 40%, rgba(255,255,255,0.15) 0%, transparent 60%);
    z-index: 3;
    mix-blend-mode: overlay;
    animation: spotlightMove 20s infinite alternate;
}

@keyframes heroEffects {
    0% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        filter: brightness(1) contrast(1.1);
    }
    33% {
        transform: scale(1.05) translate(-1%, -1%) rotate(0.5deg);
        filter: brightness(1.05) contrast(1.15);
    }
    66% {
        transform: scale(1.08) translate(1%, 0%) rotate(-0.2deg);
        filter: brightness(1.1) contrast(1.2);
    }
    100% {
        transform: scale(1.1) translate(0%, 1%) rotate(-0.5deg);
        filter: brightness(1.15) contrast(1.25);
    }
}

@keyframes spotlightMove {
    0% {
        opacity: 0.6;
        transform: scale(1) translate(0, 0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05) translate(-2%, -3%);
    }
    100% {
        opacity: 1;
        transform: scale(1.1) translate(-4%, -1%);
    }
}

@keyframes gradientPulse {
    0% {
        opacity: 0.4;
        background: linear-gradient(135deg, rgba(255,0,0,0.3) 0%, rgba(0,0,0,0) 60%);
    }
    50% {
        opacity: 0.6;
        background: linear-gradient(135deg, rgba(255,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
    }
    100% {
        opacity: 0.8;
        background: linear-gradient(135deg, rgba(255,0,0,0.5) 0%, rgba(0,0,0,0) 70%);
    }
}

.hero-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--white);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-info {
    text-align: left;
}

.hero-info h1 {
    font-size: 5.2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: titleReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
    position: relative;
    display: inline-block;
}

.hero-info h1::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    top: 0;
    left: -20%;
    animation: titleSweep 3s ease-in-out infinite 2s;
    z-index: -1;
}

.hero-info h1::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 6px;
    background: var(--primary-gradient);
    bottom: -20px;
    left: 0;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px rgba(255, 0, 0, 0.4);
    animation: pulseWidth 4s infinite alternate ease-in-out;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleSweep {
    0% {
        transform: translateX(-100%) skewX(-20deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-20deg);
        opacity: 0;
    }
}

@keyframes pulseWidth {
    0% {
        width: 80px;
        opacity: 0.7;
    }
    50% {
        width: 140px;
        opacity: 1;
    }
    100% {
        width: 100px;
        opacity: 0.9;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-slogans {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s;
}

.slogan {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInRight 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    position: relative;
    padding-left: 15px;
}

.slogan:nth-child(1) {
    animation-delay: 0.9s;
}

.slogan:nth-child(2) {
    animation-delay: 1.1s;
}

.slogan:nth-child(3) {
    margin-bottom: 0;
    animation-delay: 1.3s;
}

.slogan::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    left: 0;
    top: 0;
    animation: lineGrow 0.5s forwards;
    animation-delay: inherit;
}

@keyframes lineGrow {
    to {
        height: 100%;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slogan i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 0, 0, 0.15);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3), inset 0 0 15px rgba(255, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.slogan i::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
    top: 0;
    left: 0;
}

.slogan:hover i {
    transform: scale(1.15) rotate(10deg);
    background-color: rgba(255, 0, 0, 0.25);
    color: #fff;
}

.slogan:hover i::after {
    opacity: 0.6;
}

.slogan h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.slogan:hover h2 {
    transform: translateX(5px);
}

.slogan strong {
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
}

.slogan strong::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -3px;
    left: 0;
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scaleX(0.9);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
    100% {
        opacity: 0.5;
        transform: scaleX(0.9);
    }
}

.hero-info .cta-button {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 1.5s;
    padding: 22px 50px;
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.5);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    filter: brightness(1);
}

.hero-info .cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.hero-info .cta-button:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 0, 0, 0.6);
    filter: brightness(1.1);
    letter-spacing: 4px;
}

.hero-info .cta-button:hover::before {
    transform: scale(1) rotate(-10deg);
}

.hero-info .cta-button span {
    position: relative;
    z-index: 2;
}

.hero-form {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
    animation: formReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.8s;
    position: relative;
    overflow: hidden;
}

.hero-form::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.15), transparent 70%);
    top: -25%;
    left: -25%;
    z-index: -1;
    animation: formGlow 6s infinite alternate;
}

@keyframes formGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes formReveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.form-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.quick-form .form-group {
    margin-bottom: 20px;
}

.quick-form .form-group input,
.quick-form .form-group select {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.quick-form .form-group input:focus,
.quick-form .form-group select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.quick-form .form-button {
    width: 100%;
    padding: 18px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.quick-form .form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.quick-form .form-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.quick-form .form-button:hover::before {
    left: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s forwards 2s, bounce 2s infinite 3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

.scroll-down p {
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.scroll-down .mouse {
    width: 34px;
    height: 55px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.1);
}

.scroll-down .mouse::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 12px;
    background-color: var(--white);
    border-radius: 4px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(25px);
    }
}

/* Custom Responsive Styling for Hero Section */
@media (max-width: 1280px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-info h1 {
        font-size: 4rem;
    }
    
    .slogan h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        gap: 30px;
    }
    
    .hero-info h1 {
        font-size: 3.5rem;
    }
    
    .slogan i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .slogan h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-info {
        text-align: center;
    }
    
    .hero-info h1 {
        font-size: 3rem;
    }
    
    .hero-info h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slogan {
        justify-content: center;
    }
    
    .slogan::before {
        display: none;
    }
    
    .slogan h2 {
        font-size: 1.2rem;
    }
    
    .form-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .hero-info h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .slogan i {
        font-size: 1.6rem;
        margin-right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .slogan h2 {
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    .hero-info .cta-button, 
    .quick-form .form-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Packages Section */
.packages {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0));
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.packages::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.05), rgba(255, 0, 0, 0));
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.packages .container {
    position: relative;
    z-index: 1;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.package-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.02));
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-large);
}

.package-card.premium {
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.package-card.premium::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    top: 0;
    left: 0;
}

.package-header {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.02);
}

.package-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.package-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.package-price {
    text-align: right;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.price-note {
    font-size: 0.8rem;
    color: #777;
}

.package-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.package-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    opacity: 0;
    transition: var(--transition);
}

.package-card:hover .package-image::after {
    opacity: 1;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gradient);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content p {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.package-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 25px;
    display: flex;
    justify-content: center;
}

.premium-feature {
    font-weight: 700;
    color: var(--primary-color);
}

.package-button {
    margin-top: auto;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    z-index: 1;
}

.package-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: -1;
}

.package-button:hover {
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.package-button:hover::before {
    width: 100%;
}

.package-card.premium .package-button {
    background: var(--primary-gradient);
}

.package-card.premium .package-button::before {
    background: var(--secondary-color);
}

/* Responsive styles for packages */
@media (max-width: 1400px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .package-content {
        padding: 25px;
    }
    
    .package-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        padding: 20px;
    }
    
    .package-title {
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .package-price {
        width: 100%;
        text-align: center;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), transparent 70%);
    top: -200px;
    left: -200px;
}

.features::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), transparent 70%);
    bottom: -200px;
    right: -200px;
}

.features .section-title h2 {
    color: var(--white);
}

.features .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--transition);
}

.feature:hover .feature-icon::after {
    transform: translate(-50%, -50%) scale(1.2);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.03;
    top: 0;
    left: 0;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    margin: 0 15px;
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    padding: 35px;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 5rem;
    color: rgba(255, 0, 0, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-color);
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.01);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-small);
}

.testimonial-author h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    align-items: center;
}

.testimonial-author span i {
    color: var(--primary-color);
    margin-right: 5px;
    font-size: 0.8rem;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: var(--transition);
    opacity: 0;
}

.dot.active {
    background-color: var(--primary-color);
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.dot:hover {
    background-color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), transparent);
    top: 0;
    left: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 280px;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 2rem;
    z-index: 2;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('../images/IMG_2863.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1), transparent 70%);
    top: 0;
    left: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.cta-content p {
    margin: 30px 0;
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-content .cta-button {
    padding: 18px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.05), transparent 70%);
    bottom: -150px;
    left: -150px;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-title h2::before {
    left: 0;
    transform: none;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 20px;
    min-width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.contact-item:hover i {
    transform: rotate(10deg);
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--dark-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.social-media {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: var(--shadow-small);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: var(--transition);
    opacity: 0;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: var(--shadow-medium);
}

.social-icon:hover::before {
    opacity: 1;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    top: 0;
    left: 0;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0.01);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
    background-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 90px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 0, 0, 0.3), transparent);
    top: 0;
    left: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo .logo-text {
    display: block;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.footer-logo .logo-text span {
    color: var(--primary-color);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-links h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links ul li:hover {
    transform: translateX(5px);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-newsletter form {
    display: flex;
    position: relative;
}

.footer-newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
}

.footer-newsletter input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-newsletter button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.footer-newsletter button:hover::after {
    left: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p a {
    color: var(--primary-color);
    font-weight: 600;
}

.packages-grid.packages-2column {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
}

.pricing-options {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-option {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-option:last-child {
    border-bottom: none;
}

.person-count {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.person-count i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 25px;
    display: flex;
    justify-content: center;
}

.option-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.per-person {
    font-size: 0.8rem;
    color: #777;
    font-weight: 400;
}

@media (max-width: 1400px) {
    .packages-grid.packages-2column {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .price-option {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .person-count {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .packages-grid.packages-2column {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Mobile menu enhancements */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        margin-left: 15px;
        padding: 8px;
        z-index: 1001;
    }
    
    /* Improved mobile menu positioning */
    .nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        z-index: 1001;
    }
    
    /* Adjust language switcher for better mobile display */
    .language-switcher {
        margin-right: 5px;
        font-size: 14px;
    }

    /* Rest of mobile menu styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        padding: 80px 20px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
    }
    
    .nav-links ul li {
        margin: 15px 0;
    }
    
    .nav-links ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }
    
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--white);
        cursor: pointer;
        transition: var(--transition);
    }
    
    .close-menu:hover {
        color: var(--primary-color);
    }
}

/* Global mobile responsiveness enhancements */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .packages, .features, .testimonials, .gallery, .contact, .cta-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-info .section-title h2::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto;
    }
    
    .testimonials-slider {
        display: flex;
        flex-direction: column;
    }
    
    .testimonial {
        margin-bottom: 30px;
        flex: 0 0 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .testimonial-content p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .testimonial-author {
        padding: 20px 25px;
    }
    
    .testimonial-author img {
        width: 65px;
        height: 65px;
    }
    
    .testimonial-author h4 {
        font-size: 1.2rem;
    }
    
    .testimonials-dots {
        margin-top: 20px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 120px 0 50px;
    }
    
    .hero-grid {
        gap: 30px;
    }
    
    .hero-info h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .slogan i {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .slogan h2 {
        font-size: 1rem;
    }
    
    .quick-form .form-group input,
    .quick-form .form-group select,
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 12px;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .language-switcher {
        margin-right: 15px;
    }
}

/* Fix for fixed backgrounds on iOS */
@supports (-webkit-overflow-scrolling: touch) {
    .cta-section {
        background-attachment: scroll;
    }
}

/* Lightbox for gallery */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Form validation styles */
.form-success {
    background-color: rgba(0, 128, 0, 0.1);
    color: #008000;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.5s;
}

.invalid {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 1px var(--primary-color);
}

/* Touch hover states for mobile */
.touch-hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.package-card.touch-hover {
    transform: translateY(-10px);
}

.social-icon.touch-hover {
    transform: translateY(-5px) rotate(5deg);
}

.gallery-item.touch-hover img {
    transform: scale(1.05);
}

/* Better support for small phones */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-info h1 {
        font-size: 2rem;
    }
    
    .slogan h2 {
        font-size: 0.9rem;
    }
    
    .package-features {
        gap: 10px;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .pricing-options {
        padding: 10px;
    }
    
    .option-price {
        font-size: 1.2rem;
    }
}

/* Form Alert Styles */
.form-alert {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    max-width: 400px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.form-alert.show {
    opacity: 1;
    transform: translateY(0);
}

.form-alert.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left: 5px solid #28a745;
}

.form-alert-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
}

.form-alert-content i.fa-check-circle {
    font-size: 24px;
    margin-right: 15px;
}

.form-alert-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.close-alert {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.close-alert:hover {
    opacity: 1;
}

.close-alert i {
    font-size: 16px;
}

@media (max-width: 576px) {
    .form-alert {
        top: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

/* Additional mobile-specific adjustments */
@media (max-width: 576px) {
    .navbar .container {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        font-size: 22px;
        padding: 6px;
    }
    
    .language-switcher {
        font-size: 12px;
    }
    
    .language-switcher a {
        padding: 5px;
    }
}

/* iPhone-specific adjustments */
@media (max-width: 414px) {
    .navbar .container {
        padding: 0 10px;
    }
    
    .logo-container {
        transform: scale(0.9);
        transform-origin: left center;
    }
    
    .nav-actions {
        transform: scale(0.95);
        transform-origin: right center;
    }
}

/* iPhone and smaller devices specific fixes */
@media (max-width: 414px) {
    /* Adjust header padding */
    header {
        padding: 10px 0;
    }
    
    /* Tighten container spacing */
    .navbar .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    /* Scale logo down for better fit */
    .logo-container {
        transform: scale(0.85);
        transform-origin: left center;
        margin-right: 10px;
    }
    
    /* Ensure hamburger menu is always visible */
    .mobile-menu-toggle {
        font-size: 24px !important;
        padding: 8px !important;
        margin-left: 5px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: rgba(0,0,0,0.2) !important;
        border-radius: 4px !important;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--primary-color) !important;
        background-color: rgba(0,0,0,0.4) !important;
    }
    
    /* Make language switcher more compact */
    .language-switcher {
        margin-right: 8px !important;
    }
    
    .language-switcher a {
        padding: 4px 6px !important;
    }
    
    /* Ensure correct spacing between elements */
    .nav-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex-shrink: 0 !important;
    }
    
    /* Fix logo text size */
    .logo-text {
        font-size: 20px !important;
    }
    
    .logo-tagline {
        font-size: 9px !important;
    }
} 