/* ========================================
   AFAQ AL MALAZ - PREMIUM LUXURY STYLES
   Ultra-Premium Corporate Design
   Color Palette: Black, White, Gold, Subtle Brand Accents
======================================== */

/* ========================================
   ROOT VARIABLES & BASE SETUP
======================================== */
:root {
    /* Primary Colors */
    --color-primary: #0668aa;
    --color-primary-dark: #054d7f;
    --color-primary-light: #0881d4;
    --color-secondary: #a6ce3a;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-dark: #2c3e50;
    --color-text-light: #5a6c7d;
    --color-bg-light: #f8f9fa;
    --color-bg-lighter: #ffffff;
    --color-border: #e0e6ed;

    /* Aliases used by category/brand/product page-local styles */
    --color-gold: var(--color-primary);
    --color-gold-muted: var(--color-primary-light);

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #0668aa 0%, #0881d4 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(6, 104, 170, 0.9) 0%, rgba(6, 104, 170, 0.7) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 90px;
    --container-max-width: 1400px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    
    /* Shadows */
    --shadow-primary: 0 20px 60px rgba(6, 104, 170, 0.15);
    --shadow-medium: 0 10px 40px rgba(6, 104, 170, 0.1);
    --shadow-subtle: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ========================================
   GLOBAL RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family:  var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   TYPOGRAPHY SYSTEM
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family:  var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
}

h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.625rem); }
h4 { font-size: clamp(1.125rem, 1.8vw, 1.3rem); }

p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height:  1.7;
    color: var(--color-text-light);
}

.gold-text {
    color: var(--color-primary);
}

.light-text {
    color: var(--color-text-dark);
}

/* ========================================
   PREMIUM BUTTONS & CTA
======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border:  none;
    border-radius:  0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* transition: var(--transition-smooth); */
    z-index: 1;
}
.gold-cta.hero-btn{
    display: block;
}
.gold-cta {
    background:  var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
    opacity: 1;
}

.gold-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left:  -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary-dark);
    transition: var(--transition-smooth);
    z-index: -1;
}

.gold-cta:hover::before {
    left: 0;
}

.gold-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(6, 104, 170, 0.3);
    color: var(--color-white);
}

.get-big-img{
    width: 100%;
    height: auto;
}

.cta-icon {
    width: 20px;
    height: 20px;
    transition: var(--transition-fast);
}

.gold-cta:hover .cta-icon {
    transform: translateX(5px);
}

.large-cta {
    padding: 17px 40px;
    font-size:  1rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SECTION LABELS & HEADERS
======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 1;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gradient-primary);
}

.label-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    margin-bottom: 16px;
}

/* ========================================
   PREMIUM NAVIGATION BAR
======================================== */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background:  rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.premium-nav.scrolled {
    padding: 5px 0;
    background:  rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-subtle);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight:  700;
    color: var(--color-text-dark);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: all 0.5s ease;
}
.premium-nav.scrolled .nav-logo img {
    height: 60px;
}

.nav-logo span {
    color: var(--color-primary);
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
    margin-bottom: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight:  500;
    color: var(--color-text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 5px 0;
    transition:  var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom:  0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown details {
    position: relative;
}

.dropdown-toggle {
    list-style: none;
    cursor: pointer;
}

.dropdown-toggle::-webkit-details-marker {
    display: none;
}

.dropdown-menu-list {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 260px;
    padding: 12px;
    margin: 0;
    list-style: none;
    background: #ffffff;
    border: 1px solid rgba(6, 104, 170, 0.12);
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1200;
    max-height: 500px;
    overflow: auto;
}

.nav-dropdown details[open] .dropdown-menu-list {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-link:hover {
    background: rgba(6, 104, 170, 0.08);
    color: var(--color-primary);
}

.nav-cta {
    padding: 12px 30px;
    font-size: 0.875rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION - LUXURY STATEMENT
======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-white);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.3; */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: linear-gradient(135deg, rgba(6, 104, 170, 0.45) 0%, rgba(6, 104, 170, 0.05) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    padding: 0 30px;
    margin: 0 auto;
}

.hero-headline {
    margin-bottom: 30px;
    /* opacity: 0; */
}

.headline-line {
    color: #fff;
    display: block;
    margin-bottom: 15px;
}

.hero-subheadline {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    /* opacity: 0; */
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 3;
    /* opacity: 0; */
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight:  500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform:  translateY(10px); }
}

/* ========================================
   ABOUT SECTION - BRAND INTRODUCTION
======================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
    position: relative;
}

.about-content {
    padding-right: 50px;
    opacity: 1;
}

.about-image-wrapper {
    opacity: 1;
}

.about-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

.about-section .section-title,
.about-section h2 {
    color: var(--color-text-dark);
}

.about-highlights {
    display: flex;
    align-items: center;
    gap: 30px;
}

.highlight-item {
    text-align: center;
    opacity: 1;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight:  700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.highlight-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
}

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

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit:  cover;
    transition: var(--transition-smooth);
}

.image-frame:hover .about-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: linear-gradient(135deg, rgba(6, 104, 170, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--color-primary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    opacity: 1;
}

.badge-icon {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

/* ========================================
   PRODUCTS SECTION - SERVICE CATEGORIES
======================================== */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:  100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
}

.product-card {
    position: relative;
    padding: 30px 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
    /* transition: var(--transition-smooth); */
    overflow: hidden;
    height: 100%;
    opacity: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left:  0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 104, 170, 0.03) 0%, rgba(6, 104, 170, 0.05) 100%);
    transition: var(--transition-smooth);
    z-index: 0;
}

.product-card:hover::before {
    width: 100%;
}

.product-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

.card-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.product-card:hover .card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.card-icon {
    width: 35px;
    height: 35px;
    color: var(--color-white);
}

.card-title {
    font-size: 1.25rem;
    font-weight:  700;
    color: var(--color-text-dark);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.card-description {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.feature-tag {
    padding: 8px 16px;
    background: rgba(6, 104, 170, 0.08);
    border: 1px solid rgba(6, 104, 170, 0.2);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight:  600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.product-card:hover .feature-tag {
    background: rgba(6, 104, 170, 0.12);
    border-color: var(--color-primary);
}

/* ========================================
   CAPABILITIES SECTION - VALUE PROPOSITION
======================================== */
.capabilities-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.capabilities-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(6, 104, 170, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(166, 206, 58, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.capabilities-section .container {
    position: relative;
    z-index: 1;
}

.capabilities-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    /* repeat 3 */
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top:  60px;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px;
    background: var(--color-white);
    border-left: 2px solid transparent;
    /* transition: var(--transition-smooth); */
    position: relative;
    opacity: 1;
}

.capability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left:  0;
    width: 2px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.capability-item:hover::before {
    height: 100%;
}

.capability-item:hover {
    background: var(--color-bg-lighter);
    transform: translateX(10px);
}

.capability-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(6, 104, 170, 0.15);
    line-height: 1;
    min-width: 80px;
    transition: var(--transition-smooth);
    opacity: 1;
}

.capability-item:hover .capability-number {
    color: rgba(6, 104, 170, 0.3);
}

.capability-content {
    flex: 1;
}

.capability-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.capability-description {
    font-size: 1rem;
    line-height:  1.8;
    color: var(--color-text-light);
}

.capability-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.capability-item:hover .capability-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--color-primary-dark);
}

.capability-icon svg {
    width: 30px;
    height: 30px;
}

/* ========================================
   WHY CHOOSE SECTION
======================================== */
.why-choose-section {
    padding:  var(--section-padding) 0;
    background: var(--color-white);
}

.why-choose-section .section-title {
    color: var(--color-black);
}

.reason-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--color-white);
    /* transition: var(--transition-smooth); */
    height: 100%;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.reason-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left:  50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.reason-card:hover::before {
    width: 80%;
}

.reason-card:hover {
    background: var(--color-bg-lighter);
    transform: translateY(-10px);
}

.reason-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:  2px solid var(--color-primary);
    color: var(--color-primary);
    transition: var(--transition-smooth);
    opacity: 1;
}

.reason-card:hover .reason-icon {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: scale(1.1);
    border-color: transparent;
}

.reason-icon svg {
    width: 30px;
    height: 30px;
}

.reason-title {
    font-size: 1.125rem;
    font-weight:  700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.reason-text {
    font-size: 0.9rem;
    line-height:  1.6;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.reason-separator {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.reason-card:hover .reason-separator {
    width: 60px;
    opacity: 1;
}

/* ========================================
   CTA BANNER SECTION
======================================== */
.cta-banner-section {
    padding: 70px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: 
        linear-gradient(135deg, rgba(8, 129, 212, 0.3) 0%, transparent 50%, rgba(5, 77, 127, 0.3) 100%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
}

.cta-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 80px;
}

.testimonial-item {
    padding: 40px 35px;
    background: var(--color-white);
    border:  1px solid var(--color-border);
    text-align: center;
    margin:  0 15px;
    opacity: 1;
}

.testimonial-quote {
    margin-bottom: 28px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-size: 1.125rem;
    font-weight:  700;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

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

.partner-logos {
    text-align: center;
    margin-top: 80px;
}

.partners-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 50px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    /* transition: var(--transition-smooth); */
    cursor: pointer;
    opacity: 1;
}

.partner-logo:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.contact-info {
    padding-right: 50px;
    opacity: 1;
}

.contact-description {
    font-size: 1.0625rem;
    line-height:  1.7;
    color: var(--color-text-light);
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-detail-item {
    display: flex;
    gap: 25px;
    opacity: 1;
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 104, 170, 0.08);
    border: 1px solid rgba(6, 104, 170, 0.2);
    color: var(--color-primary);
    flex-shrink: 0;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-title {
    font-size: 1.125rem;
    font-weight:  700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.detail-text {
    font-size: 1rem;
    line-height:  1.7;
    color: var(--color-text-light);
}

/* ========================================
   PREMIUM CONTACT FORM
======================================== */
.contact-form-wrapper {
    padding: 40px 35px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    opacity: 1;
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    background: transparent;
    border:  none;
    border-bottom: 1px solid var(--color-border);
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-input:valid {
    border-bottom-color: var(--color-primary);
}

.form-input:focus + .form-label,
.form-input:valid + .form-label {
    top: -20px;
    font-size: 0.75rem;
    color: var(--color-primary);
}

.form-label {
    position: absolute;
    top: 18px;
    left: 0;
    font-size: 1rem;
    color: var(--color-text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.form-input:focus ~ .form-border {
    width: 100%;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 18px;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230668aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right:  40px;
}

select.form-input option {
    background:  var(--color-white);
    color: var(--color-text-dark);
    padding: 10px;
}

/* ========================================
   FOOTER
======================================== */
.premium-footer {
    padding: 60px 0 30px;
    background: var(--color-text-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    max-width: 400px;
    opacity: 1;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight:  700;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo span {
    color: var(--color-primary);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 1;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-menu a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-gold-muted);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:  1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    border-color: var(--color-primary);
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-5px);
}

.social-link svg {
    width:  20px;
    height:  20px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 1;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 75px;
    }

    .nav-menu {
        gap: 28px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 22px;
        padding:  40px;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }

    .nav-dropdown,
    .nav-dropdown details {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu-list {
        position: static;
        min-width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid rgba(6, 104, 170, 0.15);
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1000;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .highlight-divider {
        width: 60px;
        height: 1px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .footer-links {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 45px;
    }

    .container {
        padding: 0 20px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .about-image {
        height: 320px;
    }

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

    .capability-item {
        flex-direction: column;
    }

    .testimonial-item {
        padding: 30px 22px;
        margin:  0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cta-button {
        padding: 13px 24px;
        font-size: 0.8125rem;
    }

    .large-cta {
        padding: 15px 28px;
    }

    .product-card {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .logos-grid {
        gap: 30px;
    }

    .partner-logo {
        font-size: 1.25rem;
    }
}

/* ========================================
   PAGE HEADER BANNER (About Page)
======================================== */
.page-header-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-white);
    margin-top: 80px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 104, 170, 0.92) 0%, rgba(6, 104, 170, 0.75) 100%);
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: rgba(60, 60, 60, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-link:hover {
    color: #000;
}

.breadcrumb-separator {
    color: rgba(31, 31, 31, 0.5);
}

.breadcrumb-current {
    color: #000;
    font-weight: 600;
}

.page-header-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    color: var(--color-white);
    margin-bottom: 10px;
}

.page-header-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   ABOUT STORY SECTION
======================================== */
.about-story-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.about-story-content {
    padding-right: 50px;
}

.about-story-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 18px;
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    padding: 28px 22px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-subtle);
    border-color: var(--color-primary);
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-white);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* ========================================
   MISSION & VISION SECTION
======================================== */
.mission-vision-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.mission-card,
.vision-card {
    padding: 40px 35px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: var(--transition-smooth);
}

.mission-card:hover,
.vision-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    margin-bottom: 22px;
}

.mission-icon,
.vision-icon {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.mission-title,
.vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 14px;
}

.mission-text,
.vision-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 22px;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.point-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pillar-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--color-bg-light);
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-fast);
}

.pillar-item:hover {
    background: var(--color-white);
    transform: translateX(10px);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 40px;
}

.pillar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.pillar-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   TIMELINE SECTION
======================================== */
.timeline-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding-left: 60px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 35px;
    opacity: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--color-white);
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--color-primary);
    box-shadow: 0 0 0 8px rgba(6, 104, 170, 0.1);
}

.timeline-content {
    padding: 22px 25px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    background: var(--color-white);
    box-shadow: var(--shadow-subtle);
    transform: translateX(10px);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.timeline-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ========================================
   HOW WE WORK SECTION
======================================== */
.how-we-work-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

.work-steps-wrapper {
    margin-top: 40px;
    margin-bottom: 50px;
}

.work-step-card {
    position: relative;
    padding: 35px 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

.work-step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.step-number-wrapper {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: 4px solid var(--color-white);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
}

.step-icon-wrapper {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 104, 170, 0.08);
    border: 2px solid rgba(6, 104, 170, 0.2);
    margin: 22px auto 18px;
    transition: var(--transition-smooth);
}

.work-step-card:hover .step-icon-wrapper {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
}

.step-icon {
    width: 35px;
    height: 35px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.work-step-card:hover .step-icon {
    color: var(--color-white);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    opacity: 0.3;
    display: none;
}

.process-benefits {
    padding: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 32px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    margin: 0 auto 20px;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ========================================
   CONTACT INFO CARDS SECTION
======================================== */
.contact-info-cards-section {
    padding: 80px 0;
    background: var(--color-white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    padding: 35px 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-align: center;
    height: 100%;
    transition: var(--transition-smooth);
    margin-bottom: 30px;
    box-shadow: var(--shadow-subtle);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.info-card-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    margin: 0 auto 18px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card-icon svg {
    width: 35px;
    height: 35px;
    color: var(--color-white);
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.info-card-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.info-card-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-card-text a:hover {
    color: var(--color-primary-dark);
}

.info-card-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* ========================================
   MAIN CONTACT SECTION
======================================== */
.main-contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

.contact-content {
    padding-right: 50px;
}

.contact-content-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.contact-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-subtle);
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.urgent-contact {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--gradient-primary);
    align-items: center;
}

.urgent-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.urgent-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.urgent-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 5px;
}

.urgent-text {
    font-size: 1rem;
    color: var(--color-white);
}

.urgent-text a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--color-white);
    transition: var(--transition-fast);
}

.urgent-text a:hover {
    border-bottom-color: transparent;
}

.form-privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 20px;
    justify-content: center;
}

.form-privacy-note svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

/* ========================================
   REGIONAL OFFICES SECTION
======================================== */
.regional-offices-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.office-card {
    padding: 30px 25px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    height: 100%;
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.office-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.office-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 104, 170, 0.08);
    border: 2px solid rgba(6, 104, 170, 0.2);
    transition: var(--transition-smooth);
}

.office-card:hover .office-icon {
    background: var(--gradient-primary);
    border-color: transparent;
}

.office-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.office-card:hover .office-icon svg {
    color: var(--color-white);
}

.office-badge {
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.office-badge-secondary {
    background: rgba(6, 104, 170, 0.1);
    color: var(--color-primary);
}

.office-city {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 25px;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-detail {
    display: flex;
    gap: 15px;
}

.office-detail svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.office-detail p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

.office-detail a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.office-detail a:hover {
    color: var(--color-primary-dark);
}

.office-card-coming {
    text-align: center;
    background: var(--color-bg-light);
    border-style: dashed;
}

.office-card-coming .office-icon {
    margin: 0 auto;
}

.coming-soon-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 25px 0 30px;
}

.coming-soon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.coming-soon-link:hover {
    gap: 15px;
    color: var(--color-primary-dark);
}

.coming-soon-link svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   MAP SECTION
======================================== */
.map-section {
    background: var(--color-bg-light);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
}

/* ========================================
   CONTACT FAQ SECTION
======================================== */
.contact-faq-section {
    padding: var(--section-padding) 0;
    background: var(--color-white);
}

.faq-wrapper {
    max-width: 1100px;
    margin: 60px auto 0;
}

.faq-item {
    padding: 30px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-subtle);
    transform: translateX(5px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
}

.faq-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
    padding-left: 39px;
}

/* ========================================
   TEAM PAGE STYLES
======================================== */
.team-intro-section {
    padding: 50px 0;
    background: var(--color-white);
}

.team-intro-content {
    padding: 0 30px;
}

.team-intro-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-top: 20px;
}

/* ========================================
   LEADERSHIP SECTION
======================================== */
.leadership-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-light);
}

/* ========================================
   TEAM DEPARTMENT SECTIONS
======================================== */
.team-department-section {
    padding: 60px 0;
    background: var(--color-white);
}

.team-department-section:nth-child(even) {
    background: var(--color-bg-light);
}

/* ========================================
   TEAM CARD STYLES
======================================== */
.team-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: var(--transition-smooth);
    margin-bottom: 30px;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--color-primary);
}

.team-card-leadership {
    box-shadow: var(--shadow-subtle);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.team-card-leadership .team-image-wrapper {
    height: 400px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

/* Team Overlay with Social Icons */
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 104, 170, 0.95) 0%, rgba(6, 104, 170, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover .team-overlay {
    opacity: 1;
    visibility: visible;
}

.team-social {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.social-link-team {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    transform: scale(0.8);
    opacity: 0;
}

.team-card:hover .social-link-team {
    transform: scale(1);
    opacity: 1;
}

.team-card:hover .social-link-team:nth-child(1) {
    transition-delay: 0.1s;
}

.team-card:hover .social-link-team:nth-child(2) {
    transition-delay: 0.2s;
}

.team-card:hover .social-link-team:nth-child(3) {
    transition-delay: 0.3s;
}

.social-link-team:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.15) translateY(-3px);
}

.social-link-team svg {
    width: 20px;
    height: 20px;
}

/* Team Info */
.team-info {
    padding: 22px 20px;
    text-align: center;
}

.team-card-leadership .team-info {
    padding: 40px 30px;
}

.team-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.team-card-leadership .team-name {
    font-size: 1.625rem;
}

.team-position {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card-leadership .team-position {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.team-bio {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* ========================================
   JOIN TEAM SECTION
======================================== */
.join-team-section {
    padding: 70px 0;
    background: var(--gradient-primary);
}

.join-team-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.join-icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 22px;
    border-radius: 50%;
}

.join-icon svg {
    width: 42px;
    height: 42px;
    color: var(--color-white);
}

.join-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
}

.join-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
}

.join-team-section .gold-cta {
    background: var(--color-white);
    color: var(--color-primary);
}

.join-team-section .gold-cta::before {
    background: var(--color-bg-light);
}

.join-team-section .gold-cta:hover {
    color: var(--color-primary);
}

/* ========================================
   RESPONSIVE - TEAM PAGE
======================================== */
@media (max-width: 992px) {
    .team-image-wrapper {
        height: 300px;
    }

    .team-card-leadership .team-image-wrapper {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .team-intro-section {
        padding: 40px 0;
    }

    .leadership-section {
        padding: 50px 0;
    }

    .team-department-section {
        padding: 45px 0;
    }

    .team-image-wrapper {
        height: 280px;
    }

    .team-card-leadership .team-image-wrapper {
        height: 320px;
    }

    .team-card {
        margin-bottom: 25px;
    }

    .join-team-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .team-image-wrapper {
        height: 260px;
    }

    .team-card-leadership .team-image-wrapper {
        height: 300px;
    }

    .team-info {
        padding: 20px 18px;
    }

    .social-link-team {
        width: 45px;
        height: 45px;
    }

    .team-social {
        gap: 12px;
    }

    .join-icon {
        width: 70px;
        height: 70px;
    }

    .join-icon svg {
        width: 36px;
        height: 40px;
    }
}

/* ========================================
   RESPONSIVE - CONTACT PAGE
======================================== */
@media (max-width: 992px) {
    .contact-info-cards-section {
        margin-top: 0;
        padding: 60px 0;
    }
    
    .contact-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .office-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-feature-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .urgent-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .map-wrapper {
        height: 400px;
    }
    
    .faq-answer {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 28px 20px;
    }

    .office-card {
        padding: 25px 20px;
    }

    .office-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .faq-item {
        padding: 22px 18px;
    }
}

/* ========================================
   RESPONSIVE - ABOUT PAGE
======================================== */
@media (min-width: 992px) {
    .step-arrow {
        display: flex;
    }
    
    .col-lg-3:last-child .step-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-story-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .timeline-wrapper {
        padding-left: 40px;
    }
    
    .timeline-dot {
        left: -32px;
    }
}

@media (max-width: 768px) {
    .page-header-banner {
        min-height: 220px;
    }

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

    .stat-card {
        padding: 24px 20px;
    }

    .mission-card,
    .vision-card {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    .timeline-wrapper {
        padding-left: 30px;
    }

    .timeline-wrapper::before {
        left: 10px;
    }

    .timeline-dot {
        left: -22px;
        width: 14px;
        height: 14px;
    }

    .timeline-content {
        padding: 20px 18px;
    }

    .work-step-card {
        padding: 28px 20px;
    }

    .process-benefits {
        padding: 28px 22px;
    }
}

@media (max-width: 576px) {
    .page-header-title {
        font-size: 1.625rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

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

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0 ! important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom:  30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px ! important; }

.mt-0 { margin-top: 0 !important; }
.mt-20 { margin-top: 20px ! important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top:  40px !important; }
.mt-50 { margin-top: 50px !important; }

/* ========================================
   SMOOTH SCROLLBAR STYLING
======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}

/* ========================================
   SELECTION STYLING
======================================== */
::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

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