/* ===== CSS Variables ===== */
:root {
    --navy: #0a1e3d;
    --navy-dark: #06142a;
    --navy-light: #132d54;
    --gold: #c9a84c;
    --gold-light: #e0c36a;
    --white: #ffffff;
    --bg-light: #f7f9fc;
    --text-dark: #1a1a2e;
    --text-muted: #6b7b8d;
    --border-light: #e2e8f0;
    --shadow-soft: 0 4px 30px rgba(10, 30, 61, 0.08);
    --shadow-card: 0 8px 40px rgba(10, 30, 61, 0.10);
    --shadow-elevated: 0 20px 60px rgba(10, 30, 61, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Base Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy);
}
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 100px 0; }

/* ===== Navbar ===== */
#mainNav {
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: none;
}
#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(10, 30, 61, 0.08);
    padding: 10px 0;
}
.nav-logo {
    height: 48px;
    transition: var(--transition);
}
#mainNav.scrolled .nav-logo { height: 40px; }
.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 8px 18px;
    font-size: 0.95rem;
    position: relative;
    letter-spacing: 0.3px;
}
#mainNav.scrolled .nav-link { color: var(--navy); }
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover { color: var(--gold-light); }
#mainNav.scrolled .nav-link:hover { color: var(--navy); }
.lang-switch { font-size: 0.9rem; }
.btn-cta-nav {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: none;
}
.btn-cta-nav:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4); }

/* Hamburger */
.navbar-toggler { border: none; padding: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}
#mainNav.scrolled .toggler-bar { background: var(--navy); }

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    padding: 8px;
}
.dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.9rem;
}
.dropdown-item:hover { background: var(--bg-light); }
.dropdown-item.active { background: var(--navy); color: var(--white); }

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 1s both; }
.btn-hero-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); color: var(--navy); }
.btn-hero-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
}
.btn-hero-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255, 255, 255, 0.1); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease 1.2s both;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
    margin: 12px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}
.hero-curve-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}
.hero-curve-bottom svg { width: 100%; height: auto; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Page Hero (Subpages) ===== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    overflow: hidden;
    text-align: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1524522173746-f628baad3644?w=1920&q=80') center/cover no-repeat;
    opacity: 0.1;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255, 255, 255, 0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { background: none; margin: 0; padding: 0; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255, 255, 255, 0.6); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }

/* ===== Stats Bar ===== */
.stats-bar {
    background: var(--white);
    padding: 50px 0;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--border-light);
}
.stat-item { padding: 10px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.stat-suffix {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}
.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ===== Section Headers ===== */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 16px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Why Section ===== */
.why-section { background: var(--bg-light); }
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-light);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); }
.why-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--gold);
}
.why-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

.badges-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
}
.badge-item i { color: var(--gold); font-size: 1.1rem; }

/* ===== Services Section ===== */
.services-section {
    background: var(--navy);
    position: relative;
}
.services-section .section-tag { color: var(--gold); }
.services-section .section-title { color: var(--white); }
.services-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }
.services-curve-top, .services-curve-bottom,
.milestones-curve-top, .values-curve-top, .values-curve-bottom,
.positions-curve-top, .positions-curve-bottom,
.cta-curve-top {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
}
.services-curve-top, .milestones-curve-top, .values-curve-top,
.positions-curve-top, .cta-curve-top { top: -1px; }
.services-curve-bottom, .values-curve-bottom, .positions-curve-bottom { bottom: -1px; }
.services-curve-top svg, .services-curve-bottom svg,
.milestones-curve-top svg, .values-curve-top svg, .values-curve-bottom svg,
.positions-curve-top svg, .positions-curve-bottom svg,
.cta-curve-top svg { width: 100%; height: auto; }

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    height: 100%;
    backdrop-filter: blur(10px);
}
.service-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-6px);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.service-card-title { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.service-card-desc { color: rgba(255, 255, 255, 0.6); font-size: 0.92rem; line-height: 1.7; }
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 16px;
}
.service-card-link:hover { color: var(--gold-light); gap: 12px; }

/* ===== Vision Mission ===== */
.vm-section { background: var(--bg-light); }
.vm-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
.vm-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.vm-card:hover { box-shadow: var(--shadow-card); }
.vm-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
}
.vm-card h3 { font-size: 1.4rem; margin: 0; }
.vm-card p { color: var(--text-muted); line-height: 1.8; }
.mission-list { list-style: none; padding: 0; margin: 0; }
.mission-list li {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    align-items: flex-start;
}
.mission-list li:last-child { border-bottom: none; }
.mission-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
    min-width: 28px;
}

/* ===== Milestones ===== */
.milestones-section {
    background: var(--navy);
    position: relative;
}
.milestones-section .section-tag { color: var(--gold); }
.milestones-section .section-title { color: var(--white); }
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(201, 168, 76, 0.3);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }
.timeline-dot {
    position: absolute;
    top: 8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--navy);
    z-index: 1;
}
.timeline-item.left .timeline-dot { right: -8px; }
.timeline-item.right .timeline-dot { left: -8px; }
.timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 24px;
    backdrop-filter: blur(10px);
}
.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.timeline-content h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ===== Testimonials ===== */
.testimonials-section { background: var(--bg-light); }
.testi-main-title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.testi-decorative {
    margin: 24px 0;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}
.testi-stats-mini .stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 4px; }
.testi-stats-mini p { color: var(--text-muted); font-size: 0.9rem; }
.testi-cards-wrapper { display: flex; flex-direction: column; gap: 20px; }
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-card); transform: translateX(-4px); }
.testi-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.testi-meta h5 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; margin: 0; color: var(--navy); }
.testi-meta span { font-size: 0.8rem; color: var(--text-muted); }
.testi-rating { margin-left: auto; color: var(--gold); font-size: 0.75rem; }
.testi-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--navy);
    padding: 100px 0 80px;
    position: relative;
}
.cta-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}
.cta-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 0 auto 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
}
.btn-cta-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); color: var(--navy); }
.btn-cta-outline {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    background: transparent;
}
.btn-cta-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255, 255, 255, 0.1); }

/* ===== Footer ===== */
.site-footer {
    background: var(--navy-dark);
    padding: 60px 0 30px;
    color: rgba(255, 255, 255, 0.65);
}
.footer-logo { height: 50px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    align-items: flex-start;
}
.footer-contact-list i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; }
.footer-divider { border-color: rgba(255, 255, 255, 0.1); margin: 30px 0 20px; }
.footer-bottom { text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.4); }

/* ===== Buttons ===== */
.btn-navy {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-card); }

/* ===== About Page ===== */
.about-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
}
.about-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    text-align: center;
}
.about-badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.about-badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

/* Values */
.values-section {
    background: var(--navy);
    position: relative;
}
.value-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.value-card:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--gold); transform: translateY(-4px); }
.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--gold);
}
.value-card h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* Team */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-img-wrapper { overflow: hidden; height: 280px; }
.team-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-img-wrapper img { transform: scale(1.05); }
.team-card h5 { padding: 20px 16px 4px; font-size: 1.05rem; margin: 0; }
.team-card span { display: block; color: var(--gold); font-size: 0.85rem; padding-bottom: 20px; }

/* ===== Services Page ===== */
.service-detail-row { margin-bottom: 30px; }
.service-detail-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.service-detail-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
}
.service-detail-icon-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}
.service-detail-content h3 { font-size: 1.5rem; margin-bottom: 16px; }
.service-detail-content p { color: var(--text-muted); line-height: 1.8; }
.service-features { list-style: none; padding: 0; margin: 20px 0 0; }
.service-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-features i { color: var(--gold); font-size: 1rem; }
.service-divider { border-color: var(--border-light); margin: 50px 0; }

/* ===== Career Page ===== */
.career-benefits { list-style: none; padding: 0; margin: 24px 0 0; }
.career-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
    font-weight: 500;
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.positions-section {
    background: var(--navy);
    position: relative;
}
.job-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.job-card:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--gold); }
.job-card-header { margin-bottom: 16px; }
.job-card h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.job-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.job-tag {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}
.job-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.7; }
.send-cv-box { padding: 40px; background: rgba(255, 255, 255, 0.04); border-radius: var(--radius); border: 1px dashed rgba(255, 255, 255, 0.2); }

/* ===== Contact Page ===== */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}
.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 4px; }
.form-floating .form-control {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.form-floating .form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10, 30, 61, 0.1);
}
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 40px;
}
.contact-info-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-item h6 { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; color: var(--gold); }
.contact-info-item p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .hero-section { text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-scroll-indicator { display: none; }
    .timeline-line { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left; padding-left: 50px; padding-right: 0; }
    .timeline-item .timeline-dot { left: 12px !important; right: auto !important; }
    .badges-row { gap: 16px; }
    .badge-item { font-size: 0.8rem; padding: 10px 16px; }
    .testi-main-title { text-align: center; }
    .testi-decorative { text-align: center; }
    .testi-stats-mini { text-align: center; margin-bottom: 32px; }
    .service-detail-img img { height: 280px; }
    .about-main-img { height: 340px; }
}
@media (max-width: 767px) {
    .stat-number { font-size: 2rem; }
    .contact-form-wrapper { padding: 28px; }
    .contact-info-card { padding: 28px; }
    .vm-card { padding: 28px; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    .badges-row { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 300px; }
}

/* ===== AOS overrides for anti-flicker ===== */
[data-aos] { will-change: transform, opacity; }
