:root {
    --primary: #0a0a0a;
    --anthracite: #2a2a2a;
    --royal-blue: #0047AB;
    --gold: #D4AF37;
    --platinum: #E5E4E2;
    --accent-blue: #1E90FF;
    --dark-blue: #001f3f;
    --light: #f5f5f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #6a6a6a;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

/* Mobile touch optimization - prevents 300ms click delay */
button, .btn-primary, .btn-secondary, .cta-button, .service-card, .package-button, a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 71, 171, 0.2);
}

/* Ensure all content is above pseudo-elements */
.service-card > * {
    position: relative;
    z-index: 2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(42, 42, 42, 0.95));
    backdrop-filter: blur(15px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 71, 171, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--platinum) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--platinum);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: var(--white);
    padding: 0.4rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 0px solid transparent;
    box-shadow: 0 0px 20px rgba(0, 71, 171, 0.4);
}

.cta-button:hover {
    background: transparent;
    border-color: var(--royal-blue);
    color: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.5);
}

.cta-button:hover::after {
    width: 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(10, 10, 10, 0.85),
        rgba(0, 71, 171, 0.6),
        rgba(42, 42, 42, 0.75));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--platinum) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 5.5rem;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--primary);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: var(--white);
    border: 2px solid var(--royal-blue);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.4);
}

.btn-secondary:hover {
    background: transparent;
    border-color: var(--platinum);
    color: var(--platinum);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 71, 171, 0.6);
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--anthracite) 0%, #1a1a1a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--royal-blue), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-subtitle {
    color: var(--royal-blue);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-subtitle::before {
    right: 110%;
}

.section-subtitle::after {
    left: 110%;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--platinum);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    
}

.service-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8), rgba(10, 10, 10, 0.9));
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        transparent 0%,
        rgba(0, 71, 171, 0.1) 50%,
        transparent 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
    pointer-events: none;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) {
    animation-delay: 0.7s;
    grid-column: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 71, 171, 0.3), 
                0 0 50px rgba(212, 175, 55, 0.1);
    border-color: var(--royal-blue);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(212, 175, 55, 0.5));
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--platinum), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--platinum);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-details-btn {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: var(--white);
    border: 2px solid var(--royal-blue);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 5px 20px rgba(0, 71, 171, 0.3);
    position: relative;
    z-index: 3;
    -webkit-tap-highlight-color: rgba(0, 71, 171, 0.3);
}

.service-details-btn:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.service-card {
    cursor: pointer;
}

.service-card:hover .service-details-btn {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--primary);
    border-color: var(--gold);
}

/* Packages Section */
.packages {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 71, 171, 0.15), transparent 70%);
    border-radius: 50%;
}

.packages .section-title {
    background: linear-gradient(135deg, var(--platinum) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.packages .section-description {
    color: var(--platinum);
}

.packages-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 5%;
}

.package-card {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(10, 10, 10, 0.8));
    backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    max-width: 650px;
    width: 100%;
}

/* Hide first and third package cards - show only the middle one */
.package-card:nth-child(1),
.package-card:nth-child(3) {
    display: none;
}

/* Ensure package card content is above pseudo-elements */
.package-card > * {
    position: relative;
    z-index: 2;
}

.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 71, 171, 0.1), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
    border-color: var(--gold);
    transform: scale(1);
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.3), rgba(42, 42, 42, 0.8));
}

.package-popular {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--primary);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.85rem;
    transform: rotate(45deg);
    letter-spacing: 2px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--royal-blue);
    box-shadow: 0 30px 60px rgba(0, 71, 171, 0.4),
                0 0 50px rgba(212, 175, 55, 0.2);
}

.package-card:hover::before {
    opacity: 1;
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--platinum), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .old-price {
    font-size: 1.8rem;
    text-decoration: line-through;
    opacity: 0.8;
    margin-right: 1rem;
    color: var(--platinum);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--platinum);
    background-clip: unset;
}

.package-price-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    color: var(--platinum);
}

.package-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    padding-left: 2rem;
    color: var(--platinum);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.package-button {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-blue));
    color: var(--white);
    border: 2px solid var(--royal-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
}

.package-button:hover {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 71, 171, 0.5);
}

.package-card:nth-child(2) .package-button {
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--primary);
    border-color: var(--gold);
}

.package-card:nth-child(2) .package-button:hover {
    background: transparent;
    color: var(--gold);
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--platinum) 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about .section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--primary);
    background-clip: unset;
    color: var(--primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.05), transparent);
    padding: 1rem;
    border-radius: 15px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateX(10px);
    border-left-color: var(--royal-blue);
}

.about-feature-icon {
    font-size: 2rem;
    color: var(--royal-blue);
}

.about-feature h4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.4), rgba(212, 175, 55, 0.4));
    z-index: 1;
    opacity: 1;
    transition: var(--transition);
    pointer-events: none;
}

.about-image::after {
    content: 'Mobil Glanz Detailing';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    z-index: 2;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
    white-space: nowrap;
    pointer-events: none;
}

.about-image:hover::before {
    opacity: 0.2;
}

.about-image:hover::after {
    opacity: 0.7;
}

.about-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: var(--transition);
    opacity: 0.8;
}

.about-image:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Gallery Section */
.gallery {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--anthracite) 0%, #1a1a1a 100%);
}

.gallery .section-subtitle {
    color: var(--gold);
}

.gallery .section-title,
.gallery .section-description {
    color: var(--platinum);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--royal-blue);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 71, 171, 0.4);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 71, 171, 0.85),
        rgba(212, 175, 55, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

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

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

.gallery-overlay-text {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    border-radius: 50%;
}

.contact .section-title,
.contact .section-description {
    color: var(--platinum);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.2), rgba(42, 42, 42, 0.3));
    border-radius: 15px;
    border-left: 3px solid var(--gold);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-detail:hover {
    transform: translateX(10px);
    border-left-color: var(--royal-blue);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    min-width: 40px;
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--platinum);
}

.contact-detail p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.contact-form {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(10, 10, 10, 0.8));
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--platinum);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
    background: rgba(0, 71, 171, 0.1);
    box-shadow: 0 0 20px rgba(0, 71, 171, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--primary);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.3), rgba(212, 175, 55, 0.2));
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--royal-blue), var(--gold));
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Make video cover properly on mobile */
    .hero-video {
        width: 100%;
        height: 100%;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 3rem 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h1 span {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        padding: 0 1rem;
    }

    .package-card {
        max-width: 100%;
    }

    .package-card:nth-child(2) {
        transform: scale(1);
    }
}

@media (max-width: 600px) {
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Mobile Modal Fixes */
    .service-modal-content {
        padding: 1.2rem;
        width: 95%;
        border-radius: 20px;
        max-height: 85vh;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-modal-close {
        font-size: 1.8rem;
        line-height: 1;
    }

    .service-modal-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .service-modal-content #modalDescription {
        font-size: 0.85rem !important;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }

    .service-modal-content #modalDetailsStandard h3,
    .service-modal-content #modalDetailsPremium h3 {
        font-size: 1.05rem !important;
        margin: 1.2rem 0 0.6rem 0;
    }

    .service-modal-content #modalDetailsStandard li,
    .service-modal-content #modalDetailsPremium li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        padding-left: 1.6rem;
        line-height: 1.4;
    }

    .service-modal-content #modalDetailsStandard li::before,
    .service-modal-content #modalDetailsPremium li::before {
        font-size: 1rem;
    }

    .modal-price {
        font-size: 1.8rem !important;
        margin: 1.2rem 0;
    }

    .service-tab {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .modal-cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
    padding: 2rem 0;
}

.service-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service-modal-content {
    background: linear-gradient(135deg, var(--anthracite) 0%, #1a1a1a 100%);
    margin: 0;
    padding: 3rem;
    border: 2px solid var(--gold);
    border-radius: 30px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    animation: slideInDown 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.service-modal-close {
    color: var(--platinum);
    float: right;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.service-modal-close:hover,
.service-modal-close:focus {
    color: var(--gold);
    transform: rotate(90deg);
}

.service-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-modal-content #modalDescription {
    color: var(--platinum);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.service-tab {
    flex: 1;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--platinum);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    bottom: -2px;
}

.service-tab:hover {
    color: var(--gold);
}

.service-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.1));
}

.service-tab-content {
    display: none !important;
    animation: fadeIn 0.3s ease-out;
}

.service-tab-content.active {
    display: block !important;
}

.service-modal-content #modalDetailsStandard,
.service-modal-content #modalDetailsPremium {
    color: var(--platinum);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.service-modal-content #modalDetailsStandard h3,
.service-modal-content #modalDetailsPremium h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.service-modal-content #modalDetailsStandard ul,
.service-modal-content #modalDetailsPremium ul {
    list-style: none;
    padding-left: 0;
}

.service-modal-content #modalDetailsStandard li,
.service-modal-content #modalDetailsPremium li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.service-modal-content #modalDetailsStandard li::before,
.service-modal-content #modalDetailsPremium li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 2rem 0;
    background: linear-gradient(135deg, var(--gold), var(--platinum));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.modal-cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}
