/* --- Master Design System & Variables --- */
:root {
    /* Colors - Premium PACA Palette */
    --primary: #0A3055;        /* Deep Navy - Logo */
    --primary-light: #0073B7;  /* Bright Water Blue */
    --secondary: #F4F7FA;     /* Premium subtle cool grey bg */
    --accent: #FFB800;        /* Subtle Gold for highlights */
    --text-dark: #1A202C;     /* Almost black */
    --text-light: #5A6A85;    /* Professional slate grey */
    --white: #ffffff;
    --overlay: rgba(8, 30, 55, 0.75); /* Modern deep blue overlay */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Easing & Transitions */
    --ease: cubic-bezier(0.23, 1, 0.32, 1);
    --transition: all 0.3s var(--ease);
    
    /* Shadows - Layered for depth */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(10, 48, 85, 0.08), 0 4px 6px -2px rgba(10, 48, 85, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 71, 171, 0.12), 0 10px 10px -5px rgba(0, 71, 171, 0.05);
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img, svg { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* --- Utilities & Typography Mastery --- */
.section-padding { padding: 110px 0; }
.section-bg { background-color: var(--secondary); }
.position-relative { position: relative; }

.text-gradient {
    background: linear-gradient(135deg, #7DD3FC, #E0F2FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title { text-align: center; margin-bottom: 75px; max-width: 700px; margin-left: auto; margin-right: auto; }
.subtitle { display: inline-block; color: var(--primary-light); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.section-title h2 { font-size: 3rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.section-title p { font-size: 1.2rem; color: var(--text-light); font-weight: 400; }

@media (max-width: 768px) {
    .section-title h2 { font-size: 2.2rem; }
    .section-padding { padding: 70px 0; }
}

/* --- Buttons - Perfected --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 40px; border-radius: 50px;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}

.btn-sm { padding: 12px 26px; font-size: 0.8rem; }

.btn-primary { 
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white); 
    box-shadow: 0 6px 15px rgba(10, 48, 85, 0.2);
}

.btn-primary.shadow-glow { box-shadow: 0 10px 25px rgba(0, 115, 183, 0.35); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(0, 115, 183, 0.45); }

.btn-secondary { 
    background-color: rgba(255, 255, 255, 0.08); 
    border-color: rgba(255, 255, 255, 0.3); 
    color: var(--white); 
    backdrop-filter: blur(5px);
}
.btn-secondary:hover { background-color: var(--white); color: var(--primary); }

@media (max-width: 768px) {
    .btn { width: 100%; text-align: center; }
}

/* --- Header / Navigation - Pixel Perfect --- */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 1000; padding: 22px 0;
    transition: padding 0.4s var(--ease), box-shadow 0.4s var(--ease), background-color 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

header.scrolled {
    padding: 14px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px) saturate(180%);
    border-color: rgba(0,0,0,0.03);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.7rem; font-weight: 800; font-family: var(--font-heading); color: var(--white); letter-spacing: -1px; }
header.scrolled .logo { color: var(--primary); }
.logo-highlight { color: var(--primary-light); }

.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--white); position: relative; }
header.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { color: var(--primary-light); }
header.scrolled .nav-links a:hover { color: var(--primary-light); }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -8px; left: 50%; background-color: var(--primary-light); transition: var(--transition); transform: translateX(-50%); }
.nav-links a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 15px; }

/* Mobile Burger - Enhanced */
.mobile-menu-icon { display: none; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1001; background: none; border: none; padding: 10px; }
.mobile-menu-icon .bar { width: 26px; height: 2.5px; background-color: var(--white); transition: var(--transition); border-radius: 4px; }
header.scrolled .mobile-menu-icon .bar { background-color: var(--primary); }

@media (max-width: 992px) {
    .nav-links { gap: 25px; }
}

@media (max-width: 768px) {
    .d-none-mobile { display: none !important; }
    .mobile-menu-icon { display: flex; }
    
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        flex-direction: column; background-color: var(--white); text-align: center;
        padding: 40px 0; box-shadow: var(--shadow-lg); gap: 30px;
        opacity: 0; visibility: hidden; transform: translateY(-15px);
        transition: var(--transition); border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-links a { color: var(--text-dark); }
    
    /* Burger transformation to X */
    .mobile-menu-icon.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-6px, 6px); }
    .mobile-menu-icon.active .bar:nth-child(2) { opacity: 0; transform: translateX(20px); }
    .mobile-menu-icon.active .bar:nth-child(3) { transform: rotate(45deg) translate(-6px, -6px); }
}

/* --- Hero Section - Immersive Master --- */
.hero-fullscreen {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background-image: url('../images/display/hero/hero-bg-768.webp');
    background-image: image-set(url('../images/display/hero/hero-bg-768.webp') type('image/webp'), url('../images/hero-bg.webp') type('image/webp'));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center; padding: 100px 20px 60px;
}

@media (min-width: 769px) {
    .hero-fullscreen {
        background-image: url('../images/display/hero/hero-bg-1280.webp');
        background-image: image-set(url('../images/display/hero/hero-bg-1280.webp') type('image/webp'), url('../images/hero-bg.webp') type('image/webp'));
    }
}

@media (min-width: 1281px) {
    .hero-fullscreen {
        background-image: url('../images/hero-bg.webp');
    }
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--overlay); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 950px; color: var(--white); }

.badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

.hero-content h1 { font-size: 4.2rem; margin-bottom: 25px; line-height: 1.1; letter-spacing: -2px; color: var(--white); }
.hero-content p { font-size: 1.3rem; margin-bottom: 45px; font-weight: 400; opacity: 0.9; max-width: 750px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.2rem; }
}

@media (max-width: 768px) {
    .hero-fullscreen { min-height: 100vh; padding-top: 120px; }
    .hero-content h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-content p { font-size: 1.1rem; }
}

/* Scroll Mouse Indicator */
.scroll-indicator { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0.7; }
.mouse { width: 28px; height: 45px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; position: relative; }
.mouse::before { content: ''; width: 4px; height: 8px; background: var(--white); position: absolute; top: 7px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: scroll-dot 1.8s infinite; }

@keyframes scroll-dot {
    0% { transform: translate(-50%, 0); opacity: 1; }
    80% { transform: translate(-50%, 18px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

/* --- Services Section - Premium Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

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

.service-card {
    background: var(--white); border-radius: 20px;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid rgba(10, 48, 85, 0.04);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column;
}

.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(10, 48, 85, 0.1); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transform: scaleX(0); transition: var(--transition); transform-origin: left; z-index: 20; }
.service-card:hover::after { transform: scaleX(1); }

.card-body {
    padding: 0 35px 40px;
    position: relative;
    z-index: 10;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 65px; height: 65px; background: var(--white);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px; transition: var(--transition);
    color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -32px;
    position: relative; z-index: 12;
}

.service-card:hover .service-icon-wrapper { background: var(--primary-light); color: var(--white); transform: scale(1.05) rotate(-5deg); }
.service-icon { width: 30px; height: 30px; }

.service-card h3 { font-size: 1.5rem; margin-bottom: 18px; color: var(--primary); }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 25px; }

.service-features { list-style: none; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.service-features li { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; display: flex; align-items: center; gap: 6px; color: #2D3748;}

/* --- Banner Region - Refined Depth --- */
.banner-section {
    background-image: url('../images/display/hero/hero-bg-1280.webp');
    background-image: image-set(url('../images/display/hero/hero-bg-1280.webp') type('image/webp'), url('../images/hero-bg.webp') type('image/webp'));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax subtle */
    position: relative; padding: 120px 0; color: var(--white); text-align: center;
}

.banner-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(8, 30, 55, 0.92) 0%, rgba(0, 80, 150, 0.88) 100%); }

.banner-content h2 { font-size: 2.6rem; margin-bottom: 15px; color: var(--white); }
.regions { font-size: 1.3rem; margin-bottom: 60px; color: rgba(255,255,255,0.9); font-weight: 500; max-width: 800px; margin-left: auto; margin-right: auto; }

.stats-wrapper { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 200px; max-width: 280px; }
.stat-icon-box { font-size: 3rem; margin-bottom: 15px; opacity: 1; }
.stat-item h4 { color: var(--white); font-size: 1.4rem; margin-bottom: 5px; }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;}

@media (max-width: 768px) {
    .banner-content h2 { font-size: 2rem; }
    .regions { font-size: 1.1rem; }
    .stats-wrapper { gap: 30px; flex-direction: column; align-items: center; }
    .banner-section { background-attachment: scroll; }
}

/* --- Contact Section - Modern Masterpiece --- */
.contact-wrapper {
    display: grid; grid-template-columns: 4fr 6fr; gap: 0;
    background: var(--white); border-radius: 25px; overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.03);
}

.contact-info { 
    background: linear-gradient(150deg, var(--primary) 0%, #051A2E 100%);
    color: var(--white); padding: 70px 60px; 
}

.contact-info h3 { color: var(--white); font-size: 2rem; margin-bottom: 15px; }
.contact-desc { color: rgba(255,255,255,0.75); margin-bottom: 50px; font-size: 1rem; }

.contact-item { display: flex; align-items: flex-start; margin-bottom: 35px; gap: 20px; }
.icon-box-premium { 
    font-size: 1.3rem; background: rgba(255,255,255,0.08); 
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; 
    color: var(--primary-light); flex-shrink: 0; margin-top: 3px;
    transition: var(--transition);
}
.contact-item:hover .icon-box-premium { background: var(--primary-light); color: var(--white); transform: scale(1.05); }

.item-content h4 { margin-bottom: 5px; font-size: 1.1rem; color: rgba(255,255,255,0.9); font-weight: 600;}
.item-content p, .hover-link { color: rgba(255,255,255,0.7); font-size: 1rem; transition: var(--transition); }
.hover-link:hover { color: var(--white); text-decoration: underline; }

.social-links { display: flex; gap: 15px; margin-top: 50px; }
.social-icon {
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
    color: var(--white); transition: var(--transition); border: 1px solid rgba(255,255,255,0.18);
    flex: 0 0 45px;
}
.social-icon svg {
    width: 21px;
    height: 21px;
    stroke: currentColor;
    flex: 0 0 auto;
}
.social-icon:hover { background: var(--primary-light); color: var(--white); transform: translateY(-4px); }

/* Form Style - Sleek */
.contact-form-container { padding: 70px 60px; background: var(--white); }
.custom-form .form-row { display: flex; gap: 25px; }
.half-width { flex: 1; }

.form-group { margin-bottom: 26px; position: relative; }
.form-group label { display: block; margin-bottom: 9px; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }

.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 16px 20px; 
    border: 1px solid #E1E8F0; border-radius: 12px;
    font-family: var(--font-body); font-size: 1rem; color: var(--text-dark);
    background-color: #F8FAFC; transition: var(--transition);
}

.form-group input::placeholder, .form-group textarea::placeholder { color: #A0AEC0; opacity: 0.8;}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary-light); 
    background-color: var(--white); box-shadow: 0 0 0 4px rgba(0, 115, 183, 0.1);
}

/* Custom Select Arrow */
.select-wrapper { position: relative; }
.select-wrapper::after {
    content: ''; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
    width: 10px; height: 6px; background-color: #A0AEC0; clip-path: polygon(100% 0%, 0 0%, 50% 100%); pointer-events: none;
}
.form-group select { appearance: none; cursor: pointer; color: #4A5568;}
.form-group select:required:invalid { color: #A0AEC0; }

.form-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 15px;}
.submit-btn { width: 100%; padding: 20px; font-size: 1rem; margin-top: 10px; }

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info, .contact-form-container { padding: 50px 40px; }
}

@media (max-width: 768px) {
    .contact-info, .contact-form-container { padding: 40px 20px; }
    .custom-form .form-row { flex-direction: column; gap: 0; }
}

/* --- Footer - Sleek --- */
footer { background-color: #111827; color: rgba(160, 174, 192, 0.8); padding: 70px 0 40px; }
.footer-container { display: flex; flex-direction: column; gap: 50px; }
.footer-brand h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 12px; }
.footer-brand p { max-width: 450px; font-size: 0.95rem; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 35px; border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.footer-links { display: flex; gap: 25px; flex-wrap: wrap; justify-content: center; }
.footer-links a:hover { color: var(--white); }

@media (max-width: 768px) {
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* --- Legal Pages --- */
.legal-page {
    padding: 145px 0 90px;
    min-height: 70vh;
}

.breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-heading);
}

.breadcrumb a::before {
    content: '\2190';
    margin-right: 8px;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.legal-shell {
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 48, 85, 0.06);
    padding: 60px;
}

.legal-header {
    border-bottom: 1px solid rgba(10, 48, 85, 0.08);
    margin-bottom: 42px;
    padding-bottom: 30px;
}

.legal-header h1 {
    color: var(--primary);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
}

.legal-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 760px;
}

.legal-section {
    margin-bottom: 36px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.legal-section p,
.legal-section li {
    color: var(--text-light);
    font-size: 1rem;
}

.legal-section p + p {
    margin-top: 12px;
}

.legal-section ul {
    list-style: disc;
    padding-left: 22px;
    margin-top: 12px;
}

.legal-section li {
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-light);
    font-weight: 700;
}

.legal-section a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-dark);
}

.legal-note {
    background: var(--secondary);
    border-left: 4px solid var(--primary-light);
    border-radius: 14px;
    padding: 22px 24px;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 65px;
    }

    .legal-shell {
        padding: 34px 22px;
        border-radius: 16px;
    }

    .legal-header h1 {
        font-size: 2.1rem;
    }
}

/* --- Animations Master (Scroll Reveal) --- */
.reveal-up { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: transform, opacity; }
.reveal-up.revealed { opacity: 1; transform: translateY(0) scale(1); }

.reveal-fade { opacity: 0; transition: opacity 1.2s var(--ease); will-change: opacity; }
.reveal-fade.revealed { opacity: 1; }

/* --- Service Gallery (Cover) --- */
.card-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    height: 240px;
    background: #f4f7fa;
    position: relative;
    z-index: 1;
    scroll-behavior: smooth;
}
.card-gallery::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.card-gallery img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: center;
    cursor: zoom-in;
}

/* Gallery Navigation Buttons & Dots */
.gallery-nav {
    position: absolute;
    top: 120px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
    opacity: 0.8;
}
.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}
.gallery-nav.prev {
    left: 10px;
}
.gallery-nav.next {
    right: 10px;
}
.gallery-dots {
    position: absolute;
    top: 215px; /* bottom of the gallery */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 15;
    pointer-events: none;
}
.gallery-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.gallery-dots .dot.active {
    background: white;
    transform: scale(1.3);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 48, 85, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
    backdrop-filter: blur(8px);
}
.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease);
}
.lightbox.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s var(--ease), transform 0.3s var(--ease);
    line-height: 1;
}
.lightbox-close:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}
