@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');

:root {
    --ink-black: #0D0D0D;
    --signature-gold: #C9972E;
    --champagne-gold: #E8CD8A;
    --warm-white: #FAF8F3;
    --charcoal: #2A2A28;
    --muted-slate: #6B6862;
}

body {
    background-color: var(--warm-white);
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    margin: 0;
    padding-top: 80px; /* match your nav height */
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
    overflow-x: hidden; 
}

main {
    flex: 1;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--ink-black);
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

.logo {
    color: var(--signature-gold);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

nav a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--warm-white);
    text-decoration: none;
    margin: 0 1.2rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.btn-gold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background-color: var(--signature-gold);
    color: var(--ink-black);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-gold:hover {
    background-color: var(--champagne-gold);
}

.ad-banner-container {
    background-color: var(--ink-black);
    border-bottom: 2px solid var(--signature-gold);
    padding: 0.5rem;
    text-align: center;
}

.ad-banner-container img {
    max-height: 60px;
    width: auto;
    border-radius: 4px;
}

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

/* =========================================
   Hero Sections
   ========================================= */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding: 4rem 8% !important;    
    background: linear-gradient(to right, rgba(13, 13, 13, 0.95) 40%, rgba(13, 13, 13, 0.3) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center right;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--signature-gold);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content p.subheadline {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: left !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-video {
        object-position: 85% center; 
    }
}

/* =========================================
   Features, Ecosystem & Services
   ========================================= */
.floating-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: -40px; 
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.feature-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 220px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 1.8rem;
    color: var(--signature-gold);
}

.feature-box span {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.3;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover; 
    border-bottom: 2px solid var(--signature-gold);
}

.ecosystem-section {
    padding: 3rem 0;
}

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

.client-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    text-align: center;
}

.client-card img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

/* Card Hover Lift Effects */
.client-card, .service-card, .package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    padding: 1.5rem;
}

.client-card:hover, .service-card:hover, .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--signature-gold);
}

/* =========================================
   Global UI Elements
   ========================================= */
html {
    scroll-behavior: smooth;
}

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

.gradient-text {
    background: linear-gradient(90deg, var(--signature-gold), var(--champagne-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 90px !important; /* Stacked above back-to-top */
    right: 30px !important;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(-10deg);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 45px;
    height: 45px;
    background: var(--ink-black);
    color: var(--signature-gold);
    border: 2px solid var(--signature-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9990 !important;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--signature-gold);
    color: var(--ink-black);
    transform: translateY(-5px);
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 75px; 
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 9998;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--signature-gold);
    width: 0%;
}

@media (max-width: 768px) {
    .back-to-top { bottom: 20px !important; right: 20px !important; }
    .floating-wa { bottom: 80px !important; right: 20px !important; }
}

@media print {
    .back-to-top, 
    .floating-wa, 
    .scroll-progress-container,
    .cookie-banner {
        display: none !important; 
    }
    .accordion-content {
        max-height: none !important; 
        display: block !important;
    }
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--ink-black);
    color: var(--muted-slate);
    padding: 4rem 2rem 1.5rem;
    border-top: 3px solid var(--signature-gold);
    font-size: 0.95rem;
    margin-top: auto; 
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-col h4 {
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--signature-gold);
}

.footer-col p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a, .footer-links a {
    color: var(--muted-slate);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover, .footer-links a:hover {
    color: var(--signature-gold);
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--muted-slate);
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    color: var(--warm-white);
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

.footer-socials a:hover {
    color: var(--signature-gold);
    transform: translateY(-3px);
}

/* =========================================
   Navigation & Mobile Menu
   ========================================= */
header.glass-nav, .glass-nav {
    position: fixed  !important; 
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.2rem 4% !important; 
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.95) !important; 
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.mobile-menu-btn {
    display: none !important; 
    font-size: 1.8rem;
    color: var(--signature-gold);
    cursor: pointer;
    z-index: 2000;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important; 
    }
    
    header nav {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 80%;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    header nav.active {
        right: 0; 
    }
    
    header nav a {
        margin: 1.5rem 0;
        font-size: 1.3rem;
    }
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    color: var(--warm-white);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(201, 151, 46, 0.3);
    border-radius: 12px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    box-sizing: border-box;
}

.cookie-banner.show {
    bottom: 30px; 
}

@media (max-width: 900px) {
    .cookie-banner { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem; bottom: -200px; }
    .cookie-banner.show { bottom: 20px; }
}

/* =========================================
   Exit Intent Popup
   ========================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--warm-white);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--signature-gold);
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--muted-slate);
    cursor: pointer;
    transition: color 0.3s;
}

.close-popup:hover {
    color: var(--charcoal);
}

.popup-content h2 {
    color: var(--ink-black);
    margin-bottom: 1rem;
}

.popup-content p {
    color: var(--muted-slate);
    margin-bottom: 1.5rem;
}

.popup-input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid var(--muted-slate);
    border-radius: 4px;
    box-sizing: border-box;
}

/* =========================================
   Portfolio & Testimonials
   ========================================= */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--muted-slate);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--ink-black);
    color: var(--signature-gold);
    border-color: var(--ink-black);
}

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

.portfolio-item {
    background: #fff;
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--signature-gold);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--signature-gold);
}

.portfolio-content {
    padding: 1.5rem;
}

.industry-tag {
    font-size: 0.8rem;
    background: var(--warm-white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    color: var(--muted-slate);
    text-transform: uppercase;
}

.portfolio-results {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
    color: #25D366; 
}

.testimonial-card {
    background: var(--ink-black);
    color: var(--warm-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--signature-gold);
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--champagne-gold);
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: bold;
    color: var(--warm-white);
}

/* =========================================
   About Page Components
   ========================================= */
.about-hero {
    min-height: 50vh; 
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 4% 5rem 4%;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.95) 30%, rgba(13, 13, 13, 0.6) 100%), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    overflow: hidden;
}

.about-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.hero-image-large {
    width: 700px; 
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.hero-text-side { flex: 1; }
.hero-image-side { flex: 1; display: flex; justify-content: center; }

.hero-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--signature-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: drift 20s linear infinite;
    z-index: 1;
}

@keyframes drift {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-50px) translateX(-50px); }
}

.about-hero h1 {
    font-size: clamp(3.5rem, 5vw, 4.5rem); 
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-outline-gold {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: transparent;
    border: 2px solid var(--signature-gold);
    color: var(--signature-gold);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--signature-gold);
    color: var(--ink-black);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.stat-item h3 {
    color: var(--signature-gold);
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    font-family: 'Space Grotesk', 'Poppins', sans-serif;
}

.stat-item p {
    color: var(--champagne-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--warm-white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 5;
    opacity: 0.7;
}

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

.section-padding { padding: 6rem 1rem; }
.bg-alt { background-color: #f7f5f0; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 151, 46, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    color: var(--warm-white);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--signature-gold);
    box-shadow: 0 15px 40px rgba(201, 151, 46, 0.15);
}

.glass-card i {
    font-size: 3rem;
    color: var(--signature-gold);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    color: var(--signature-gold);
    margin-bottom: 1rem;
}

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

.service-mini-card {
    background: #fff;
    border: 1px solid var(--muted-slate);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.service-mini-card i {
    color: var(--signature-gold);
    font-size: 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--muted-slate);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.feature-card:hover {
    border-color: var(--signature-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--signature-gold);
    margin-bottom: 1.2rem;
}

.feature-card h4 { margin-bottom: 0.8rem; }
.feature-card p { color: var(--muted-slate); font-size: 0.95rem; margin: 0; }

@media (max-width: 900px) {
    .about-hero-content { flex-direction: column; text-align: center; margin-top: 2rem; }
    .hero-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   Services Page Components
   ========================================= */
.services-hero {
    min-height: 50vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 6rem 4%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(42, 42, 40, 0.85) 100%), url('../images/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    z-index: 1;
}

.services-hero h1 {
    font-size: clamp(3.5rem, 5vw, 4.5rem); 
    margin-bottom: 1rem;
    line-height: 1.1;
}

.services-hero .subheadline {
    font-size: clamp(1.1rem, 2vw, 1.375rem); 
    color: var(--warm-white);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.premium-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: -3rem; 
    position: relative;
    z-index: 10;
    align-items: stretch; 
}

.premium-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid var(--muted-slate);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--signature-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.premium-service-card:hover::before { transform: scaleX(1); }
.premium-service-card:hover {
    transform: translateY(-10px);
    border-color: var(--signature-gold);
    box-shadow: 0 20px 40px rgba(201, 151, 46, 0.15);
}

.card-icon-wrapper {
    font-size: 3.5rem;
    color: var(--signature-gold);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.premium-service-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(201, 151, 46, 0.4));
}

.card-meta-grid {
    background: var(--warm-white);
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--muted-slate);
    border: 1px solid rgba(0,0,0,0.05);
}

.card-meta-grid strong {
    color: var(--ink-black);
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

.service-card-cta { margin-top: auto; padding-top: 1rem; }

.timeline-section {
    background: var(--ink-black);
    padding: 6rem 1rem;
    color: var(--warm-white);
    overflow: hidden;
}

.timeline-section h2 { color: var(--signature-gold) !important; }
.timeline-section p { color: var(--warm-white) !important; }

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background: rgba(201, 151, 46, 0.3);
    top: 0; bottom: 0; left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

.timeline-dot {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: var(--ink-black);
    border: 4px solid var(--signature-gold);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--signature-gold);
    box-shadow: 0 0 15px rgba(201, 151, 46, 0.4);
}

.timeline-item:nth-child(even) .timeline-dot { left: -20px; }

.timeline-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--signature-gold);
}

.timeline-content h3 { color: var(--signature-gold); margin-bottom: 0.5rem; }

@media screen and (max-width: 768px) {
    .timeline-container::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 11px; }
}

.btn-ripple { position: relative; overflow: hidden; }
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    background-color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}
@keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* =========================================
   Packages Page Components
   ========================================= */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.packages-hero {
    min-height: 40vh; 
    padding: 4rem 4% 5rem 4%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(42, 42, 40, 0.85) 100%), url('../images/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

.packages-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.96) 0%, rgba(42, 42, 40, 0.88) 100%), url('../images/services-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 25s linear infinite alternate;
    z-index: -1;
}

.blur-circle { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; z-index: 0; }
.blur-circle-1 { width: 400px; height: 400px; background: var(--signature-gold); top: -100px; left: -100px; }
.blur-circle-2 { width: 500px; height: 500px; background: var(--warm-white); bottom: -150px; right: -100px; }

.packages-hero h1 { font-size: clamp(3.5rem, 5vw, 4.5rem); margin-bottom: 1rem; line-height: 1.1; position: relative; z-index: 2; }
.packages-hero .subheadline { font-size: clamp(1.1rem, 2vw, 1.375rem); color: var(--warm-white); max-width: 800px; margin: 0 auto; font-weight: 400; position: relative; z-index: 2; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(42, 42, 40, 0.1);
    border-radius: 16px; 
    padding: 3rem 2.5rem; 
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04); 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--signature-gold);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}
.pricing-card:hover .btn-gold {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(201, 151, 46, 0.3);
}

.pricing-card h2 { color: var(--signature-gold); font-size: 1.8rem; margin-bottom: 1.2rem; }
.pricing-card .pkg-desc { color: var(--muted-slate); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem; }

.includes-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--muted-slate);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
}
.includes-divider::before, .includes-divider::after { content: ''; flex: 1; border-bottom: 1px solid rgba(0,0,0,0.1); }
.includes-divider::before { margin-right: 1em; }
.includes-divider::after { margin-left: 1em; }

.premium-tier .includes-divider { color: var(--champagne-gold); }
.premium-tier .includes-divider::before, .premium-tier .includes-divider::after { border-color: rgba(255,255,255,0.15); }

.pricing-card ul { list-style: none; padding: 0; margin: 0; flex-grow: 1; display: flex; flex-direction: column; gap: 1.2rem; }
.pricing-card ul li { color: var(--charcoal); display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.pricing-card ul li i { color: #25D366; margin-top: 4px; font-size: 1.1rem; }

.card-cta-wrapper { margin-top: 3rem; width: 100%; }
.card-cta-wrapper .btn-gold { width: 100%; text-align: center; box-sizing: border-box; transition: all 0.3s ease; border-radius: 8px; }

.pricing-card.premium-tier {
    background: var(--ink-black);
    color: var(--warm-white);
    border: 2px solid var(--signature-gold);
    position: relative;
    transform: scale(1.02);
}
.pricing-card.premium-tier:hover { transform: scale(1.02) translateY(-12px); box-shadow: 0 25px 50px rgba(201, 151, 46, 0.15); }
.pricing-card.premium-tier ul li { color: var(--warm-white); }
.pricing-card.premium-tier h2 { color: var(--signature-gold); }

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--signature-gold);
    color: var(--ink-black);
    padding: 6px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}
.pricing-card.premium-tier:hover .popular-badge { transform: translateX(-50%) translateY(-3px); }

.custom-package-section {
    background: #fff;
    border: 1px solid rgba(42, 42, 40, 0.1);
    border-radius: 16px;
    padding: 4rem;
    margin-top: 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; 
    align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
}

.custom-list-grid { display: grid; grid-template-columns: 1fr 1fr; row-gap: 1.5rem; column-gap: 2rem; list-style: none; padding: 0; margin: 0; }
.custom-list-grid li { display: flex; align-items: flex-start; gap: 12px; color: var(--charcoal); }
.custom-list-grid li i { color: var(--signature-gold); margin-top: 4px; font-size: 1.1rem; }

.pricing-factors-section {
    background: var(--ink-black);
    color: var(--warm-white);
    padding: 5rem 2rem;
    border-radius: 16px;
    margin-top: 6rem;
    margin-bottom: 5rem;
    text-align: center;
    border-top: 4px solid var(--signature-gold);
}

.pricing-pills { list-style: none; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin: 3rem 0; }
.pricing-pills li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
}
.pricing-pills li:hover {
    transform: translateY(-5px);
    border-color: var(--signature-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(201, 151, 46, 0.15);
}

@media (max-width: 900px) {
    .pricing-card.premium-tier { transform: none; }
    .pricing-card.premium-tier:hover { transform: translateY(-12px); }
    .custom-package-section { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 2rem; }
    .custom-list-grid { grid-template-columns: 1fr; }
}

/* =========================================
   Industries & Commitment Components
   ========================================= */
.industries-hero {
    min-height: 40vh; 
    padding: 4rem 4% 5rem 4%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(42, 42, 40, 0.85) 100%), url('../images/industries-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

.industries-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.98) 0%, rgba(42, 42, 40, 0.92) 100%), url('../images/industries-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    animation: slowZoom 25s linear infinite alternate;
    z-index: -1;
}

.industries-hero h1 { font-size: clamp(3.5rem, 5vw, 4.5rem); margin-bottom: 1rem; line-height: 1.1; position: relative; z-index: 2; }
.industries-hero .subheadline { font-size: clamp(1.1rem, 2vw, 1.375rem); color: var(--warm-white); max-width: 800px; margin: 0 auto; font-weight: 400; position: relative; z-index: 2; }

.industry-section { padding: 6rem 1rem; background: var(--warm-white); }
.commitment-section { padding: 6rem 1rem; background: #fff; border-top: 1px solid rgba(0,0,0,0.05); }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    align-items: stretch;
}

.industry-card {
    background: #fff;
    border-radius: 20px; 
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.industry-card:hover { transform: translateY(-12px); border-color: var(--signature-gold); box-shadow: 0 25px 50px rgba(201, 151, 46, 0.15); }
.industry-img-wrapper { height: 240px; width: 100%; overflow: hidden; position: relative; border-bottom: 3px solid var(--signature-gold); }
.industry-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.industry-card:hover .industry-img-wrapper img { transform: scale(1.15); }

.industry-content { padding: 2.5rem 2rem; display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.industry-content h3 { color: var(--ink-black); font-size: 1.4rem; margin-bottom: 1rem; }
.industry-content p { color: var(--muted-slate); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.commitment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 4rem auto 0; }
.commitment-card {
    background: #fff;
    border: 1px solid var(--muted-slate);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.commitment-card:hover { transform: translateY(-10px); border-color: var(--signature-gold); box-shadow: 0 20px 40px rgba(201, 151, 46, 0.12); }
.commitment-card i { font-size: 3rem; color: var(--signature-gold); margin-bottom: 1.5rem; transition: transform 0.3s ease; }
.commitment-card:hover i { transform: scale(1.15); }
.commitment-card h4 { color: var(--charcoal); font-size: 1.2rem; margin: 0; }

.doc-note-card {
    background: var(--ink-black);
    color: var(--warm-white);
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 3rem;
    border-radius: 16px;
    border-left: 6px solid var(--signature-gold);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.doc-note-card i { font-size: 3.5rem; color: var(--signature-gold); }
.doc-note-card p { margin: 0; font-size: 1.15rem; line-height: 1.6; }

@media (max-width: 768px) {
    .industry-grid, .commitment-grid { grid-template-columns: 1fr; gap: 2rem; }
    .doc-note-card { flex-direction: column; text-align: center; padding: 2rem; }
    .industry-img-wrapper { height: 200px; }
}

/* =========================================
   Legal & Disclaimer Pages Components
   ========================================= */
.legal-container { max-width: 950px; margin: 0 auto; padding: 4rem 1rem 8rem; }

.legal-intro-box {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 4rem;
    border-left: 6px solid var(--signature-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    margin-bottom: 5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.legal-intro-box:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }

.legal-section-card {
    background: #fff;
    border-radius: 20px;
    padding: 4rem 4rem 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    margin-bottom: 4rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.legal-section-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.08); }
.legal-section-number { font-size: 3.5rem; font-weight: 900; color: rgba(201, 151, 46, 0.2); line-height: 1; font-family: 'Space Grotesk', 'Poppins', sans-serif; }
.legal-section-title { display: flex; align-items: center; gap: 12px; font-size: 1.6rem; color: var(--ink-black); margin: 0; }
.legal-section-title i { color: var(--signature-gold); font-size: 1.5rem; }

.legal-container p { color: var(--muted-slate); line-height: 1.8; margin-bottom: 32px; font-size: 1.05rem; }

.legal-highlight-box {
    background: rgba(201, 151, 46, 0.05);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin: 3rem 0;
    border: 1px solid rgba(201, 151, 46, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.legal-highlight-box:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(201, 151, 46, 0.08); }
.legal-highlight-box i { font-size: 2rem; color: var(--signature-gold); margin-top: 5px; }
.legal-highlight-box p { margin: 0; color: var(--charcoal); font-weight: 500; }

.legal-list { list-style: none; padding: 0 0 0 1rem; margin: 2rem 0 3rem; }
.legal-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.2rem; color: var(--charcoal); line-height: 1.8; font-size: 1.05rem; transition: transform 0.2s ease, color 0.2s ease; }
.legal-list li:hover { transform: translateX(5px); color: var(--ink-black); }
.legal-list li i { color: #25D366; font-size: 1.2rem; margin-top: 5px; }

.legal-footer-box {
    background: var(--ink-black);
    color: var(--warm-white);
    padding: 4rem;
    border-radius: 20px;
    margin-top: 6rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.legal-footer-box i { font-size: 3rem; color: var(--signature-gold); }
.legal-footer-box h4 { color: var(--signature-gold); margin-bottom: 1rem; font-size: 1.3rem; }
.legal-footer-box p { color: var(--champagne-gold); margin-bottom: 0; font-size: 1rem; opacity: 0.9; }

@media (max-width: 768px) {
    .legal-container { padding: 3rem 4% 6rem; }
    .legal-intro-box, .legal-section-card, .legal-highlight-box, .legal-footer-box { padding: 2rem; }
    .legal-section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .legal-section-number { font-size: 2.5rem; }
    .legal-footer-box { flex-direction: column; align-items: center; text-align: center; }
}

/* =========================================
   FAQ Page Components
   ========================================= */
.faq-container { max-width: 900px; margin: 0 auto; padding: 4rem 1rem 8rem; }
.faq-intro { text-align: center; margin-bottom: 4rem; }
.faq-intro h2 { color: var(--signature-gold); margin-bottom: 1rem; }
.faq-intro p { color: var(--muted-slate); font-size: 1.1rem; line-height: 1.6; }

.accordion { display: flex; flex-direction: column; gap: 1rem; }
.accordion-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s ease;
}
.accordion-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink-black);
    transition: color 0.3s ease;
}
.accordion-header:hover, .accordion-header.active { color: var(--signature-gold); }

.accordion-icon { font-size: 1.2rem; color: var(--signature-gold); transition: transform 0.3s ease; }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease; background: #fafafa; }
.accordion-content-inner { padding: 0 2rem 1.5rem 2rem; color: var(--charcoal); line-height: 1.8; }
.accordion-content-inner p { margin-bottom: 1rem; }
.accordion-content-inner p:last-child { margin-bottom: 0; }

.accordion-list { list-style: none; padding-left: 0; margin: 1rem 0; }
.accordion-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.5rem; }
.accordion-list li i { color: #25D366; margin-top: 5px; }

.faq-footer {
    background: var(--ink-black);
    color: var(--warm-white);
    padding: 4rem;
    border-radius: 20px;
    margin-top: 6rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.faq-footer h3 { color: var(--signature-gold); font-size: 2rem; margin-bottom: 1.5rem; }
.faq-footer p { color: var(--muted-slate); font-size: 1.1rem; margin-bottom: 2rem; }

.faq-contact-grid { display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.faq-contact-item { display: flex; align-items: center; gap: 10px; color: var(--warm-white); font-weight: 500; }
.faq-contact-item i { color: var(--signature-gold); font-size: 1.2rem; }

.faq-promise { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; margin-top: 2rem; text-align: left; }
.faq-promise h4 { color: var(--signature-gold); margin-bottom: 1rem; }
.faq-promise p { margin-bottom: 0; font-size: 1rem; line-height: 1.7; }

@media (max-width: 768px) {
    .accordion-list { grid-template-columns: 1fr !important; }
}

/* =========================================
   Careers Page Components
   ========================================= */
.careers-hero {
    min-height: auto;
    padding: 6rem 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.95)), url('../images/careers-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: slowZoom 25s linear infinite alternate;
    z-index: 1;
    overflow: hidden;
}

.split-60-40 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.split-50-50 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
    min-height: 350px;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: transform 0.6s ease; }
.img-card:hover img { transform: scale(1.08); }

.icon-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.icon-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.icon-card:hover { transform: translateY(-8px); border-color: var(--signature-gold); box-shadow: 0 15px 40px rgba(201, 151, 46, 0.12); }
.icon-card i { font-size: 2.5rem; color: var(--signature-gold); }
.icon-card span { font-weight: 700; color: var(--ink-black); font-size: 1.1rem; }

.job-banner { width: 100%; height: 250px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.premium-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.timeline-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}
.timeline-card:hover { transform: translateY(-5px); border-color: var(--signature-gold); }
.timeline-step-num {
    position: absolute;
    top: -20px; left: 20px;
    width: 45px; height: 45px;
    background: var(--signature-gold); color: var(--ink-black);
    font-weight: 900; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
    .split-60-40, .split-50-50 { grid-template-columns: 1fr; gap: 3rem; }
    .img-card { min-height: 250px; }
    .job-banner { height: 180px; }
}



/* =========================================
   CRITICAL MOBILE BLOWOUT FIX
   ========================================= */

/* 1. Strictly lock the viewport so the screen cannot scroll sideways */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

@media (max-width: 900px) {
    /* 2. Force the 700px Hero Image to shrink and center on mobile */
    .hero-image-large {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        margin: 2rem auto 0 auto !important;
        display: block;
    }
    
    /* 3. Hide the mobile menu completely when it is off-screen to prevent layout breaking */
    header nav {
        visibility: hidden;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.4s;
    }
    
    header nav.active {
        visibility: visible;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0s;
    }
}


/* =========================================
   IMAGE PROMO STICKER (Attached to Cards)
   ========================================= */
.pricing-card {
    position: relative;
    overflow: visible !important; /* Crucial: Allows the sticker to break outside the box */
}

.offer-sticker {
    position: absolute;
    top: -55px;
    right: -30px;
    width: 150px;
    z-index: 20;
    transition: 0.35s ease;
    pointer-events: none; /* Prevents the sticker from blocking clicks on the card */
}

.offer-sticker img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.25));
}

.pricing-card:hover .offer-sticker {
    transform: rotate(-6deg) scale(1.08);
}

/* Premium Card Adjustment */
.premium-tier .offer-sticker {
    left: auto;
    top: -55px;
    right: -25px;
}

/* Mobile Responsiveness */
@media(max-width:768px) {
    .offer-sticker {
        width: 110px;
        top: -35px;
        right: -15px;
    }
    
    .premium-tier .offer-sticker {
        left: auto;
        right: -15px;
    }
}


