


/* --- FOOTER STYLES --- */

.site-footer {
    background: var(--dark); /* Matches top bar */
    color: #94a3b8; /* Muted text color for readability on dark bg */
    font-size: 14px;
    margin-top: auto; /* Pushes footer to bottom if page content is short */
    border-top: 4px solid var(--navy);
}

.footer-main {
    padding: 60px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr; /* Brand column slightly wider */
    gap: 40px;
}

/* Column Styling */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Brand Column */
.brand-col .footer-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1); /* Forces logo to white if it's not already */
    margin-bottom: 10px;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--navy);
    border-color: var(--cyan);
    transform: translateY(-2px);
}

/* Link Lists */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    transition: 0.2s;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--cyan);
    transition: 0.2s;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    color: var(--cyan);
    font-size: 16px;
    margin-top: 3px;
    background: rgba(0, 173, 239, 0.1);
    padding: 8px;
    border-radius: 6px;
}

.contact-list div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-list .label {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
}

.contact-list a, .contact-list span:not(.label) {
    color: #e2e8f0;
    font-weight: 500;
    line-height: 1.4;
}

.contact-list a:hover {
    color: var(--cyan);
    text-decoration: underline;
}

/* CTA Card (The "Box" in the last column) */
.footer-cta-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-cta-card .icon-circle {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 15px;
    box-shadow: 0 0 0 6px rgba(0, 75, 141, 0.2);
}

.footer-cta-card h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-cta-card p {
    font-size: 13px;
    margin-bottom: 16px;
    color: #94a3b8;
}

.footer-cta-card .btn {
    width: 100%;
    font-size: 13px;
}

/* Bottom Bar */
.footer-bottom {
    background: #020617; /* Even darker than footer main */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #64748b;
    transition: 0.2s;
}

.legal-links a:hover {
    color: var(--cyan);
}

.sep {
    color: #334155;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 30px;
    }

    .footer-cta-card {
        margin-top: 10px;
    }

    .bottom-wrap {
        flex-direction: column;
        text-align: center;
    }
}


/* --- FLOATING ACTIONS --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500; /* Above most content, below mobile menu overlay */
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end; /* Aligns tooltips correctly */
}

/* Base Button Style */
.float-btn {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* The Circle Icon */
.float-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Colors */
.whatsapp .float-icon {
    background: #25D366; /* Official WhatsApp Green */
    border: 2px solid #fff;
}

.phone .float-icon {
    background: var(--cyan); /* Your Brand Cyan */
    border: 2px solid #fff;
    animation: pulse-cyan 2s infinite; /* Subtle pulse for call action */
}

/* Tooltips (Text revealing on hover) */
.float-tooltip {
    position: absolute;
    right: 65px; /* Pushes text to the left of the button */
    background: #fff;
    color: var(--dark);
    padding: 8px 14px;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Show tooltip on hover */
.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation for Phone */
@keyframes pulse-cyan {
    0% { box-shadow: 0 0 0 0 rgba(0, 173, 239, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 173, 239, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 173, 239, 0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    /* On mobile, tooltips are usually annoying/hidden, 
       but you can keep them hidden if preferred: */
    .float-tooltip { display: none; }
}





/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh; /* Takes up 85% of the screen height */
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Video Background Logic */
.video-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
}

/* The Overlay - Crucial for text readability */
.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(15, 23, 42, 0.9) 0%,   /* Dark Navy on left */
        rgba(15, 23, 42, 0.7) 50%,  /* Slightly lighter in middle */
        rgba(15, 23, 42, 0.4) 100%  /* Transparent on right */
    );
    z-index: 2;
}

/* Content Positioning */
.hero-content {
    position: relative;
    z-index: 3; /* Above video */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 60px; /* Space for fixed header */
}

.hero-text {
    max-width: 650px; /* Limits width for readability */
}

/* Typography */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 173, 239, 0.2);
    border: 1px solid rgba(0, 173, 239, 0.4);
    color: #00adef; /* Cyan */
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title .highlight {
    color: #00adef; /* Cyan Highlight */
    position: relative;
    display: inline-block;
}

.hero-sub {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #cbd5e1; /* Light gray text */
    margin-bottom: 35px;
    max-width: 500px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-hero-primary {
    background: #00adef;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: flex; align-items: center; gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 173, 239, 0.4);
}
.btn-hero-primary:hover {
    background: #fff;
    color: #004b8d;
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: flex; align-items: center; gap: 10px;
    backdrop-filter: blur(4px);
    transition: 0.3s;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

/* Trust Badges (Bottom left) */
.hero-trust {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 14px;
}

.trust-item i {
    color: #00adef;
    font-size: 18px;
}

/* Scroll Down Animation */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 500;
    z-index: 3;
    transition: 0.3s;
}
.scroll-down:hover { color: #fff; }

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .hero-trust { display: none; } /* Hide extra details on small screens */
}


/* --- TRUST SECTION --- */
.trust-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split 50/50 */
    gap: 80px;
    align-items: center;
}

/* Typography */
.section-tag {
    display: inline-block;
    color: var(--cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 15px;
    background: rgba(0, 173, 239, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--navy);
    position: relative;
    z-index: 1;
}

/* Underline effect for highlight */
.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 173, 239, 0.2);
    z-index: -1;
}

.section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 40px;
}

/* Experience Counters */
.experience-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.exp-item {
    display: flex;
    flex-direction: column;
}

.exp-number {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.exp-label {
    font-size: 13px;
    color: var(--text);
    margin-top: 5px;
    font-weight: 500;
}

.exp-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

/* Button Link */
.btn-text {
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 15px;
}

.btn-text:hover {
    color: var(--cyan);
    gap: 15px; /* Slide arrow effect */
}

/* --- RIGHT COLUMN: FEATURES --- */
.trust-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 75, 141, 0.1);
    border-color: rgba(0, 173, 239, 0.3);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 75, 141, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    flex-shrink: 0;
}

.feature-card:hover .icon-box {
    background: var(--navy);
    color: #fff;
}

.feature-text h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

/* Rating Box */
.rating-box {
    margin-top: 10px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed #cbd5e1;
}

.stars {
    color: #f59e0b; /* Amber/Gold for stars */
    font-size: 18px;
    margin-bottom: 8px;
}

.rating-text {
    font-size: 14px;
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
        gap: 50px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .experience-row {
        gap: 20px;
        justify-content: space-between;
    }
    
    .exp-number {
        font-size: 28px;
    }
}




/* --- SERVICES SECTION --- */
.services-section {
    padding: 100px 0;
    background: #f8fafc; /* Light Grey Background */
}

/* Header centering helper */
.text-center { text-align: center; }
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-sub {
    font-size: 16px;
    color: var(--text);
    margin-top: 15px;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Service Card Styling */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 75, 141, 0.08);
    border-color: rgba(0, 173, 239, 0.3);
}

/* Icons */
.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 173, 239, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card:hover .card-icon {
    background: var(--navy);
    color: #fff;
}

/* Content */
.card-content h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.card-content p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Feature List (Checkmarks) */
.card-features {
    margin-top: auto; /* Pushes list to bottom */
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--navy-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.card-features li:last-child { margin-bottom: 0; }

.card-features i {
    color: var(--cyan);
    font-size: 12px;
}

/* --- THE CTA CARD (6th Card) --- */
.service-card.cta-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-size: 15px;
}

.btn-card-cta {
    background: #fff;
    color: var(--navy);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-card-cta:hover {
    background: var(--cyan);
    color: #fff;
    transform: scale(1.05);
}

/* Decorative Icon Background */
.bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 150px;
    color: rgba(255,255,255,0.05);
    z-index: 1;
    transform: rotate(-15deg);
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack 1 per row on mobile */
    }
}






/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 100px 0;
    background: #fff;
}

/* Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--text);
    font-family: var(--font-head);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    box-shadow: 0 4px 15px rgba(0, 75, 141, 0.2);
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 20px;
}

/* Gallery Item Card */
.gallery-item {
    position: relative;
    height: 300px; /* Fixed height for uniformity */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.gallery-item img, 
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

/* Hover Zoom Effect */
.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
    opacity: 1;
}

/* Video Play Badge */
.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Overlay Styling */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: #fff;
    font-family: var(--font-head);
    font-size: 18px;
    margin-bottom: 4px;
    transform: translateY(10px);
    transition: 0.3s 0.1s;
}

.overlay-content p {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 600;
    transform: translateY(10px);
    transition: 0.3s 0.2s;
}

.gallery-item:hover .overlay-content h4,
.gallery-item:hover .overlay-content p {
    transform: translateY(0);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 30px;
    color: #fff;
    transition: 0.3s;
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Filtering Animations */
.gallery-item.hide {
    display: none;
}
.gallery-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

#lightbox-caption {
    margin-top: 15px;
    color: #fff;
    font-family: var(--font-head);
}








/* --- PRO CONTACT SECTION --- */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: #0b1120; /* Deepest Navy/Black */
    color: #fff;
    overflow: hidden;
}

/* Background Pattern (Subtle Tech Lines) */
.contact-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- LEFT COLUMN: INFO --- */
.tag-pill {
    display: inline-block;
    background: rgba(0, 173, 239, 0.15);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 173, 239, 0.3);
}

.contact-title {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-title .highlight { color: var(--cyan); }

.contact-sub {
    font-size: 16px;
    color: #94a3b8; /* Muted Slate */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
}

/* Info Cards */
.info-list { display: flex; flex-direction: column; gap: 20px; }

.info-card {
    display: flex; align-items: center; gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(0, 173, 239, 0.3);
}

.icon-circle {
    width: 45px; height: 45px;
    background: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.info-card .label { display: block; font-size: 12px; color: #64748b; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.info-card .value { font-size: 16px; color: #fff; font-weight: 600; }

.response-promise {
    margin-top: 30px;
    display: flex; align-items: center; gap: 10px;
    color: var(--cyan);
    font-size: 14px;
    background: rgba(0, 173, 239, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
}

/* --- RIGHT COLUMN: THE FORM CARD --- */
.contact-form-col { position: relative; }

.pro-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* Heavy shadow for pop */
    color: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
}

.form-header {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--navy);
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Floating Label Logic */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 16px 16px 6px; /* Extra top padding for label */
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--dark);
    outline: none;
    transition: 0.3s;
    height: 56px; /* Fixed height for inputs */
}

textarea.form-input { height: auto; min-height: 120px; padding-top: 20px; }

.form-input:focus {
    border-color: var(--cyan);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 173, 239, 0.1);
}

.form-label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #64748b;
    font-size: 15px;
    transition: 0.3s ease;
    pointer-events: none; /* Allows clicking through label */
}

/* Move label up on Focus or when Text is present */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 6px;
    font-size: 11px;
    color: var(--navy);
    font-weight: 700;
}

/* Styling the Select Dropdown */
select.form-input { appearance: none; cursor: pointer; }

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--navy) 0%, var(--cyan) 100%);
    color: #fff;
    border: none;
    padding: 6px; /* Padding for the inner flex */
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 75, 141, 0.2);
}

.submit-btn span {
    padding-left: 25px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-icon-box {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 75, 141, 0.4);
}

.submit-btn:hover .btn-icon-box {
    color: var(--cyan);
    transform: rotate(45deg); /* Cool rotation effect */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-title { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .pro-form { padding: 30px 20px; }
}

/* --- ERROR STATE STYLING --- */

.error-card {
    background: #fff;
    border: 1px solid #fee2e2;
    border-left: 5px solid #ef4444; /* Pro Red Stripe */
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.1);
    animation: slideIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* The Warning Icon */
.error-icon-box {
    width: 50px;
    height: 50px;
    background: #fef2f2;
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Content */
.error-content h3 {
    font-family: var(--font-head);
    color: #991b1b; /* Dark Red */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.error-content p {
    color: #7f1d1d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Actions */
.error-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Retry Button */
.btn-retry {
    background: #fff;
    color: #ef4444;
    border: 1px solid #ef4444;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-retry:hover {
    background: #fef2f2;
    transform: translateY(-1px);
}

/* Divider Text */
.or-divider {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
}

/* WhatsApp Backup Button */
.btn-whatsapp-error {
    background: #25D366;
    color: #fff;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    border: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-error:hover {
    background: #1ebc57;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .error-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .error-actions {
        justify-content: center;
    }
}


/* --- THANK YOU SECTION --- */
.thank-you-section {
    min-height: 80vh; /* Full screen feel */
    background: #0b1120; /* Deep Navy (Matches Contact) */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

.bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

/* The Card */
.success-card {
    background: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: popUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popUp {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Typography */
.success-title {
    font-family: var(--font-head);
    color: var(--navy);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.success-sub {
    font-size: 16px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- THE ANIMATED CHECKMARK (SVG) --- */
.success-icon-box {
    width: 80px; height: 80px;
    margin: 0 auto 30px;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--cyan); /* Brand Cyan */
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--cyan);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale { 0%, 100% { transform: none; } 50% { transform: scale3d(1.1, 1.1, 1); } }
@keyframes fill { 100% { box-shadow: inset 0px 0px 0px 50px var(--cyan); } }

/* --- TIMELINE (What Next?) --- */
.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 10px;
}

.step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: #cbd5e1; /* Inactive Color */
    font-size: 12px; font-weight: 600; text-transform: uppercase;
}

.step-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    font-size: 16px;
    transition: 0.3s;
}

.step.active .step-icon {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 75, 141, 0.3);
}

.step.active { color: var(--navy); }

.step-line {
    width: 40px; height: 3px; background: #f1f5f9; border-radius: 2px;
}

.step-line.active { background: var(--cyan); }

/* --- ACTIONS --- */
.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-home {
    background: #f8fafc;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    display: flex; align-items: center; gap: 8px;
}

.btn-home:hover {
    background: #fff;
    border-color: var(--navy);
    color: var(--navy);
    transform: translateX(-3px);
}

.btn-whatsapp-success {
    background: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}

.btn-whatsapp-success:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile */
@media (max-width: 600px) {
    .success-card { padding: 30px 20px; }
    .process-timeline { gap: 5px; }
    .step-line { width: 20px; }
    .success-actions { flex-direction: column; }
    .btn-home, .btn-whatsapp-success { width: 100%; justify-content: center; }
}