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

:root {
    /* Color Palette from PDF Branding */
    --primary: #0a1628;           /* Deep Navy */
    --primary-mid: #0d2137;       /* Dark Blue */
    --primary-light: #1a3a5c;     /* Medium Navy */
    --cyan: #00b4d8;              /* Cyan/Teal accent */
    --cyan-light: #48cae4;        /* Light Cyan */
    --cyan-dark: #0096c7;
    --orange: #ff6b00;            /* Vibrant Orange */
    --orange-hover: #e65c00;
    --orange-light: #ff8534;
    --text-dark: #1a1a2e;
    --text-muted: #6b7b8d;
    --text-light: rgba(255, 255, 255, 0.8);
    --bg-light: #f0f4f8;
    --bg-white: #ffffff;
    --bg-section: #f7f9fc;
    --glass: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.25);

    /* Spacing */
    --section-padding: 100px 5%;
    --container-width: 1200px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.18);
    --shadow-cyan: 0 8px 30px rgba(0, 180, 216, 0.2);
    --shadow-orange: 0 8px 30px rgba(255, 107, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 180, 216, 0.1);
    padding: 12px 0;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cyan-light);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-orange);
    letter-spacing: 0.3px;
    display: inline-block;
    text-align: center;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--orange-hover), var(--orange));
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 107, 0, 0.35);
}

.cta-btn::after {
    display: none !important;
}

.cta-btn-outline {
    background: transparent;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    text-align: center;
}

.cta-btn-outline:hover {
    background: white;
    color: var(--primary) !important;
    border-color: white;
    transform: translateY(-3px);
}

.cta-btn-outline::after {
    display: none !important;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, rgba(10, 22, 40, 0.92), rgba(13, 33, 55, 0.85), rgba(0, 150, 199, 0.4)),
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,60 C360,120 1080,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(0, 180, 216, 0.15);
    border-radius: 50%;
    animation: pulse-ring 8s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cyan-light);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.08;
    margin-bottom: 20px;
    font-weight: 800;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.85;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.hero-flags {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-flags span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.flag-item img {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title .underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    margin: 0 auto;
    border-radius: 2px;
}

.section-title p {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   ABOUT PREVIEW
   =================================== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-preview-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-preview-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--cyan);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.service-icon-wrap.teal {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 180, 216, 0.05));
    color: var(--cyan);
}

.service-icon-wrap.orange {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 107, 0, 0.05));
    color: var(--orange);
}

.service-icon-wrap.pink {
    background: linear-gradient(135deg, rgba(213, 0, 98, 0.12), rgba(213, 0, 98, 0.05));
    color: #d50062;
}

.service-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   MISSION / VISION / VALUES (About Page)
   =================================== */
.mvv-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mvv-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.1;
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: var(--primary);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: white;
}

.mvv-icon.mission {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
}

.mvv-icon.vision {
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
}

.mvv-icon.values {
    background: linear-gradient(135deg, #d50062, #c40058);
}

.mvv-card h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.mvv-card h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   HOW WE WORK (Process Steps)
   =================================== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--cyan), var(--orange));
    transform: translateX(-50%);
    border-radius: 3px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    min-width: 50px;
}

.step-content h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===================================
   WHY CHOOSE US (Features)
   =================================== */
.why-us-section {
    background: linear-gradient(160deg, var(--primary), var(--primary-mid));
    color: white;
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23f7f9fc' d='M0,40 C360,80 1080,0 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top;
    background-size: cover;
}

.why-us-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-feature {
    text-align: center;
    padding: 20px;
}

.why-feature i {
    font-size: 2.2rem;
    color: var(--cyan-light);
    margin-bottom: 15px;
    display: block;
}

.why-feature h4 {
    color: var(--orange);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-feature p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

.why-center-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.why-center-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: white;
    padding: 70px 0;
    position: relative;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    font-size: 3.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   LOCATIONS
   =================================== */
.locations {
    background: var(--bg-section);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.location-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--cyan);
}

.location-card i {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-top: 3px;
}

.location-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 1.1rem;
}

.location-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    background: var(--bg-section);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-author h5 {
    font-size: 0.95rem;
    color: var(--primary);
}

.testimonial-author p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Featured Testimonial Cards (PDF Page 6 style) --- */
.testimonial-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.testimonial-featured {
    background: linear-gradient(160deg, var(--orange), #e65c00);
    border-radius: 24px;
    padding: 40px 35px 35px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.testimonial-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.25);
}

.testimonial-featured::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
}

.testimonial-featured-avatar {
    text-align: center;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-featured-body {
    position: relative;
    z-index: 1;
}

.testimonial-featured-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.testimonial-role {
    display: block;
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.85;
    margin-bottom: 18px;
    text-align: center;
}

.testimonial-featured-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.92;
    text-align: center;
    margin-bottom: 15px;
}

.testimonial-featured .testimonial-stars {
    text-align: center;
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.quote-icon {
    text-align: left;
    margin-bottom: 10px;
}

.quote-icon i {
    font-size: 1.6rem;
    opacity: 0.35;
}

.quote-icon-end {
    text-align: right;
    margin-top: 5px;
}

.quote-icon-end i {
    font-size: 1.6rem;
    opacity: 0.35;
}

@media (max-width: 600px) {
    .testimonial-featured-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--cyan-dark) 100%);
    color: white;
    text-align: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
}

.cta-banner p {
    margin-bottom: 35px;
    opacity: 0.8;
    font-size: 1.1rem;
    position: relative;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cyan);
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.footer-col ul li a:hover {
    color: var(--cyan-light);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--cyan);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 0.85rem;
}

/* ===================================
   PAGE HEADER (Inner Pages)
   =================================== */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(160deg, var(--primary), var(--primary-mid), var(--cyan-dark));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 1080,0 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.page-header p {
    opacity: 0.7;
    font-size: 1.1rem;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8edf2;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-section);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
    background: white;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    width: 100%;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 107, 0, 0.35);
}

/* Contact Hub Card */
.hub-card {
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 16px;
    background: var(--bg-section);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.hub-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-sm);
}

.hub-card h4 {
    color: var(--cyan);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.hub-card h4 i {
    margin-right: 8px;
}

.hub-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===================================
   SERVICE DETAIL CARDS (Services Page)
   =================================== */
.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.check-list li i {
    color: var(--cyan);
    margin-top: 4px;
}

/* Specialized Service Mini Cards */
.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.special-card {
    background: var(--bg-section);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.special-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.special-card h4 {
    color: var(--orange);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.special-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px 5%;
    }

    .about-preview {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-center-image {
        grid-column: 1 / -1;
        order: -1;
    }

    .why-center-image img {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        padding: 50px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .cta-btn,
    .hero-btns .cta-btn-outline {
        width: 100%;
    }

    .hero-flags {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .service-detail {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .special-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 60px 5%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .logo img {
        height: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
    }
}
