/* ============================================================
   SMS INFRATECH - Main Stylesheet
   Font: Poppins | Palette: Deep Navy + White + Gold Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Nunito:wght@300;400;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --navy: #1a2b4a;
    --navy-deep: #0d1b33;
    --navy-mid: #243557;
    --navy-light: #2e4470;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-pale: #f5e8c0;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #eef1f6;
    --mid-gray: #b0b8c9;
    --text-dark: #1a2b4a;
    --text-body: #3a4a62;
    --text-muted: #7a8a9e;
    --cherish-red: #c0392b;
    --border: rgba(26, 43, 74, 0.12);
    --shadow-sm: 0 2px 12px rgba(26, 43, 74, 0.08);
    --shadow-md: 0 8px 32px rgba(26, 43, 74, 0.14);
    --shadow-lg: 0 20px 60px rgba(26, 43, 74, 0.18);
    --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.22);
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Nunito', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 3px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 0;
    font-size: 13px;
    font-family: var(--font-secondary);
}

.topbar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topbar a {
    color: rgba(255, 255, 255, 0.75);
}

.topbar a:hover {
    color: var(--gold-light);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item svg {
    flex-shrink: 0;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 24px rgba(26, 43, 74, 0.10);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 32px rgba(26, 43, 74, 0.16);
}

.navbar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wrap img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: var(--radius);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white) !important;
    padding: 11px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    box-shadow: var(--shadow-md);
    transition: var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    color: var(--navy) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px 20px;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    color: var(--navy);
    border-radius: var(--radius-md);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--light-gray);
    color: var(--navy-deep);
}

.mobile-nav.open {
    display: flex;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=85&auto=format') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(13, 27, 51, 0.90) 0%, rgba(26, 43, 74, 0.70) 60%, rgba(13, 27, 51, 0.40) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.45);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-size: clamp(38px, 6vw, 78px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title span {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.78);
    max-width: 560px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    animation: fadeUp 0.8s 0.6s ease both;
}

.hero-stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--gold-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    font-weight: 400;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1s 1s ease both;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(0.3);
        opacity: 0.4;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-deep);
    font-weight: 700;
    font-size: 15px;
    padding: 15px 32px;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    font-family: var(--font-primary);
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-lg {
    padding: 120px 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cherish-red);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background:#c94c4c;
    border-radius: 1px;
}

.section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--gold);
}

.section-lead {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-tag {
    justify-content: center;
}

.section-header-center .section-tag::before {
    display: none;
}

.section-header-center .section-tag::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: #c94c4c;
    border-radius: 1px;
}

.section-header-center .section-lead {
    margin: 0 auto;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.gold-divider {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 20px 0;
}

.gold-divider.center {
    margin: 20px auto;
}

/* ============================================================
   ABOUT STRIP (Homepage)
   ============================================================ */
.about-strip {
    background: var(--navy-deep);
    padding: 48px 0;
}

.about-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.strip-item {
    background: var(--navy-deep);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.strip-item:hover {
    background: var(--navy-mid);
}

.strip-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-light);
}

.strip-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.strip-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ============================================================
   SERVICES / WHAT WE DO
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-num {
    font-size: 52px;
    font-weight: 900;
    color: rgba(26, 43, 74, 0.05);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-secondary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold-light);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.service-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* ============================================================
   WHY CHOOSE US / VALUES
   ============================================================ */
.values-section {
    background: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.value-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:nth-child(1) {
    border-color: var(--gold);
}

.value-card:nth-child(2) {
    border-color: var(--navy);
}

.value-card:nth-child(3) {
    border-color: var(--gold-light);
}

.value-card:nth-child(4) {
    border-color: var(--navy-light);
}

.value-card:nth-child(5) {
    border-color: var(--gold);
}

.value-card:nth-child(6) {
    border-color: var(--navy);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
}

.value-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   PROJECTS / GALLERY
   ============================================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.07);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 51, 0.90) 0%, transparent 60%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.project-overlay span {
    font-size: 13px;
    color: var(--gold-light);
    font-weight: 500;
}

.project-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1580587771525-78b9dba3b914?w=1600&q=60') center/cover;
    opacity: 0.07;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(46, 68, 112, 0.5) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--navy-deep);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-lead {
    color: rgba(255, 255, 255, 0.60);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.quote-icon {
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    font-family: var(--font-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.50);
}

.star-row {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star-row svg {
    color: var(--gold);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.team-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: var(--light-gray);
}

.team-info {
    padding: 20px 16px;
}

.team-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0 28px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}

.footer-logo {
    height: 52px;
    width: auto;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    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.6);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-col ul a::before {
    content: '›';
    color: var(--gold);
    font-size: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.60);
    line-height: 1.6;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* ============================================================
   PAGE BANNER (Inner pages)
   ============================================================ */
.page-banner {
    background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1200&q=60') center/cover;
    opacity: 0.06;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.breadcrumb a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumb .current {
    color: var(--gold-light);
}

.page-banner h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
}

.page-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    margin-top: 14px;
    font-weight: 300;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-split.reverse {
    direction: rtl;
}

.about-split.reverse>* {
    direction: ltr;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    color: var(--navy-deep);
}

.badge-num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
}

.about-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================================
   TIMELINE (Company Page)
   ============================================================ */
.timeline {
    position: relative;
    padding: 48px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 48px;
}

.timeline-item:nth-child(even) .timeline-content-left {
    order: 3;
}

.timeline-item:nth-child(even) .timeline-content-right {
    order: 1;
    text-align: right;
}

.timeline-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: 4px solid var(--white);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: var(--navy-deep);
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.timeline-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.jobs-list {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.job-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.job-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.job-tag {
    background: var(--light-gray);
    color: var(--text-body);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.job-tag.type {
    background: rgba(26, 43, 74, 0.08);
    color: var(--navy);
}

.job-tag.exp {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
}

.job-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.ci-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-light);
}

.ci-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ci-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-deep);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.contact-form-wrap .sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 43, 74, 0.06);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* ============================================================
   MAP
   ============================================================ */
.map-section {
    background: var(--light-gray);
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: grayscale(20%);
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.mv-card {
    border-radius: var(--radius-lg);
    padding: 44px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: var(--navy-deep);
    color: var(--white);
}

.mv-card.vision {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-deep);
}

.mv-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
}

.mv-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    font-weight: 900;
    opacity: 0.05;
    line-height: 1;
    font-family: var(--font-secondary);
}

/* ============================================================
   ANIMATIONS / AOS-like
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-24px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(24px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .about-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-split.reverse {
        direction: ltr;
    }

    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        grid-template-columns: 48px 1fr;
    }

    .timeline-item:nth-child(even) .timeline-content-left,
    .timeline-item:nth-child(even) .timeline-content-right {
        order: unset;
        text-align: left;
    }

    .timeline-content-right {
        grid-column: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .job-card {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .topbar-left {
        display: none;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .about-strip-inner {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        height: 68px;
    }

    .logo-wrap img {
        height: 44px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}