/* =============================================
   5infra by Sagar Developers — Luxury Construction Theme
   Red: #E31E24 | Cream: #F5F5F0 | Dark: #0A0A0A
   Fonts: Cormorant Garamond (headings) | DM Sans (body)
   ============================================= */

:root {
    --primary: #E31E24;
    --primary-light: #FF4444;
    --primary-dark: #B91C1C;
    --bg: #F5F5F0;
    --bg-alt: #F0EDE8;
    --dark: #0A0A0A;
    --dark-2: #1A1A1A;
    --dark-3: #2A2A2A;
    --text: #1A1A1A;
    --text-light: #555555;
    --text-lighter: #777777;
    --white: #FFFFFF;
    --border: rgba(0,0,0,0.08);
    --border-dark: rgba(255,255,255,0.1);
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-red: 0 10px 40px rgba(227,30,36,0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.gold-italic {
    font-style: italic;
    color: var(--primary);
}

body:hover .cursor-dot, body:hover .cursor-ring { opacity: 1; }
.cursor-expand { width: 60px !important; height: 60px !important; border-color: var(--primary) !important; }

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto; }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
    backdrop-filter: blur(10px);
    background: rgba(245,245,240,0);
}
.header.scrolled {
    background: rgba(245,245,240,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}


/* Non-homepage: solid dark header immediately, no scroll needed */
body:not(.home) .header {
    background: rgba(10, 10, 10, 0.96);
    box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
body:not(.home) .header.scrolled {
    background: rgba(10, 10, 10, 0.98);
}
body:not(.home) .header .nav-link {
    color: var(--white);
}
body:not(.home) .header .logo-img-main {
    display: none;
}
body:not(.home) .header .logo-img-scroll {
    display: flex;
}
body:not(.home) .header .hamburger span {
    background: var(--white);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}
.logo-img-main {
    height: 70px;
    width: auto;
    display: block;
    transition: var(--transition);
}
.logo-img-scroll,
.logo-img-inner {
    display: none;
    align-items: center;
    gap: 10px;
    height: 70px;
    width: auto;
}
 


/* ── Homepage: transparent → scrolled logo swap ── */
.home .header.scrolled .logo-img-main         { display: none; }
.home .header.scrolled .logo-img-scroll        { display: flex; }
 
/* ── Inner pages: always show inner logo, never show home logos ── */
body:not(.home) .header .logo-img-main         { display: none; }
body:not(.home) .header .logo-img-scroll       { display: none; }
body:not(.home) .header .logo-img-inner        { display: flex; }



.logo-box {
    width: 44px; height: 44px;
    background: var(--primary);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 6px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 1px;
    transition: var(--transition);
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.header.scrolled .nav-link {
    color: #0A0A0A;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}
.nav-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

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

.hamburger {
    display: none;
    width: 28px; height: 20px;
    background: none; border: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--dark);
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--bg);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px;
    padding: 100px 24px 40px;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-menu.active { right: 0; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav-link {
    text-decoration: none; font-family: var(--font-display);
    font-size: 2rem; font-weight: 600; color: var(--dark);
    cursor: pointer;
}
.mobile-menu { background: var(--bg); }
.mobile-nav-link:hover { color: var(--primary); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 32px;
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.5px;
    text-decoration: none; border: none;
    border-radius: 4px; cursor: pointer;
    transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--primary); color: var(--white);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white); color: var(--dark);
    border-color: var(--white); transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
    background: var(--dark); color: var(--white);
    border-color: var(--dark); transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 0.9rem; }
.btn-full { width: 100%; }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--bg); }

/* =============================================
   PAGE HEADER / BREADCRUMB
   ============================================= */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg);
    overflow: hidden;
}
.page-header-bg {
    position: absolute; inset: 0;
}
.page-header-bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.15;
}
.page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(245,245,240,0.95), rgba(245,245,240,0.85));
}
.page-header-content {
    position: relative; z-index: 2; text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600; color: var(--dark);
    margin-bottom: 16px;
}
.page-header p {
    font-size: 1.1rem; color: var(--text-light);
    max-width: 600px; margin: 0 auto;
}
.breadcrumb {
    display: flex; justify-content: center; align-items: center;
    gap: 12px; margin-bottom: 24px;
}
.breadcrumb a {
    text-decoration: none; font-size: 0.8rem;
    color: var(--text-lighter); text-transform: uppercase;
    letter-spacing: 1.5px; cursor: pointer;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span {
    font-size: 0.8rem; color: var(--primary);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.breadcrumb i {
    font-size: 0.6rem; color: var(--border);
}

/* =============================================
   HERO (Homepage)
   ============================================= */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-video-container {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video-container video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.85));
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px;
    padding-top: 80px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 600; color: var(--white);
    line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--primary-light); }
.hero-subtitle {
    font-family: var(--font-body); font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: rgba(255,255,255,0.75); line-height: 1.7;
    margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-mouse {
    width: 24px; height: 36px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px; position: relative;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}
.scroll-indicator span {
    font-size: 0.7rem; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 2px;
}

/* =============================================
   STATS
   ============================================= */
.stats-bar {
    padding: 0; margin-top: -60px;
    position: relative; z-index: 10;
}
.stats-card {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.stat-item {
    padding: 40px 24px; text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg); }
.stat-icon {
    width: 48px; height: 48px;
    background: rgba(227,30,36,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--primary);
    font-size: 1.2rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700;
    color: var(--dark); line-height: 1;
}
.stat-label {
    font-size: 0.8rem; color: var(--text-lighter);
    margin-top: 8px; letter-spacing: 0.5px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center; max-width: 800px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-block; font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--primary); margin-bottom: 16px;
    padding: 6px 16px; background: rgba(227,30,36,0.08);
    border-radius: 20px;
}
.section-label.light { background: rgba(227,30,36,0.08); color: var(--primary); }
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600; color: var(--dark);
    line-height: 1.15; margin-bottom: 16px;
}
.section-title.light { color: var(--dark); }
.section-subtitle {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7;
}
.section-subtitle.light { color: var(--text-light); }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}
.service-card {
    background: var(--white); border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition); position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-featured {
    grid-column: 1 / 3; grid-row: 1 / 2;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 380px;
}
.service-featured .service-image { height: 100%; }
.service-featured .service-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.service-image { height: 220px; overflow: hidden; }
.service-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-icon-main {
    width: 56px; height: 56px;
    background: rgba(227,30,36,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.3rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600;
    color: var(--dark); margin-bottom: 12px;
}
.service-card p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.6;
}
.service-small {
    padding: 32px;
    display: flex; flex-direction: column;
    gap: 14px;
}
.service-icon-wrap {
    width: 48px; height: 48px;
    background: rgba(227,30,36,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
}
.service-small h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark);
}
.service-small p { font-size: 0.85rem; color: var(--text-lighter); line-height: 1.6; }

.services-cta { text-align: center; margin-top: 48px; }

/* =============================================
   CO-FOUNDER SECTION
   ============================================= */
.cofounder {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
}

.cofounder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cofounder-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cofounder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}
.cofounder-content {
    padding: 20px 0;
}
.cofounder-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(227,30,36,0.08);
    border-radius: 20px;
}
.cofounder-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cofounder-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}
.cofounder-content > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.cofounder-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.cofounder-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =============================================
   SERVICES DETAIL PAGE
   ============================================= */
.service-detail-hero {
    position: relative;
    height: 500px;
    display: flex; align-items: center;
    overflow: hidden;
}
.service-detail-hero .hero-video-container { position: absolute; inset: 0; }
.service-detail-hero .hero-video-container video { width: 100%; height: 100%; object-fit: cover; }
.service-detail-hero .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0.85)); z-index: 1; }
.service-detail-hero .hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; padding-top: 60px; }

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}
.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}
.service-detail-card:hover::before {
    transform: scaleX(1);
}
.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227,30,36,0.15);
}
.service-detail-card .service-image { height: 280px; }
.service-detail-card .service-body { padding: 36px; }
.service-detail-card .service-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 600;
    color: var(--dark); margin-bottom: 12px;
}
.service-detail-card .service-body p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 20px;
}
.service-features {
    display: flex; flex-direction: column; gap: 10px;
}
.service-feature-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: var(--text-light);
}
.service-feature-item i {
    color: var(--primary); font-size: 0.7rem;
}

.service-process {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}
.service-process .section-header { margin-bottom: 60px; position: relative; z-index: 1; }
.service-process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    position: relative; z-index: 1;
}
.service-process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 36px 28px;
    text-align: center; position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.service-process-step:hover {
    border-color: rgba(227,30,36,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.process-step-num {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700;
    color: var(--primary); opacity: 0.25;
    line-height: 1; margin-bottom: 16px;
}
.service-process-step h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 10px;
}
.service-process-step p {
    font-size: 0.85rem; color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--bg-alt); padding: 80px 0; }
.cta-box {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 60px; align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}
.cta-content h3 {
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--primary); margin-bottom: 8px;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600; color: var(--dark); margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 32px;
    max-width: 540px;
}
.cta-image {
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 320px;
}
.cta-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { background: var(--bg); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.why-content .section-title { text-align: left; margin-bottom: 8px; }
.why-intro {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 40px;
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.why-card {
    background: var(--white);
    border-radius: 16px; padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition); border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227,30,36,0.15);
}
.why-card:hover::before {
    opacity: 1;
}
.why-icon {
    width: 44px; height: 44px;
    background: rgba(227,30,36,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
    margin-bottom: 16px;
}
.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 8px;
}
.why-card p {
    font-size: 0.85rem; color: var(--text-lighter);
    line-height: 1.6;
}
.why-image { position: relative; }
.why-image img {
    width: 100%; border-radius: 24px;
    box-shadow: var(--shadow-lg);
}
.why-float-card {
    position: absolute; background: var(--white);
    border-radius: 16px; padding: 20px 24px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
    animation: floatY 3s ease-in-out infinite;
}
.float-1 { bottom: 80px; left: -30px; }
.float-2 { top: 60px; right: -20px; animation-delay: 1.5s; }
.float-icon {
    width: 44px; height: 44px;
    background: var(--primary); color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.float-number {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--dark); display: block; line-height: 1;
}
.float-label { font-size: 0.75rem; color: var(--text-lighter); }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* =============================================
   PROJECTS
   ============================================= */
.projects {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg);
}

.projects-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    border-radius: 20px; overflow: hidden;
    position: relative; cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.project-card.large { grid-column: span 2; }
.project-image { height: 320px; overflow: hidden; border-radius: 20px; }
.project-image img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover .project-image img {
    transform: scale(1.08);
}
.project-card.large .project-image { height: 380px; }
.project-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.project-card:hover .project-image img { transform: scale(1.08); }
.project-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    transform: translateY(20px); opacity: 0.9;
    transition: var(--transition);
}
.project-card:hover .project-info { transform: translateY(0); opacity: 1; }
.project-tag {
    display: inline-block; font-size: 0.7rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--primary);
    background: rgba(227,30,36,0.15);
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 10px;
}
.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 600;
    color: var(--white); margin-bottom: 6px;
}
.project-info p {
    font-size: 0.85rem; color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg-alt);
}

.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 40px 32px;
    position: relative; transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.testimonial-card:hover {
    border-color: rgba(227,30,36,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card:hover::before {
    opacity: 1;
}
.quote-icon {
    font-size: 2rem; color: var(--primary);
    margin-bottom: 20px; opacity: 0.3;
}
.testimonial-text {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--dark);
}
.testimonial-author span {
    font-size: 0.8rem; color: var(--primary);
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--bg); }
.contact-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 60px; align-items: start;
}
.contact-info .section-title { text-align: left; margin-bottom: 8px; }
.contact-intro {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(227,30,36,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1rem;
}
.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--dark); margin-bottom: 4px;
}
.contact-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.contact-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-buttons .btn-outline { color: var(--dark); border-color: var(--border); }
.contact-buttons .btn-outline:hover { background: var(--dark); color: var(--white); }

.contact-form-wrap {
    background: var(--white);
    border-radius: 24px; padding: 48px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 20px;
    border: 1.5px solid var(--border);
    border-radius: 12px; font-family: var(--font-body);
    font-size: 0.9rem; color: var(--dark);
    background: var(--bg); transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* Contact Page Specific */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px; align-items: start;
}
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.contact-card {
    background: var(--white);
    border-radius: 16px; padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227,30,36,0.15);
}
.contact-card-icon {
    width: 56px; height: 56px;
    background: rgba(227,30,36,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.3rem;
    margin: 0 auto 16px;
}
.contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 8px;
}
.contact-card p {
    font-size: 0.85rem; color: var(--text-light);
    line-height: 1.6;
}
.contact-card a {
    color: var(--primary); text-decoration: none;
    font-weight: 500; cursor: pointer;
}
.contact-card a:hover { text-decoration: underline; }

.contact-map {
    border-radius: 20px; overflow: hidden;
    box-shadow: var(--shadow-lg); height: 400px;
    background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.contact-map img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.6;
}
.contact-map-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
}
.contact-map-overlay i {
    font-size: 3rem; color: var(--primary);
}
.contact-map-overlay p {
    color: var(--text-light); font-size: 1rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}
.about-story-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-story-image {
    position: relative;
}
.about-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}
.about-story-image img {
    width: 100%; border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-story:hover .about-story-image img {
    transform: scale(1.03);
}
.about-story-image .experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 16px; padding: 24px 32px;
    text-align: center; box-shadow: var(--shadow-red);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-story:hover .experience-badge {
    transform: translateY(-4px);
}
.experience-badge .num {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 700; line-height: 1;
    display: block;
}
.experience-badge .label {
    font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 1.5px; opacity: 0.9;
}
.about-story-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 600; color: var(--dark);
    margin-bottom: 20px; line-height: 1.2;
}
.about-story-content > p {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 20px;
}
.about-values {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 32px;
}
.about-value-item {
    display: flex; align-items: center; gap: 12px;
}
.about-value-item i {
    color: var(--primary); font-size: 0.8rem;
}
.about-value-item span {
    font-size: 0.9rem; font-weight: 500; color: var(--dark);
}

.about-mission {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}
.mission-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 48px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}
.mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.mission-card:hover {
    border-color: rgba(227,30,36,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.mission-card:hover::before {
    opacity: 1;
}
.mission-card .icon-wrap {
    width: 56px; height: 56px;
    background: rgba(227,30,36,0.08);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.3rem;
    margin-bottom: 24px;
}
.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 600;
    color: var(--dark); margin-bottom: 14px;
}
.mission-card p {
    font-size: 0.95rem; color: var(--text-light);
    line-height: 1.7;
}

.about-timeline {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
}
.timeline-list {
    display: flex; flex-direction: column; gap: 0;
    max-width: 800px; margin: 0 auto;
}
.timeline-item {
    display: grid; grid-template-columns: 140px 1fr;
    gap: 40px; padding: 40px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}
.timeline-item:hover {
    background: rgba(227,30,36,0.02);
    border-radius: 12px;
    padding: 40px 24px;
    margin: 0 -24px;
}
.timeline-item::before {
    content: ''; position: absolute;
    left: 158px; top: 40px; bottom: -20px;
    width: 2px; background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-item::after {
    content: ''; position: absolute;
    left: 152px; top: 44px;
    width: 16px; height: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    border: 4px solid var(--bg-alt);
    box-shadow: 0 0 0 4px rgba(227,30,36,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-item:hover::after {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(227,30,36,0.1);
}
.timeline-year {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700;
    color: var(--primary); text-align: right;
}
.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    color: var(--dark); margin-bottom: 6px;
}
.timeline-content p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.6;
}

.about-certifications {
    background: var(--bg);
    padding: 100px 0;
    position: relative;
}
.cert-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cert-card {
    background: var(--white);
    border-radius: 16px; padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.cert-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227,30,36,0.15);
}
.cert-card:hover::before {
    transform: scaleX(1);
}
.cert-card i {
    font-size: 2.5rem; color: var(--primary);
    margin-bottom: 16px;
}
.cert-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 8px;
}
.cert-card p {
    font-size: 0.8rem; color: var(--text-lighter);
}

.about-leaders {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
}
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.leader-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.leader-card:hover {
    border-color: rgba(227,30,36,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.leader-image { height: 320px; overflow: hidden; }
.leader-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.leader-card:hover .leader-image img { transform: scale(1.05); }
.leader-info { padding: 28px; }
.leader-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 600;
    color: var(--dark); margin-bottom: 4px;
}
.leader-info span {
    font-size: 0.8rem; color: var(--primary);
    text-transform: uppercase; letter-spacing: 1px;
}
.leader-info p {
    font-size: 0.85rem; color: var(--text-lighter);
    line-height: 1.6; margin-top: 12px;
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--bg-alt); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq-header { position: sticky; top: 120px; }
.faq-header .section-title { text-align: left; margin-bottom: 12px; }
.faq-intro { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.faq-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.faq-item:hover { border-color: rgba(227,30,36,0.1); }
.faq-item:hover::before { opacity: 1; }
.faq-item.active { border-color: rgba(227,30,36,0.2); box-shadow: var(--shadow); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 28px; cursor: pointer;
    gap: 16px;
}
.faq-question h4 {
    font-family: var(--font-body); font-size: 0.95rem;
    font-weight: 600; color: var(--dark); line-height: 1.4;
}
.faq-toggle {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 0.8rem;
    transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   FOOTER BANNER
   ============================================= */
.footer-banner {
    position: relative;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}
.footer-banner-content {
    position: relative; z-index: 2; text-align: center;
}
.footer-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600; color: var(--dark);
    margin-bottom: 32px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 0;
    position: relative;
}

.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px; padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 20px; }
.footer-logo .logo-box { background: var(--primary); width: 40px; height: 40px; font-size: 1.3rem; }
.footer-logo img { height: 50px; width: auto; display: block; }
.footer-logo .logo-main { color: var(--dark); font-size: 1.3rem; }
.footer-logo .logo-sub { color: var(--text-lighter); font-size: 0.55rem; }
.footer-brand p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px; height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.85rem;
    text-decoration: none; transition: var(--transition); cursor: pointer;
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-3px); }
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 24px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    text-decoration: none; font-size: 0.85rem;
    color: var(--text-lighter); transition: var(--transition); cursor: pointer;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 24px;
}
.footer-newsletter p {
    font-size: 0.85rem; color: var(--text-lighter);
    margin-bottom: 8px;
}
.footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-lighter); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    text-decoration: none; font-size: 0.8rem;
    color: var(--text-lighter); transition: var(--transition); cursor: pointer;
}
.footer-legal a:hover { color: var(--primary); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 50px; height: 50px;
    background: var(--primary); color: var(--white);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer; z-index: 100;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition); box-shadow: var(--shadow-red);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* =============================================
   TOAST
   ============================================= */
.toast {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.toast.show { opacity: 1; visibility: visible; }
.toast-content {
    background: var(--white); color: var(--dark);
    border: 1px solid var(--border);
    padding: 14px 28px; border-radius: 50px;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; box-shadow: var(--shadow-lg);
}
.toast-content i { color: var(--primary); }

/* =============================================
   SERVICES PROFESSIONAL (Homepage)
   ============================================= */
.services-pro {
    background: var(--bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.services-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.service-pro-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}
.service-pro-img {
    height: 180px;
    overflow: hidden;
}
.service-pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-pro-card:hover .service-pro-img img {
    transform: scale(1.05);
}
.service-pro-body {
    padding: 32px;
}
.service-pro-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
    z-index: 0;
}
.service-pro-card:hover::before {
    height: 4px;
}
.service-pro-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227,30,36,0.2);
    box-shadow: var(--shadow-lg);
}
.service-pro-icon {
    width: 56px; height: 56px;
    background: rgba(227,30,36,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.service-pro-card:hover .service-pro-icon {
    background: var(--primary);
    color: var(--white);
}
.service-pro-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.service-pro-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.service-pro-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    cursor: pointer;
}
.service-pro-link i { font-size: 0.75rem; transition: transform 0.3s ease; }
.service-pro-link:hover { color: var(--primary-light); }
.service-pro-link:hover i { transform: translateX(4px); }

/* =============================================
   VIDEO SHOWCASE
   ============================================= */
.video-showcase {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg-alt);
}
.video-showcase-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.video-showcase-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.video-showcase-media video,
.video-showcase-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.video-showcase-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}
.video-showcase-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.video-showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.video-showcase-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.video-showcase-stat .num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}
.video-showcase-stat .label {
    font-size: 0.7rem;
    color: var(--text-lighter);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
}
.video-play-btn {
    width: 80px; height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 15px rgba(227,30,36,0.15);
}
.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

/* =============================================
   HOME CONTACT SECTION
   ============================================= */
.home-contact {
    background: var(--bg);
    padding: 120px 0;
    position: relative;
}
.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.home-contact-info .section-title {
    text-align: left;
    margin-bottom: 12px;
}
.home-contact-info > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}
.home-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.home-contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.home-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227,30,36,0.1);
}
.home-contact-card-icon {
    width: 44px; height: 44px;
    background: rgba(227,30,36,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
}
.home-contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.home-contact-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}
.home-contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
}
.home-contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.home-contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.home-contact-form-wrap > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .section-padding { padding: 80px 0; }
    .stats-card { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-featured { grid-column: span 2; grid-template-columns: 1fr 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-process-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { grid-template-columns: 1fr; gap: 40px; }
    .cta-image { display: none; }
    .cta-content { text-align: center; }
    .cta-content p { margin-left: auto; margin-right: auto; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { max-width: 600px; margin: 0 auto; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card.large { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid, .contact-page-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-header { position: static; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .mission-grid { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 80px 1fr; gap: 24px; }
    .timeline-item::before { left: 98px; }
    .timeline-item::after { left: 92px; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .leaders-grid { grid-template-columns: repeat(2, 1fr); }
    .services-pro-grid { grid-template-columns: repeat(2, 1fr); }
    .video-showcase-container { grid-template-columns: 1fr; }
    .video-showcase-stats { grid-template-columns: repeat(3, 1fr); }
    .home-contact-grid { grid-template-columns: 1fr; }
    .cofounder-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { min-height: 600px; }
    .stats-card { grid-template-columns: 1fr; margin-top: -40px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .services-grid { grid-template-columns: 1fr; }
    .service-featured { grid-column: span 1; grid-template-columns: 1fr; min-height: auto; }
    .service-featured .service-image { height: 240px; }
    .service-featured .service-body { padding: 28px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-process-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card.large { grid-column: span 1; }
    .project-image { height: 260px; }
    .project-card.large .project-image { height: 260px; }
    .why-cards { grid-template-columns: 1fr; }
    .why-float-card { display: none; }
    .contact-buttons { flex-direction: column; }
    .contact-form-wrap { padding: 28px; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-box { padding: 32px; }
    .cta-content h2 { font-size: 1.6rem; }
    .cta-content p { font-size: 0.95rem; }
    .video-showcase { padding: 80px 0; }
    .video-showcase-text { text-align: center; }
    .video-showcase-text .btn { margin: 0 auto; }
    .video-showcase-media { margin: 0 auto; max-width: 500px; }
    .cofounder { padding: 80px 0; }
    .cofounder-image { max-height: 300px; }
    .cofounder-content h2 { font-size: 1.6rem; }
    .services-pro { padding: 80px 0; }
    .service-pro-body { padding: 24px; }
    .home-contact { padding: 80px 0; }
    .footer-banner { padding: 80px 0; }
    .page-header h1 { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .stats-bar { margin-top: -40px; }
    .about-story { padding: 80px 0; }
    .about-mission { padding: 80px 0; }
    .about-timeline { padding: 80px 0; }
    .about-certifications { padding: 80px 0; }
    .about-leaders { padding: 80px 0; }
    .service-process { padding: 80px 0; }
    .contact { padding-top: 40px; }
    .contact-page-grid { gap: 40px; }
    .contact-map { height: 280px; }
    .projects { padding: 80px 0; }
    .testimonials { padding: 80px 0; }
    .faq { padding: 80px 0; }
    .section-title { font-size: 1.8rem; }
    .btn-lg { padding: 14px 28px; }
    .about-story-grid { gap: 60px; }
    .about-story-image .experience-badge { right: 10px; bottom: -10px; padding: 16px 24px; }
    .experience-badge .num { font-size: 2rem; }
    .about-values { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .leaders-grid { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 60px 1fr; gap: 20px; }
    .timeline-item::before { left: 78px; }
    .timeline-item::after { left: 72px; }
    .services-pro-grid { grid-template-columns: 1fr; }
    .service-pro-img { height: 200px; }
    .video-showcase-container { grid-template-columns: 1fr; }
    .video-showcase-stats { grid-template-columns: 1fr; }
    .video-play-btn { width: 70px; height: 70px; font-size: 1.3rem; }
    .home-contact-grid { grid-template-columns: 1fr; }
    .home-contact-cards { grid-template-columns: 1fr; }
    .home-contact-form-wrap { padding: 28px; }
    .cofounder-grid { grid-template-columns: 1fr; }
    .cofounder-image { max-height: 350px; }
    .cofounder-image img { min-height: auto; }
    .cofounder-quote { font-size: 1.1rem; }
}

/* Animation visibility fix */
.service-card, .project-card, .testimonial-card, .why-card, .stat-item, .faq-item, .cta-box, .contact-form-wrap, .contact-info, .service-detail-card, .service-process-step, .mission-card, .cert-card, .leader-card, .timeline-item, .contact-card {
    opacity: 1 !important;
    will-change: transform, opacity;
}


.no-anim {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}



/* ── Mobile: force all animated elements fully visible ──────────────────────
   Prevents GSAP ScrollTrigger from collapsing sections (stats-bar, about grids
   etc.) on mobile due to height miscalculation with overflow:hidden + negative
   margins. JS also returns early on mobile — this CSS is the belt-and-braces. */
@media (max-width: 768px) {
    .hero-title, .hero-subtitle, .hero-buttons, .scroll-indicator,
    .section-header, .section-label, .section-title, .section-subtitle,
    .stat-item, .stats-bar, .stats-card,
    .service-card, .project-card, .testimonial-card, .why-card,
    .faq-item, .cta-box, .contact-form-wrap, .contact-info,
    .cert-card, .timeline-item,
    .about-story-image, .about-story-content,
    .home-contact-info, .home-contact-card, .home-contact-form-wrap,
    .page-header-content, .footer-banner-content {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}