/* ════════════════════════════════════════════════════════════
   REALDATA INTERNATIONAL LTD — Global Stylesheet
   Matched to realdataintl.com: Battambang headings, Poppins body
   Colors: #051441 dark navy · #275b91 blue · #65bb0e lime green
            #144c74 nav · #c93538 red CTA · #d4e8f7 light blue
   ════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@400;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --navy:        #051441;
    --navy-mid:    #144c74;
    --blue:        #275b91;
    --blue-light:  #1a6fb5;
    --green:       #65bb0e;
    --green-dark:  #509a0b;
    --brown:       #c93538;
    --brown-light: #e04547;
    --pale-blue:   #d4e8f7;
    --pale-blue-2: #eef5fc;
    --gray-50:     #f9fafb;
    --gray-100:    #f3f4f6;
    --gray-200:    #e5e7eb;
    --gray-300:    #d1d5db;
    --gray-500:    #6b7280;
    --gray-600:    #4b5563;
    --white:       #ffffff;
    --text:        #333333;
    --text-light:  #555555;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:   0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg:   0 10px 40px rgba(0,0,0,0.13);
    --radius:      10px;
    --radius-lg:   18px;
    --radius-full: 50px;
    --font:        'Poppins', sans-serif;
    --font-display:'Battambang', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ═══ HEADER ═══ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s;
    /* No backdrop-filter — it creates a stacking context that traps the mobile menu */
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-content {
    display: flex; align-items: center; justify-content: space-between; height: 80px;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo img { height: 50px; width: auto; display: block; }
/* fallback text logo */
.logo-realdata { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; color: var(--blue); }
.logo-international { font-size: 1.55rem; font-weight: 400; color: var(--navy-mid); margin-left: 4px; }

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-link {
    font-family: var(--font-display); font-size: 1rem; font-weight: 500;
    color: var(--navy-mid); position: relative; padding: 4px 0;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 2px; background: var(--green); transition: width 0.3s;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--navy); font-weight: 700; }

/* CTA Buttons */
.cta-button {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; border-radius: var(--radius-full);
    font-family: var(--font); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
    cursor: pointer; border: none;
}
.cta-button.brown { background: var(--brown); color: var(--white); }
.cta-button.brown:hover { background: var(--brown-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,53,56,0.35); }
.cta-button.light-blue { background: var(--pale-blue); color: var(--navy); }
.cta-button.light-blue:hover { background: #bdd8f0; transform: translateY(-2px); }
.cta-button.green { background: var(--green); color: var(--white); }
.cta-button.green:hover { background: var(--green-dark); transform: translateY(-2px); }
.cta-button.white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-md); }
.cta-button.white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 9001; position: relative; }
.hamburger span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed; top: 80px; left: 0; right: 0; height: calc(100vh - 80px);
    background: var(--navy);   /* solid navy — always visible regardless of what's behind */
    z-index: 8999;
    flex-direction: column; padding: 32px 28px; overflow-y: auto;
    border-top: 3px solid var(--brown);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-link {
    padding: 18px 0; font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 500; color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none; display: block;
}
.mobile-menu a:hover, .mobile-link:hover { color: var(--white); padding-left: 6px; transition: all 0.2s; }

/* ═══ HERO SLIDER ═══ */
.hero-slider {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    overflow: hidden; background: var(--white);
}
.slide {
    position: absolute; inset: 0; display: flex; align-items: center;
    padding-top: 80px; opacity: 0; transition: opacity 1s ease-in-out; pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-background {
    position: absolute; inset: 0; background-size: cover;
    background-position: center; background-repeat: no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.86); }
.slide .container { position: relative; z-index: 2; }
.hero-content {
    text-align: left; max-width: 860px;
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
}
.slide.active .hero-content { opacity: 1; transform: translateY(0); }

/* Hero typography — matched to realdataintl.com */
.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 700; line-height: 1.05; margin-bottom: 20px;
}
.hero-heading .line-dark { display: block; color: var(--navy); }
.hero-heading .line-green { display: block; color: var(--green); }
/* Legacy support */
.hero-heading .navy { display: block; color: var(--navy); }
.hero-heading .green { display: block; color: var(--green); }

.hero-subtext {
    font-family: var(--font); font-size: 1.05rem; color: var(--blue);
    font-weight: 500; line-height: 1.8; margin-bottom: 36px; max-width: 580px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.slider-dot {
    width: 11px; height: 11px; border-radius: 50%;
    border: 2px solid var(--navy-mid); background: transparent; cursor: pointer;
    transition: 0.3s; padding: 0;
}
.slider-dot.active { background: var(--green); border-color: var(--green); transform: scale(1.25); }
.slider-dot:hover { border-color: var(--green); }
.slider-arrow {
    position: absolute; top: 50%; z-index: 10; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.9); border: 1px solid var(--gray-200);
    color: var(--navy); font-size: 1.1rem; cursor: pointer; transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ═══ TRUST BAR ═══ */
.trust-bar { padding: 44px 0; background: var(--gray-50); text-align: center; border-bottom: 1px solid var(--gray-200); }
.trust-heading {
    font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--blue);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.trust-description { font-size: 0.95rem; color: var(--gray-500); }

/* ═══ SHARED SECTION ═══ */
.section { padding: 80px 0; }
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; color: var(--blue); line-height: 1.2; margin-bottom: 16px;
}
.section-title .highlight { color: var(--green); }
.section-label {
    display: inline-block; font-family: var(--font); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-desc { font-size: 1rem; color: var(--text-light); line-height: 1.8; max-width: 640px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--blue); margin-bottom: 12px;
}
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ═══ WHY CHOOSE US / PILLARS ═══ */
.why-choose-us, .pillars-section { padding: 80px 0; }
.why-choose-us .section-title, .pillars-section .section-title { text-align: center; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.pillar-card {
    padding: 32px 28px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); transition: all 0.3s; text-align: center;
    border-top: 4px solid transparent;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--green); }
.pillar-icon {
    width: 64px; height: 64px; margin: 0 auto 16px; background: var(--pale-blue-2);
    border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.pillar-card:hover .pillar-icon { background: rgba(101,187,14,0.1); }
.pillar-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar-description, .pillar-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ═══ PRODUCTS ═══ */
.our-products, .products-section { padding: 80px 0; background: var(--gray-50); }
.our-products .section-title, .products-section .section-title { text-align: center; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.product-card {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-header { height: 5px; background: var(--accent-color, var(--green)); }
.product-icon { font-size: 2rem; margin: 24px 24px 8px; }
.product-name {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--navy); padding: 0 24px;
}
.product-tagline {
    font-size: 0.85rem; font-weight: 600; color: var(--accent-color, var(--green));
    padding: 4px 24px 0;
}
.product-description { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; padding: 10px 24px 0; }
.product-features { padding: 12px 24px; flex: 1; }
.product-features li {
    font-size: 0.88rem; color: var(--text-light); padding: 4px 0;
    display: flex; align-items: center; gap: 6px;
}
.product-pricing {
    display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 24px;
    border-top: 1px solid var(--gray-100);
}
.pricing-tag {
    padding: 5px 14px; background: var(--gray-50); border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.pricing-tag.featured { background: var(--green); color: var(--white); }
.product-link {
    display: block; padding: 16px 24px; font-size: 0.9rem; font-weight: 600;
    color: var(--blue); transition: all 0.3s;
}
.product-link:hover { color: var(--green); padding-left: 28px; }

/* Product detail sections */
.product-section { padding: 80px 0; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.product-grid-reverse .product-info { order: 1; }
.product-grid-reverse .product-image-wrapper { order: 2; }
.product-section .product-icon { font-size: 2.5rem; margin: 0 0 12px; padding: 0; }
.product-section .product-name {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
    color: var(--navy); padding: 0; margin-bottom: 4px;
}
.product-section .product-tagline { padding: 0; font-size: 1.05rem; margin-bottom: 16px; }
.product-section .product-description { padding: 0; margin-bottom: 20px; }
.product-section .product-features {
    padding: 0; margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.product-section .product-features h3 {
    grid-column: 1 / -1; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.product-section .product-pricing { padding: 0; border: none; margin-bottom: 20px; }
.pricing-chip {
    padding: 6px 16px; background: var(--gray-100); border-radius: var(--radius-full);
    font-size: 0.85rem; font-weight: 600; color: var(--navy); display: inline-block;
}
.pricing-chip.featured { background: var(--green); color: var(--white); }
.compliance-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.compliance-badge {
    padding: 4px 12px; background: var(--pale-blue-2); border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 600; color: var(--navy);
}
.product-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.product-image-wrapper img { width: 100%; height: 380px; object-fit: cover; }
.product-container { max-width: 1100px; margin: 0 auto; }
.image-accent { display: none; }
.product-compliance { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; padding: 8px 0; }
.product-compliance strong { color: var(--navy); }

/* ═══ SERVICES ═══ */
.services-preview, .services-section { padding: 80px 0; }
.services-preview .section-title, .services-section .section-title { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.service-card {
    padding: 32px 26px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--green); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 14px; background: var(--pale-blue-2);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.service-card:hover .service-icon { background: rgba(101,187,14,0.1); }
.service-name, .service-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.service-description, .service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* Process Steps */
.process-section { padding: 80px 0; background: var(--gray-50); }
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 44px; position: relative;
}
.process-grid::before {
    content: ''; position: absolute; top: 44px; left: 12%; right: 12%;
    height: 2px; background: var(--gray-200); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
    width: 56px; height: 56px; border-radius: 50%; background: var(--blue);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    margin: 0 auto 16px; box-shadow: 0 4px 12px rgba(39,91,145,0.3);
}
.process-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.process-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ═══ TESTIMONIALS ═══ */
.testimonials { padding: 80px 0; background: var(--gray-50); }
.testimonials .section-title { text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px;
    box-shadow: var(--shadow-sm); transition: all 0.3s; border-left: 4px solid var(--green);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-family: var(--font-display); font-size: 1rem; color: var(--blue); font-weight: 700; }
.testimonial-category { font-size: 0.8rem; color: var(--gray-500); margin-top: 2px; }

/* ═══ METRICS ═══ */
.metrics-bar { background: var(--navy); padding: 64px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.metric-label { font-family: var(--font-display); font-size: 1rem; color: rgba(255,255,255,0.75); font-weight: 500; margin-bottom: 12px; }
.metric-bar {
    width: 100%; max-width: 160px; height: 6px; background: rgba(255,255,255,0.12);
    border-radius: 3px; margin: 0 auto 12px; overflow: hidden;
}
.metric-fill { height: 100%; border-radius: 3px; background: var(--green); transition: width 1.5s ease; }
.metric-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--white); }

/* ═══ CTA BAND ═══ */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2a5e 100%);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; top: -60%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%; background: rgba(101,187,14,0.07);
}
.cta-content { position: relative; z-index: 1; }
.cta-heading {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.cta-subtext { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-band h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative;
}
.cta-band p { color: rgba(255,255,255,0.65); position: relative; margin-bottom: 30px; font-size: 1.1rem; }

/* ═══ PAGE BANNER ═══ */
.page-banner {
    padding: 155px 0 72px; background: var(--navy); text-align: center;
    position: relative; overflow: hidden;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,20,65,0.82) 0%, rgba(39,91,145,0.70) 100%);
    z-index: 0;
}
.page-banner .container, .page-banner .banner-content { position: relative; z-index: 1; }
.page-banner::before {
    content: ''; position: absolute; top: -80px; right: -80px; z-index: 1;
    width: 420px; height: 420px; border-radius: 50%; background: rgba(101,187,14,0.08);
}
.page-banner h1, .banner-title {
    font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative;
}
.page-banner p, .banner-subtitle {
    font-size: 1.05rem; color: rgba(255,255,255,0.6); position: relative;
    max-width: 600px; margin: 0 auto;
}
.banner-content { position: relative; }
.breadcrumb {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 18px; font-size: 0.85rem; position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,0.28); }

/* ═══ ABOUT ═══ */
.about-section, .about-grid-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.about-badge {
    position: absolute; bottom: 20px; left: 20px; background: var(--green);
    color: var(--white); padding: 12px 26px; border-radius: var(--radius);
    font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; box-shadow: var(--shadow-md);
}
.about-content .section-desc { margin-bottom: 16px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mv-card {
    padding: 20px; background: var(--gray-50); border-radius: var(--radius);
    border-left: 4px solid var(--green); transition: 0.3s;
}
.mv-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mv-icon { font-size: 1.4rem; margin-bottom: 6px; }
.mv-label { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.mv-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* Culture */
.culture-section { padding: 80px 0; background: var(--gray-50); }
.culture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.culture-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; }
.culture-image { width: 100%; min-height: 300px; object-fit: cover; border-radius: var(--radius-lg); }
.culture-cards { display: flex; flex-direction: column; gap: 16px; }
.culture-card {
    padding: 24px; background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--gray-200); transition: 0.3s;
}
.culture-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.culture-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.culture-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* Locations */
.locations-section { padding: 80px 0; }
.locations-section .section-title { text-align: center; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.location-card {
    padding: 32px 28px; background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); transition: 0.3s; text-align: center;
}
.location-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); transform: translateY(-4px); }
.location-flag { font-size: 2.2rem; margin-bottom: 12px; }
.location-name, .location-title, .location-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--blue); margin-bottom: 8px; }
.location-address { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.location-phone { font-size: 0.88rem; color: var(--green); font-weight: 600; margin-top: 6px; }
.location-phone a { color: var(--green); }

/* ═══ CONTACT ═══ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-items { margin-top: 20px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon {
    width: 52px; height: 52px; background: var(--pale-blue-2); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-details h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.contact-details p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.contact-details a { color: var(--navy-mid); }
.contact-details a:hover { color: var(--green); }
.contact-description { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-top: 12px; }
.page-banner-content { position: relative; }
.contact-form-card {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 40px;
}
.contact-form-card h3 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
    color: var(--blue); margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 13px 16px; background: var(--white);
    border: 1.5px solid var(--gray-300); border-radius: var(--radius);
    font-size: 0.95rem; color: var(--text); outline: none; transition: 0.3s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--green); box-shadow: 0 0 0 3px rgba(101,187,14,0.12);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Social */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
    width: 42px; height: 42px; border-radius: 12px; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; color: var(--gray-600); font-weight: 700; transition: 0.3s;
}
.social-links a:hover { background: var(--green); color: var(--white); }

/* ═══ FOOTER ═══ */
.footer { background: var(--navy); padding: 70px 0 0; color: rgba(255,255,255,0.65); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 12px; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-logo .logo-realdata { font-family: var(--font-display); color: var(--green); font-size: 1.4rem; font-weight: 700; }
.footer-logo .logo-international { font-family: var(--font-display); color: var(--white); font-size: 1.4rem; }
.footer-tagline { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--green); margin-top: 4px; }
.footer-description { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 8px; max-width: 300px; }
.footer-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 18px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-links a:hover { color: var(--green); }
.footer-contact p { font-size: 0.88rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--green); }
.footer-contact strong { color: rgba(255,255,255,0.75); }
.footer .social-links a { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.footer .social-links a:hover { background: var(--green); color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a, .footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover, .footer-bottom a:hover { color: var(--green); }

/* ═══ MISC HELPERS ═══ */
.footer-column {}
.stat-item {}
.metric-item {}
.banner-content { position: relative; }
.hero-content { position: relative; z-index: 1; }

/* ═══ PRODUCT PAGE — PILLS & BADGES ═══ */
.product-badge {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 14px;
}
.product-nav-pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 32px;
}
.product-pill {
    font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
    padding: 9px 22px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.12); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25); transition: 0.25s; position: relative; z-index: 2;
}
.product-pill:hover {
    background: var(--green); border-color: var(--green); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 4px 14px rgba(101,187,14,0.4);
}

/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */

/* Prevent horizontal scroll globally */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 1024px) {
    .about-grid, .contact-grid, .product-hero-grid, .culture-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid, .services-grid, .pillars-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .locations-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .section { padding: 72px 0; }
}

@media (max-width: 768px) {
    /* ─ Nav ─ */
    .nav-desktop { display: none; }
    .header-content > .cta-button { display: none; }
    .hamburger { display: flex; }

    /* ─ Sections ─ */
    .section { padding: 56px 0; }
    .container { padding: 0 20px; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }

    /* ─ Hero Slider (legacy) ─ */
    .hero-slider { min-height: 100vh; }
    .hero-content { padding: 20px 0; }
    .hero-heading { font-size: clamp(2.4rem, 8vw, 3.5rem); }

    /* ─ Grids → single column ─ */
    .products-grid, .services-grid, .pillars-grid,
    .testimonials-grid, .locations-grid { grid-template-columns: 1fr; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .product-hero-grid { grid-template-columns: 1fr; }
    .product-section .product-features { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }

    /* ─ Slider arrows ─ */
    .slider-arrow { width: 36px; height: 36px; font-size: 0.95rem; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    .slider-dots { bottom: 20px; }

    /* ─ Page banners ─ */
    .page-banner { padding: 100px 0 56px; }
    .page-banner h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

    /* ─ About / product images ─ */
    .about-image-wrapper { min-height: 260px; }
    .about-image { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-lg); }

    /* ─ CTA band ─ */
    .cta-heading { font-size: clamp(1.5rem, 6vw, 2rem); }
    .cta-band { padding: 56px 0; }

    /* ─ Contact form ─ */
    .contact-grid { grid-template-columns: 1fr; }

    /* ─ Footer ─ */
    .footer { padding: 56px 0 28px; }
    .footer-grid { gap: 32px; }
}
