/* Safe Technologies - Premium Light Theme CSS - Full Redesign */

:root {
    --bg-color: #F5F3F0;
    --surface-color: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #94A3B8;
    --accent-red: #E11D48;
    --accent-red-hover: #BE123C;
    --accent-red-light: #FFE4E6;
    --accent-black: #020617;
    --accent-black-hover: #1E293B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --max-width: 1300px;
    --container-padding: 2.5rem;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

a, button, .btn { cursor: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-black);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--container-padding); }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.text-white { color: white; }
.text-gray { color: var(--text-light); }
.justify-center { justify-content: center; }

/* Shared Section Styles */
.section-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title-serif {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

/* Typography */
.text-gradient { background: linear-gradient(135deg, var(--accent-red), #F43F5E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-white { background: linear-gradient(135deg, #fff, rgba(255,255,255,0.7)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.875rem 2rem; border-radius: 50px;
    font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
    cursor: none; transition: var(--transition-fast); border: none;
}
.btn-primary { background-color: var(--accent-red); color: white; box-shadow: 0 4px 14px 0 rgba(225, 29, 72, 0.39); }
.btn-primary:hover { background-color: var(--accent-red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4); }
.btn-secondary { background-color: var(--accent-black); color: white; }
.btn-secondary:hover { background-color: var(--accent-black-hover); transform: translateY(-2px); }
.btn-outline-white { display: inline-flex; align-items: center; padding: 0.875rem 2rem; border-radius: 50px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; border: 2px solid rgba(255,255,255,0.6); color: white; transition: var(--transition-fast); }
.btn-outline-white:hover { background-color: white; color: var(--accent-black); }
.btn-premium { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-nav { padding: 0.5rem 1.25rem; border-radius: 50px; font-family: var(--font-heading); font-weight: 600; border: 2px solid var(--text-primary); color: var(--text-primary); transition: var(--transition-fast); }
.btn-nav:hover { background-color: var(--text-primary); color: white; }
.cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Custom Cursor */
.custom-cursor {
    position: fixed; top: 0; left: 0; width: 10px; height: 10px;
    background-color: var(--accent-red); border-radius: 50%;
    pointer-events: none; z-index: 99999; mix-blend-mode: difference;
    transform: translate3d(-50%, -50%, 0);
}
.custom-cursor-follower {
    position: fixed; top: 0; left: 0; width: 40px; height: 40px;
    border: 2px solid var(--accent-red); border-radius: 50%;
    pointer-events: none; z-index: 99998;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    transform: translate3d(-50%, -50%, 0);
}
.custom-cursor-follower.active { width: 60px; height: 60px; background-color: rgba(225, 29, 72, 0.15); }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; height: 80px;
    background: rgba(245, 243, 240, 0.85);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    z-index: 1000; display: flex; align-items: center;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 1.4rem; color: var(--accent-black); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; font-family: var(--font-heading); font-weight: 500; font-size: 0.95rem; }
.nav-links a:not(.btn-nav):hover { color: var(--accent-red); }
.mobile-menu-btn { display: none; background: none; border: none; width: 30px; height: 20px; position: relative; cursor: none; }
.mobile-menu-btn span { display: block; width: 100%; height: 2px; background: var(--accent-black); position: absolute; left: 0; transition: 0.3s; }
.mobile-menu-btn span:first-child { top: 0; }
.mobile-menu-btn span:last-child { bottom: 0; }
.mobile-menu-btn.open span:first-child { transform: rotate(45deg); top: 9px; }
.mobile-menu-btn.open span:last-child { transform: rotate(-45deg); bottom: 9px; }

/* HERO */
.premium-hero {
    position: relative; padding-top: 80px; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center; background-repeat: no-repeat; color: white;
    overflow: hidden; /* Added to contain video */
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%); z-index: 1; }
.hero-content-center { position: relative; z-index: 2; text-align: center; max-width: 850px; margin: 0 auto; }
.badge-premium { display: inline-block; padding: 0.5rem 1.25rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: white; border-radius: 50px; font-size: 0.8rem; font-weight: 600; font-family: var(--font-heading); margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 2px; }
.premium-title { font-family: var(--font-serif); font-weight: 500; font-size: 5.5rem; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: white; }
.premium-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 3rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.4); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ABOUT STORY */
.about-story { padding: 8rem 0; }
.about-story .section-title-serif { max-width: 600px; margin-left: auto; margin-right: auto; font-size: 3.5rem; }
.about-story-text { max-width: 750px; margin: 0 auto; text-align: center; }
.about-lead { font-size: 1.35rem; font-weight: 500; color: var(--accent-black); margin-bottom: 1.5rem; line-height: 1.7; }
.about-story-text p:not(.about-lead) { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; }

/* STATS */
.stats-section { padding: 4rem 0; border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 2rem 0; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 3rem; font-weight: 600; color: var(--accent-red); margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

/* SHOWCASE IMAGE */
.showcase-image { width: 100%; height: 70vh; overflow: hidden; position: relative; }
.showcase-image-inner { width: 100%; height: 130%; position: absolute; top: -15%; background-size: cover; background-position: center; filter: grayscale(30%); transition: filter 0.5s; }
.showcase-image:hover .showcase-image-inner { filter: grayscale(0%); }

/* BRANDS MARQUEE */
.brands-marquee {
    padding: 1.5rem 0;
    background: var(--accent-black);
    overflow: hidden;
    position: relative;
}
.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none;
}
.brands-marquee::before { left: 0; background: linear-gradient(to right, var(--accent-black), transparent); }
.brands-marquee::after { right: 0; background: linear-gradient(to left, var(--accent-black), transparent); }

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.marquee-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    padding: 0 1.5rem;
    white-space: nowrap;
    transition: color 0.3s;
}
.marquee-brand:hover { color: var(--accent-red); }
.marquee-dot {
    color: var(--accent-red);
    font-size: 0.35rem;
    opacity: 0.6;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WHAT WE PROVIDE - Premium Focus Cards */
.what-we-provide { padding: 8rem 0; }
.what-we-provide .section-title-serif { max-width: 550px; margin-left: auto; margin-right: auto; margin-bottom: 4rem; }

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

.provide-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem 3rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: none;
    min-height: 380px;
    z-index: 1;
}

/* Background Image Layer */
.provide-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(40%) brightness(0.45);
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s cubic-bezier(0.4,0,0.2,1);
    z-index: -2;
}
.provide-card:hover .provide-card-bg {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(0.3);
}

/* Dark gradient overlay for text readability */
.provide-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,6,23,0.35) 0%, rgba(2,6,23,0.85) 100%);
    z-index: -1;
    transition: background 0.5s;
    border-radius: var(--radius-lg);
}
.provide-card:hover::after {
    background: linear-gradient(180deg, rgba(2,6,23,0.4) 0%, rgba(2,6,23,0.92) 100%);
}

/* Accent top bar */
.provide-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #F43F5E);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
}
.provide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.45);
}
.provide-card:hover::before {
    transform: scaleX(1);
}

.provide-card-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.provide-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    margin-bottom: 1.5rem;
    transition: background 0.4s, transform 0.4s;
}
.provide-card:hover .provide-card-icon {
    background: var(--accent-red);
    transform: scale(1.08);
}
.provide-card-icon svg {
    stroke: white;
}

.provide-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: color 0.3s;
}
.provide-card:hover h3 { color: var(--accent-red-light); }

.provide-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.provide-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, transform 0.3s;
    align-self: flex-start;
}
.provide-card:hover .provide-card-arrow {
    background: var(--accent-red);
    color: white;
    transform: translateX(5px);
}

/* Grid: first 3 cards in a row, last 2 centered */
@media (min-width: 993px) {
    .provide-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
    }
    .provide-card {
        flex: 0 0 calc(33.333% - 1.34rem);
        max-width: calc(33.333% - 1.34rem);
    }
}

/* TESTIMONIALS */
.testimonials { padding: 8rem 0; }
.testimonials-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.testimonial-image-col img { width: 100%; height: 600px; object-fit: cover; border-radius: var(--radius-lg); }
.testimonial-content-col { max-width: 550px; }
.testimonial-content-col .section-title-serif { font-size: 2.5rem; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.testimonial-text { font-size: 1.1rem; font-style: italic; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { font-family: var(--font-heading); font-weight: 600; color: var(--accent-black); }
.testimonial-dots { display: flex; gap: 0.5rem; margin-top: 2rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--accent-black); background: transparent; cursor: none; transition: var(--transition-fast); }
.dot.active { background: var(--accent-red); border-color: var(--accent-red); }

/* OPERATIONAL HISTORY */
.operational-history { padding: 8rem 0; background: white; }
.operational-title { font-family: var(--font-serif); font-style: italic; font-size: 3rem; font-weight: 500; margin-bottom: 3rem; color: var(--accent-black); }
.op-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.op-card { background-color: var(--bg-color); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: none; }
.op-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.op-card-image { width: 100%; height: 280px; overflow: hidden; }
.op-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.8; }
.op-card:hover .op-card-image img { transform: scale(1.05); opacity: 1; }
.op-card-content { padding: 1.5rem 2rem; }
.op-subtitle { font-size: 0.75rem; font-weight: 600; color: var(--accent-red); letter-spacing: 0.1em; margin-bottom: 0.5rem; text-transform: uppercase; }
.op-card h3 { color: var(--accent-black); font-size: 1.4rem; margin-bottom: 2.5rem; }
.op-status { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.05em; text-transform: uppercase; }
.op-arrow { color: var(--accent-red); font-size: 1.25rem; font-weight: 800; }

/* CTA BANNER */
.cta-banner { padding: 4rem 0 8rem; }
.cta-content { border-radius: var(--radius-lg); padding: 5rem 2rem; text-align: center; max-width: 900px; margin: 0 auto; background: var(--accent-black); color: white; }
.cta-content h2 { font-size: 2.5rem; color: white; margin-bottom: 1rem; }
.cta-content p { font-size: 1.15rem; color: #CBD5E1; }

/* SOCIAL SECTION */
.social-section { padding: 6rem 0; }
.social-desc { color: var(--text-secondary); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.5rem; }
.social-links-row { display: flex; justify-content: center; gap: 2rem; }
.social-link {
    font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem;
    padding: 0.75rem 2rem; border: 2px solid rgba(0,0,0,0.1); border-radius: 50px;
    transition: var(--transition-fast);
}
.social-link:hover { border-color: var(--accent-red); color: var(--accent-red); }

/* FOOTER */
.footer { background: var(--accent-black); color: white; padding: 4rem 0; }
.footer-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }

/* MODAL */
.project-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.project-modal.active { opacity: 1; pointer-events: auto; }
.modal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px); }
.modal-content-wrapper { position: relative; width: 90%; max-width: 1000px; max-height: 90vh; background: var(--bg-color); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); transform: translateY(30px); transition: transform 0.4s ease; display: flex; flex-direction: column; }
.project-modal.active .modal-content-wrapper { transform: translateY(0); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background: rgba(0,0,0,0.05); border: none; border-radius: 50%; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; color: var(--accent-black); cursor: none; z-index: 10; transition: background 0.3s ease, color 0.3s ease; }
.modal-close:hover { background: var(--accent-red); color: white; }
.modal-body { overflow-y: auto; padding: 3rem; }
.modal-header { margin-bottom: 2rem; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.modal-subtitle { color: var(--accent-red); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.modal-title { font-size: 2.5rem; margin-bottom: 1rem; }
.modal-desc { color: var(--text-secondary); font-size: 1.1rem; }
.modal-gallery { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.modal-gallery img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
@media (min-width: 768px) { .modal-gallery { grid-template-columns: 1fr 1fr; } }

/* ==========================================
   ANIMATION SYSTEM (pure CSS, no GSAP needed)
   ========================================== */

/* Hero entrance animations */
.hero-anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.hero-anim.anim-active { opacity: 1; transform: translateY(0); }
.navbar { transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), background 0.3s; }
.navbar.anim-active { transform: translateY(0); }
.navbar.nav-hidden { transform: translateY(-100%) !important; }

/* Scroll-triggered section animations */
.anim-section.anim-fade-up .anim-child { opacity: 0; transform: translateY(50px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.anim-section.anim-fade-up.anim-active .anim-child.anim-active { opacity: 1; transform: translateY(0); }

.anim-section.anim-fade-left .anim-child { opacity: 0; transform: translateX(-50px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.anim-section.anim-fade-left.anim-active .anim-child.anim-active { opacity: 1; transform: translateX(0); }

.anim-section.anim-scale-in { opacity: 0; transform: scale(0.92); transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1); }
.anim-section.anim-scale-in.anim-active { opacity: 1; transform: scale(1); }

/* Testimonial directional animations */
.anim-child.anim-from-left { opacity: 0; transform: translateX(-80px); transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.anim-child.anim-from-right { opacity: 0; transform: translateX(80px); transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1), transform 0.9s cubic-bezier(0.4,0,0.2,1); }
.anim-section.anim-active .anim-child.anim-from-left.anim-active,
.anim-section.anim-active .anim-child.anim-from-right.anim-active { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .premium-title { font-size: 3.5rem; }
    .provide-grid, .op-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-container { grid-template-columns: 1fr; }
    .testimonial-image-col img { height: 400px; }
    .section-title-serif { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .premium-title { font-size: 2.8rem; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--bg-color); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .nav-links.open { display: flex; }
    .mobile-menu-btn { display: block; }
    .showcase-image { height: 50vh; }
    .showcase-image-inner { background-attachment: scroll; }
    .about-story .section-title-serif { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .social-links-row { flex-direction: column; align-items: center; }
    .provide-grid { grid-template-columns: 1fr; }
    .provide-card { cursor: pointer; }
    .custom-cursor, .custom-cursor-follower { display: none; }
    body { cursor: auto; }
    a, button, .btn { cursor: pointer; }
}
