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

:root {
    --primary: #03E795;
    --primary-dark: #02b876;
    --dark: #0a1813;
    --dark-secondary: #1dc8a9;
    --light: #ffffff;
    --light-gray: #e5e5e5;
    --gray: #6b6b6b;
    --border: #11583c;
    --text: #ffffff;
    --text-secondary: #ffffff;
    --accent: #1bd99d;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --primary-light: #5cf5be;
    --primary-dark: #346739;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--light);
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Top Bar */
.top-bar {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    border-bottom: 1px solid rgba(3, 231, 149, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light);
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-link i {
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--light);
    font-size: 16px;
}

.social-link:hover {
    color: var(--secondary);
}

/* Header */
.header {
    background: transparent;
    padding: 15px 0;
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(10, 24, 19, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(3, 231, 149, 0.3);
    top: 0;
    z-index: 1004;
}

.header.transparent {
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 70px;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

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

.nav-list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    min-width: 250px;
    padding: 15px 0;
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 10px 25px;
    font-size: 13px;
    color: #ffffff;
}

.dropdown a:hover {
    background: var(--primary);
    color: #ffffff;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1003;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 100px;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3a20 50%, #0a0a0a 100%);
    z-index: -2;
    animation: heroGradient 10s ease infinite;
    background-size: 200% 200%;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 103, 57, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(122, 174, 111, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(159, 203, 152, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23346739' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url('https://img.youtube.com/vi/yhEd4XCv-Tw/maxresdefault.jpg') center/cover no-repeat;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url('https://img.youtube.com/vi/yhEd4XCv-Tw/maxresdefault.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Elegant Hero Section */
.hero-elegant {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3a20 50%, #0a0a0a 100%);
}

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

.hero-elegant-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
}

.hero-elegant-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.hero-elegant-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23346739' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
}

.hero-elegant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-elegant-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 120px 40px 80px;
}

.hero-elegant-content .hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-light, #79AE6F);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.hero-elegant-content .hero-title-elegant {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--light);
}

.hero-elegant-content .hero-text-elegant {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-elegant {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(3, 231, 149, 0.4);
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(3, 231, 149, 0.6);
}

.btn-elegant:hover {
    color: var(--primary);
}

.btn-elegant:hover::before {
    left: 0;
}

:root {
    --primary-light: #79AE6F;
    --primary-dark: #346739;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-elegant-content .hero-title-elegant {
        font-size: 2.5rem;
    }
    .hero-elegant-content .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .hero-elegant-content .hero-text-elegant {
        font-size: 1rem;
    }
    .hero-elegant-content {
        padding: 0 20px;
    }
    .btn-elegant {
        padding: 15px 30px;
    }
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--light);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(12, 233, 142, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 15px;
}

.section-subtext {
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1a10 50%, #0a0a0a 100%);
    background-size: 200% 200%;
    animation: sectionGradient 8s ease infinite;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(52, 103, 57, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

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

.about .section-header {
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-image {
    overflow: hidden;
    border-radius: 5px;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #142814 50%, #0a0a0a 100%);
    background-size: 200% 200%;
    animation: sectionGradient 8s ease infinite;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(122, 174, 111, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

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

.service-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #0f0f0f 100%);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 233, 142, 0.2);
}

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

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 15px;
}

.service-arrow {
    display: inline-block;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Feature Services */
.feature-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0d1a10 50%, #0a0a0a 100%);
    background-size: 200% 200%;
    animation: sectionGradient 8s ease infinite;
    position: relative;
}

.feature-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(52, 103, 57, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse > * {
    direction: ltr;
}

.feature-image {
    display: flex;
    gap: 15px;
}

.feature-image img {
    width: 50%;
    border-radius: 5px;
}

.feature-content {
    padding: 20px;
}

.feature-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
}

.feature-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-list h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--light);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 12px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: #0a1813;
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,231,149,0.3), transparent);
}
.testimonials .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials .section-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
}
.testimonials .section-header .section-title span {
    color: var(--primary);
}
.testimonials .section-header .section-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: rgba(3,231,149,0.03);
    border: 1px solid rgba(3,231,149,0.15);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 15px;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-card:hover {
    background: rgba(3,231,149,0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}
.testimonial-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--primary);
}
.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.testimonial-author::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary);
}

/* Gallery */
.gallery {
    padding: 120px 0;
    background: #0a1813;
    position: relative;
}
.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,231,149,0.3), transparent);
}
.gallery .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.gallery .section-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 10px;
}
.gallery .section-header .section-title span {
    color: var(--primary);
}
.gallery .section-header .section-text {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.gallery .section-header .section-subtext {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3,231,149,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover::after {
    opacity: 1;
}
.gallery-cta {
    text-align: center;
}
.gallery-cta .btn-outline {
    padding: 14px 35px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.gallery-cta .btn-outline:hover {
    background: var(--primary);
    color: #0a1813;
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a1813 0%, #0d2218 50%, #0a1813 100%);
    position: relative;
}
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,231,149,0.3), transparent);
}
.faq .section-header {
    text-align: center;
    margin-bottom: 60px;
}
.faq .section-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
}
.faq .section-header .section-title span {
    color: var(--primary);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(3,231,149,0.03);
    border: 1px solid rgba(3,231,149,0.1);
    padding: 30px;
    transition: all 0.3s ease;
    border-radius: 12px;
}
.faq-item:hover {
    border-color: var(--primary);
    background: rgba(3,231,149,0.06);
}
.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.faq-question::before {
    content: 'Q';
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: #0a1813;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}
.faq-answer {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    padding-left: 40px;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a3a20 50%, #0a0a0a 100%);
    background-size: 200% 200%;
    animation: sectionGradient 8s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(52, 103, 57, 0.2) 0%, transparent 60%);
    pointer-events: none;
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(12, 233, 142, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-contact {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--light);
    padding: 15px 35px;
    background: rgba(12, 233, 142, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(12, 233, 142, 0.4);
}

.cta-phone i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.cta-phone:hover i {
    color: var(--dark);
}

.cta-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-email:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.cta .btn {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    padding: 20px 60px;
    font-size: 1rem;
    border-radius: 50px;
    letter-spacing: 2px;
}

.cta .btn:hover {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(12, 233, 142, 0.3);
}

/* Footer */
.footer {
    background: #0a1813;
    padding: 0;
    border-top: none;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3,231,149,0.4), transparent);
}
.footer-cta {
    background: linear-gradient(135deg, #0d1a10 0%, #0a1813 100%);
    padding: 80px 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(3,231,149,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.footer-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.footer-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}
.footer-cta h3 span {
    color: var(--primary);
}
.footer-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 35px;
}
.footer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.footer-cta .btn {
    padding: 16px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #0a1813;
}
.footer-content {
    padding: 80px 0 30px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.footer-brand {
    position: relative;
}
.footer-brand::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(3,231,149,0.2), transparent);
}
.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}
.footer-logo img {
    height: 55px;
    filter: drop-shadow(0 0 15px rgba(3,231,149,0.3));
}
.footer-brand>p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(3,231,149,0.3);
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0a1813;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3,231,149,0.3);
}
.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}
.footer-links ul {
    list-style: none;
}
.footer-links ul li {
    margin-bottom: 14px;
}
.footer-links a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.footer-links a:hover::before {
    left: -18px;
    opacity: 1;
}
.footer-contact ul {
    list-style: none;
}
.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    align-items: flex-start;
}
.footer-contact ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact ul li a:hover {
    color: var(--primary);
}
.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 1px solid rgba(3,231,149,0.1);
    max-width: 1400px;
    margin: 0 auto;
}
.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
    display: flex;
    gap: 30px;
}
.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-block {
        grid-template-columns: 1fr;
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile overlay fix for body scroll */
body.menu-open {
    overflow: hidden;
}

/* Hero video mobile fix */
@media (max-width: 768px) {
    .hero-elegant-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-elegant-bg iframe {
        position: absolute;
        top: -50% !important;
        left: -50% !important;
        width: 200% !important;
        height: 200% !important;
        max-width: none !important;
        max-height: none !important;
        transform: none !important;
    }
    
    .hero-elegant-bg img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
        object-fit: cover;
        object-position: center;
    }
    
    .hero-elegant-content {
        padding: 100px 20px 60px;
    }
    
    .hero-elegant-content .hero-title-elegant {
        font-size: 2.5rem;
    }
    
    .hero-elegant-content .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--border);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #000000;
        border: none;
    }
    
    .dropdown.dropdown-active {
        display: block;
    }
    
    .dropdown {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1003;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-elegant-content {
        padding: 100px 20px 60px;
    }
    
    .hero-elegant-content .hero-title-elegant {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-elegant-content .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .hero-elegant-content .hero-text-elegant {
        font-size: 0.95rem;
    }
    
    .about-grid,
    .gallery-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-image {
        flex-direction: column;
    }
    
    .feature-image img {
        width: 100%;
        height: 250px;
    }
    
    .feature-content {
        padding: 20px 0;
    }
    
    .feature-list ul {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-phone {
        font-size: 1.5rem;
        padding: 12px 25px;
    }
    
    .cta .btn {
        padding: 15px 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-contact {
        gap: 10px;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
}

/* Fix inline styles for mobile */
@media (max-width: 768px) {
    .about > .container > div,
    .services > .container > div,
    .feature-services > .container > div {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .services-grid,
    .about .container > div > div:first-child,
    .feature-block {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .about .container > div > div:last-child,
    .feature-image,
    .feature-content {
        width: 100% !important;
    }
    
    /* Target inline grid-template-columns */
    div[style*="1fr 1fr"],
    div[style*="1fr, 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    div[style*="repeat(4, 1fr)"],
    div[style*="repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    div[style*="padding: 100px 40px"] {
        padding: 60px 20px !important;
    }
    
    /* Fix padding for sections with inline styles */
    section[style*="padding: 100px 40px"] {
        padding: 60px 20px !important;
    }
    
    /* Fix gap inline styles */
    div[style*="gap: 80px"],
    div[style*="gap:80px"] {
        gap: 40px !important;
    }
    
    div[style*="gap: 60px"],
    div[style*="gap:60px"] {
        gap: 30px !important;
    }
    
    div[style*="gap: 25px"],
    div[style*="gap:25px"] {
        gap: 15px !important;
    }
    
    /* Fix columns in inline styled grids */
    .about .container > div,
    .services .container > div > div,
    .feature-block {
        grid-template-columns: 1fr !important;
    }
    
    /* Make services grid 2 columns minimum on mobile */
    .services .container > div > div:first-child {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Target specific sections - use class selectors */
    .about .container > div > div,
    .services .services-grid,
    .feature-services .feature-block {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix 3 column grids to 2 columns on mobile */
    .about [style*="grid-template-columns: 1fr 1fr 1fr"],
    .about [style*="1fr 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 480px) {
    .hero-elegant-content .hero-title-elegant {
        font-size: 1.75rem;
    }
    
    .btn-elegant {
        padding: 12px 25px;
        font-size: 14px;
    }
    
     .services-grid {
         grid-template-columns: 1fr !important;
     }
     
     .feature-block [style*="grid-template-columns: 1fr 1fr"] {
         grid-template-columns: 1fr !important;
     }
    
    .cta-phone {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
}

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #0a1813 50%, #000000 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-grid-full {
    margin-bottom: 50px;
}

.about-text-block h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 25px;
}

.about-text-block p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Gallery Page */
.gallery-page {
    padding: 80px 0;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

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

.contact-info-block h2,
.contact-form-block h2 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 20px;
}

.contact-info-block > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--light);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item p a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.contact-item p a:hover {
    color: var(--primary);
}

.contact-form {
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    color: var(--light);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid var(--border);
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* Service Page */
.service-page {
    padding: 80px 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-intro h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 20px;
}

.service-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    margin-bottom: 50px;
}

.service-features h3 {
    font-size: 1.8rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 40px;
}

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

.feature-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
    border: 1px solid var(--border);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 233, 142, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(12, 233, 142, 0.15);
}

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

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h4 {
    color: var(--light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-cta {
    text-align: center;
    background: #0a0a0a;
    border: 1px solid var(--border);
    padding: 50px;
}

.service-cta h3 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 15px;
}

.service-cta p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cta {
        padding: 30px;
    }
}

/* Booking Page */
.booking-page {
    padding: 80px 0;
    background: var(--dark);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.booking-info h2 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 20px;
}

.booking-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.booking-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.booking-contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.booking-contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.booking-contact-item h4 {
    color: var(--light);
    margin-bottom: 5px;
}

.booking-contact-item p a {
    color: var(--text-secondary);
    transition: color 0.3s;
}

.booking-contact-item p a:hover {
    color: var(--primary);
}

.booking-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(12, 233, 142, 0.1);
    border: 1px solid var(--border);
    border-radius: 5px;
}

.booking-note i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.booking-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.booking-form-block h2 {
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 30px;
}

.booking-form {
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.booking-form .form-group label {
    display: block;
    color: var(--light);
    margin-bottom: 10px;
    font-weight: 500;
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid var(--border);
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.checkbox-item input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.booking-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
    overflow: hidden;
}

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

.service-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,24,19,0.9) 100%);
    z-index: -1;
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(12, 233, 142, 0.3);
}

.service-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Gallery */
.service-gallery {
    margin: 80px 0;
}

.service-gallery h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 16/10;
    cursor: pointer;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 233, 142, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-gallery-overlay i {
    font-size: 2rem;
    color: var(--dark);
}

/* Service Video */
.service-video {
    margin: 40px auto;
    max-width: 800px;
}

.service-video h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.service-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Service Details */
.service-details {
    margin: 80px 0;
}

.service-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--light);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-detail-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #111111 100%);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.service-detail-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(12, 233, 142, 0.15);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
}

.service-detail-icon i {
    font-size: 1.8rem;
    color: var(--dark);
}

.service-detail-card h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-detail-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .service-gallery-grid,
    .service-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .service-gallery-grid,
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Team Page */
.team-page {
    padding: 80px 0;
    background: var(--dark);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.team-card {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(12, 233, 142, 0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    font-size: 1rem;
}

.team-social a:hover {
    background: var(--light);
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.team-role {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(12, 233, 142, 0.1);
    border-radius: 20px;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-cta {
    text-align: center;
    background: linear-gradient(145deg, #0a0a0a 0%, #151515 100%);
    padding: 60px;
    border: 1px solid var(--border);
    border-radius: 10px;
}

.team-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--light);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.team-cta p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-cta {
        padding: 40px 20px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}
