/* Root Variables */
:root {
    --primary-green: #899a8a;
    --primary-green-dark: #6d7d6e;
    --primary-green-light: #a5b4a6;
    --white: #ffffff;
    --off-white: #f9faf9;
    --light-gray: #e8ebe9;
    --text-dark: #2a2e2a;
    --text-gray: #5a5e5a;
    --text-light: #8a8e8a;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --shadow-lg: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-logo i {
    width: 32px;
    height: 32px;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px var(--shadow-md);
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    transition: all 0.2s;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    padding-left: 2rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle i {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
}

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 46, 42, 0.85) 0%, rgba(137, 154, 138, 0.6) 100%);
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-fallback {
    display: none; /* Hide fallback when video loads */
}

/* Mobile: Hide video on small screens for performance */
@media (max-width: 768px) {
    .hero-video-container {
        display: none;
    }
    .hero-fallback {
        display: block !important;
    }
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    width: 18px;
    height: 18px;
}

.hero-content {
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.highlight {
    color: var(--primary-green-light);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 32px;
    height: 32px;
    color: var(--white);
    opacity: 0.7;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn i {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--light-gray);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-tag i {
    width: 18px;
    height: 18px;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

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

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

.stat-item i {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.stat-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px var(--shadow-md);
    overflow: hidden;
    height: 400px;
}

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

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

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2.5rem;
    transform: translateY(0);
    transition: var(--transition);
}

.visual-overlay i {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.visual-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.visual-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Features Section */
.features-section {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 20px var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
}

.feature-icon i {
    width: 35px;
    height: 35px;
    color: var(--primary-green);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-card p {
    margin: 0;
    line-height: 1.7;
}

/* Designs Section */
.designs-section {
    background: var(--white);
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.design-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px var(--shadow);
}

.design-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px var(--shadow-md);
}

.design-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

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

/* Product Video Hover Effect */
.product-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background-color: transparent;
}

.product-image {
    transition: opacity 0.3s ease;
}

.design-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--shadow-md);
}

.design-badge i {
    width: 30px;
    height: 30px;
    color: var(--primary-green);
}

.design-icon-large {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.design-icon-large i {
    width: 50px;
    height: 50px;
    color: var(--primary-green);
}

.design-content {
    padding: 1.5rem 1.5rem 1.75rem;
    text-align: center;
}

.design-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.design-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--light-gray);
    color: var(--primary-green);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.popular-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px var(--shadow-md);
}

.pricing-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
}

.pricing-note p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.pricing-note i {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.design-specs {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.design-specs li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.design-specs i {
    width: 18px;
    height: 18px;
    color: var(--primary-green);
    flex-shrink: 0;
}

/* Sustainability Section */
.sustainability-section {
    background: var(--primary-green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sustainability-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.sustainability-section h2,
.sustainability-section h4 {
    color: var(--white);
}

.sustainability-section p {
    color: rgba(255, 255, 255, 0.9);
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.sustainability-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.sustainability-item i {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--white);
}

.sustainability-item h4 {
    margin-bottom: 0.25rem;
}

.circle-graphic {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.circle-item {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.circle-item:nth-child(2) {
    animation-delay: 0.5s;
}

.circle-item:nth-child(3) {
    animation-delay: 1s;
}

.circle-item:nth-child(4) {
    animation-delay: 1.5s;
}

.circle-item i {
    width: 60px;
    height: 60px;
    color: var(--white);
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.gallery-item.gallery-large {
    grid-column: span 2;
    height: 400px;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(137, 154, 138, 0.95), transparent);
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

.gallery-content {
    flex: 1;
}

.gallery-overlay .gallery-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.gallery-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    z-index: 10;
}

.gallery-expand i {
    width: 20px;
    height: 20px;
    color: var(--primary-green);
}

.gallery-item:hover .gallery-expand {
    opacity: 1;
    transform: scale(1);
}

.gallery-expand:hover {
    background: var(--primary-green);
}

.gallery-expand:hover i {
    color: var(--white);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: var(--off-white);
    border-radius: 20px;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-content {
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    animation: fadeInUp 0.4s ease;
}

.gallery-modal-content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
}

.gallery-modal-content .gallery-modal-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
}

.gallery-modal-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    text-align: center;
}

.gallery-modal-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gallery-modal-info p {
    color: var(--text-gray);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.gallery-modal-info p i {
    width: 16px;
    height: 16px;
}

.gallery-modal-info .gallery-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.gallery-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.gallery-modal-close:hover {
    background: var(--primary-green);
    transform: rotate(90deg);
}

.gallery-modal-close i {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

.gallery-modal-close:hover i {
    color: var(--white);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.gallery-modal-prev {
    left: 2rem;
}

.gallery-modal-next {
    right: 2rem;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--primary-green);
}

.gallery-modal-prev i,
.gallery-modal-next i {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
}

.gallery-modal-prev:hover i,
.gallery-modal-next:hover i {
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: var(--off-white);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method i {
    width: 30px;
    height: 30px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.contact-method h4 {
    margin-bottom: 0.25rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-gray);
}

/* Form Styles */
.contact-form {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo i {
    width: 32px;
    height: 32px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col p i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.social-links i {
    width: 20px;
    height: 20px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.1);
}

.newsletter-form button i {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .sustainability-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-wrapper {
        padding: 6rem 2rem 4rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .circle-graphic {
        width: 280px;
        height: 280px;
    }

    .circle-item {
        width: 120px;
        height: 120px;
    }

    .circle-item i {
        width: 45px;
        height: 45px;
    }

    .gallery-item.gallery-large,
    .gallery-item.gallery-wide {
        grid-column: span 1;
    }

    .visual-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px var(--shadow);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-content-wrapper {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .hero-stats {
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .hero-content-wrapper {
        padding: 5rem 1rem 3rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

/* Product Action Buttons */
.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    white-space: nowrap;
}

.product-actions .btn span {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-md);
}

.testimonial-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.customer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-initials {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
}

.customer-info {
    flex: 1;
}

.customer-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.customer-title {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0.25rem !important;
}

.customer-location {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 !important;
}

.customer-location i {
    width: 14px;
    height: 14px;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    width: 18px;
    height: 18px;
}

.star-filled {
    color: #FFD700;
    fill: #FFD700;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-dome-type {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-dome-type i {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-header {
        gap: 1rem;
    }

    .customer-photo {
        width: 60px;
        height: 60px;
    }

    .customer-initials {
        font-size: 1.5rem;
    }
}

/* Testimonial Slider Styles */
.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--primary-green);
}

.testimonial-nav:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav i {
    width: 24px;
    height: 24px;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot:hover {
    background: var(--primary-green);
    opacity: 0.7;
}

.testimonial-dot.active {
    background: var(--primary-green);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 40px;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider-container {
        padding: 0 30px;
    }

    .testimonial-nav {
        width: 35px;
        height: 35px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #2a2e2a;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 75px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* WhatsApp Button in Contact Section */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Success Button - Add to Cart */
.btn-success {
    background: #4a5e4a;
    color: white;
}

.btn-success:hover {
    background: #3a4e3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 94, 74, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Why Choose DGM Section */
.why-choose-section {
    background: var(--off-white);
    padding: 5rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-md);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #6ab070);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 2;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        width: 35px;
        height: 35px;
    }

    .why-choose-card h3 {
        font-size: 1.25rem;
    }
}

/* ===================================
   EXIT INTENT MODAL
   =================================== */

.exit-intent-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exit-intent-modal.active {
    display: flex;
    opacity: 1;
}

.exit-intent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.exit-intent-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-intent-modal.active .exit-intent-content {
    transform: scale(1);
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--light-gray);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-gray);
}

.exit-intent-close:hover {
    background: var(--primary-green);
    color: white;
}

.exit-intent-close i {
    width: 20px;
    height: 20px;
}

.exit-intent-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-intent-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.exit-intent-content h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.exit-intent-content > p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.exit-intent-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.exit-option {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.exit-option:hover {
    border-color: var(--primary-green);
    background: #f8f9f8;
}

.exit-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    accent-color: var(--primary-green);
    cursor: pointer;
}

.exit-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--primary-green);
}

.exit-option span {
    font-size: 1rem;
    color: var(--text-dark);
}

.exit-help-section {
    margin-bottom: 1.5rem;
    text-align: left;
}

.exit-help-section label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.exit-help-section textarea,
.exit-help-section input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.exit-help-section textarea:focus,
.exit-help-section input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.exit-help-section textarea {
    resize: vertical;
    min-height: 80px;
}

.exit-intent-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.exit-submit-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Jost', sans-serif;
    transition: var(--transition);
}

.exit-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(137, 154, 138, 0.3);
}

.exit-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.exit-submit-btn i {
    width: 18px;
    height: 18px;
}

.exit-close-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--text-gray);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: var(--transition);
}

.exit-close-btn:hover {
    border-color: var(--text-gray);
    color: var(--text-dark);
}

.exit-privacy {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Mobile - Hide exit intent modal */
@media (max-width: 768px) {
    .exit-intent-modal {
        display: none !important;
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .exit-intent-content {
        max-width: 450px;
        padding: 2rem;
    }

    .exit-intent-content h3 {
        font-size: 1.5rem;
    }
}

/* Gallery Video Loading Indicator */
.gallery-video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #a8e063;
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}
