/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - KHALIFAH TRADE LINK
   ========================================================================== */
:root {
    /* Color Palette */
    --color-dark-bg: #00142D;      /* Logo navy */
    --color-dark-card: #00223D;    /* Raised navy card background */
    --color-dark-border: rgba(212, 175, 55, 0.15); /* Gold-tinted border */
    --color-gold: #C5A880;         /* Champagne/Sophisticated Gold */
    --color-gold-hover: #AA841F;
    --color-gold-glow: rgba(197, 168, 128, 0.4);
    --color-white: #FFFFFF;
    --color-light-bg: #F8F8F7;     /* Warm Light Gray */
    --color-light-card: #FFFFFF;
    --color-light-border: #EAE9E6;
    
    /* Text Colors */
    --text-primary-light: #FFFFFF;
    --text-secondary-light: #CCCCCC;
    --text-primary-dark: #1A1A1A;
    --text-secondary-dark: #666666;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-premium: 0 20px 40px rgba(0, 20, 45, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 20, 45, 0.05);
    --shadow-gold: 0 15px 30px rgba(197, 168, 128, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-dark-bg);
    color: var(--text-primary-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
}

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

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-dark-bg);
}
::-webkit-scrollbar-thumb {
    background: #002D50;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* ==========================================================================
   LOADING PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-bg);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    animation: scaleLogo 2.5s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--color-white);
    margin-top: 15px;
}

@keyframes scaleLogo {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition-smooth);
    background: rgba(0, 20, 45, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.site-header.scrolled {
    padding: 15px 0;
    background: rgba(0, 20, 45, 0.96);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.header-logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.logo-name-main {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--color-white);
}

.logo-name-sub {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    color: var(--color-gold);
}

.desktop-nav .nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary-light);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

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

.menu-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 8px;
    background: rgba(0, 20, 45, 0.72);
    color: var(--color-white);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    border-color: var(--color-gold);
    background: rgba(197, 168, 128, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.menu-toggle-line {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: var(--transition-fast);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s ease;
}

.menu-panel.is-open,
.menu-panel[aria-hidden="false"] {
    pointer-events: auto;
    visibility: visible;
}

.menu-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 45, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-panel.is-open .menu-panel-backdrop,
.menu-panel[aria-hidden="false"] .menu-panel-backdrop {
    opacity: 1;
}

.menu-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 92vw);
    height: 100%;
    padding: 34px;
    background: rgba(0, 20, 45, 0.98);
    border-left: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.menu-panel.is-open .menu-drawer,
.menu-panel[aria-hidden="false"] .menu-drawer {
    transform: translateX(0);
}

.menu-drawer-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-close {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-close:hover,
.menu-close:focus-visible {
    border-color: var(--color-gold);
    background: rgba(197, 168, 128, 0.12);
}

.menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: var(--color-white);
    border-radius: 999px;
}

.menu-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-list {
    display: grid;
    gap: 8px;
    margin-top: 34px;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 4vw, 2rem);
    font-weight: 500;
    color: var(--text-secondary-light);
    letter-spacing: 0;
}

.menu-link::after {
    content: '';
    width: 9px;
    height: 9px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.55;
    transition: var(--transition-fast);
}

.menu-link:hover,
.menu-link:focus-visible,
.menu-link.active {
    color: var(--color-gold);
    padding-left: 10px;
}

.menu-link:hover::after,
.menu-link:focus-visible::after,
.menu-link.active::after {
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--color-dark-bg);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(197, 168, 128, 0.08) 0%, transparent 60%);
    z-index: 1;
}

.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 0;
    opacity: 0.15;
}

.grid-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    animation: pulseLines 8s infinite alternate ease-in-out;
}

.grid-line:nth-child(2) { animation-delay: 2s; }
.grid-line:nth-child(3) { animation-delay: 4s; }
.grid-line:nth-child(4) { animation-delay: 6s; }

@keyframes pulseLines {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-white) 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary-light);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Button Component Base */
.btn {
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-dark-bg);
}

.btn-primary:hover {
    background-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

.btn-gold {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-bg);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-secondary-light);
    text-transform: uppercase;
}

.scroll-dot {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--color-gold);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% { top: -12px; }
    100% { top: 30px; }
}

/* ==========================================================================
   REVEAL ON SCROLL STATES
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ABOUT COMPANY SECTION
   ========================================================================== */
.about-section {
    padding: 140px 0;
    background-color: var(--color-white);
    color: var(--text-primary-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.about-content-grid {
    grid-template-columns: minmax(0, 1fr);
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-primary-dark);
}

.section-title.text-light {
    color: var(--color-white);
}

.about-intro-text .highlight-text {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-primary-dark);
    margin-bottom: 25px;
}

.about-intro-text .welcome-gold {
    position: relative;
    color: var(--text-primary-dark);
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(197, 168, 128, 0.12);
}

.about-intro-text .welcome-gold::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.16em;
    border-radius: 999px;
    background: rgba(197, 168, 128, 0.34);
    z-index: -1;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary-dark);
    margin-bottom: 20px;
}

.about-subheading {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--text-primary-dark);
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-primary-dark);
}

.gold-bullet {
    color: var(--color-gold);
    font-size: 1.4rem;
}

.cta-style-text {
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
    margin-top: 40px;
}

/* Expandable System */
.about-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.read-more-btn {
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    text-transform: uppercase;
}

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

.read-more-btn[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */
.stats-section {
    padding: 100px 0;
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
    border-bottom: 1px solid var(--color-dark-border);
}

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

.stat-card {
    text-align: center;
}

.stat-num-container {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-suffix {
    color: var(--color-gold);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.industries-section {
    padding: 140px 0;
    background-color: var(--color-light-bg);
    color: var(--text-primary-dark);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary-dark);
    margin-top: 15px;
}

.section-description.text-gray {
    color: var(--text-secondary-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    background-color: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.industry-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-card:hover .industry-image {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 20, 45, 0.6) 100%);
}

.industry-info {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.industry-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(197, 168, 128, 0.15);
    position: absolute;
    top: 15px;
    right: 30px;
    line-height: 1;
}

.industry-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary-dark);
}

.industry-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.industry-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.industry-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */
.partners-section {
    padding: 140px 0;
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
}

.partners-grid-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.partner-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-premium);
    height: 150px;
    transition: var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-gold);
}

.partner-logo {
    max-width: 80%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: var(--transition-fast);
}

.partner-card:hover .partner-logo {
    filter: none;
    opacity: 1;
}

.partners-section .partner-logo,
.partners-section .partner-card:hover .partner-logo,
.partners-grid-full .partner-logo,
.partners-grid-full .partner-card:hover .partner-logo {
    filter: none;
    opacity: 1;
}

.partners-cta {
    text-align: center;
    margin-top: 60px;
}

/* ==========================================================================
   BUSINESS SECTOR / STREAMS
   ========================================================================== */
.business-section {
    padding: 120px 0;
    background-color: #FBFBFA;
    color: var(--text-primary-dark);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.business-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-light-border);
    border-radius: 8px;
    padding: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
    z-index: 10;
}

.business-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 10, 11, 0.12);
    border-color: rgba(197, 168, 128, 0.42);
}

.business-card:hover::before {
    transform: scaleX(1);
}

.business-card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--color-dark-bg);
}

.business-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-card:hover .business-card-img {
    transform: scale(1.08);
}

.business-card-content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.business-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary-dark);
    letter-spacing: 0;
    font-family: var(--font-heading);
}

.business-card-desc {
    font-size: 0.94rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   WHY CHOOSE US & INFOGRAPHIC
   ========================================================================== */
.why-section {
    padding: 140px 0;
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
    border-bottom: 1px solid var(--color-dark-border);
}

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

.why-desc {
    font-size: 1.15rem;
    color: var(--text-secondary-light);
    margin: 20px 0 40px;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-bullet-item {
    display: flex;
    gap: 20px;
}

.bullet-check {
    width: 30px;
    height: 30px;
    background-color: rgba(197, 168, 128, 0.15);
    border: 1px solid var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.bullet-check svg {
    width: 14px;
    height: 14px;
}

.bullet-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-white);
}

.bullet-content p {
    font-size: 0.95rem;
    color: var(--text-secondary-light);
}

/* Infographic Floating Animation System */
.why-infographic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 480px;
}

.info-ring {
    position: relative;
    width: 340px;
    height: 340px;
    border: 1px dashed rgba(197, 168, 128, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateRing 40s linear infinite;
}

.info-ring-center {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: var(--color-dark-bg);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(197, 168, 128, 0.1);
    animation: counterRotateRing 40s linear infinite;
}

.info-center-logo {
    height: 60px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.info-ring-center span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.info-node {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    transition: var(--transition-fast);
    animation: counterRotateRing 40s linear infinite;
}

.info-node:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

.node-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.node-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
}

.node-1 { top: -50px; left: calc(50% - 50px); }
.node-2 { bottom: -50px; left: calc(50% - 50px); }
.node-3 { left: -50px; top: calc(50% - 50px); }
.node-4 { right: -50px; top: calc(50% - 50px); }

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes counterRotateRing {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* ==========================================================================
   MANUFACTURING & SOURCING TIMELINE
   ========================================================================== */
.process-section {
    padding: 140px 0;
    background-color: var(--color-light-bg);
    color: var(--text-primary-dark);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-gold-glow) 0%, var(--color-gold) 50%, var(--color-gold-glow) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 70px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
    z-index: 10;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -22px;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -22px;
}

.timeline-content {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    transform: rotate(45deg);
}

.process-step {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

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

.process-desc {
    font-size: 0.95rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
}

/* ==========================================================================
   GLOBAL PRESENCE (SVG WORLD MAP)
   ========================================================================== */
.global-section {
    padding: 140px 0;
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
}

.map-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
}

.world-map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.map-land {
    fill: var(--color-dark-card);
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1px;
}

.map-land-detailed {
    fill: rgba(0, 20, 45, 0.95);
}

/* Operational Lines */
.map-link-line {
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1.5px;
    stroke-dasharray: 6 4;
    opacity: 0.4;
    animation: dashNetwork 30s linear infinite;
}

@keyframes dashNetwork {
    to { stroke-dashoffset: -1000; }
}

/* Pulse Landmark Beacons */
.marker-dot {
    fill: var(--color-gold);
}

.marker-pulse {
    fill: var(--color-gold);
    opacity: 0.4;
    animation: pingMarker 2s ease-in-out infinite;
    transform-origin: center;
}

.map-marker.hq .marker-dot {
    fill: var(--color-white);
}

.map-marker.hq .marker-pulse {
    fill: var(--color-white);
    animation-duration: 1.5s;
}

.marker-label {
    fill: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0.75;
    pointer-events: none;
}

.marker-label.font-left {
    text-anchor: end;
}

.map-marker.hq .marker-label {
    fill: var(--color-gold);
    font-weight: 700;
    font-size: 0.85rem;
    opacity: 1;
}

@keyframes pingMarker {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.presence-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.presence-info-card {
    background: var(--color-dark-card);
    border: 1px solid var(--color-dark-border);
    padding: 30px;
    border-radius: 8px;
}

.presence-info-card h4 {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.presence-info-card p {
    font-size: 0.95rem;
    color: var(--text-secondary-light);
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 140px 0;
    background-color: var(--color-white);
    color: var(--text-primary-dark);
}

.testimonial-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    position: relative;
    height: 380px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.testimonial-content-card {
    background-color: var(--color-light-bg);
    padding: 60px;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: rgba(197, 168, 128, 0.2);
    position: absolute;
    top: 15px;
    left: 40px;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--text-primary-dark);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary-dark);
}

.profile-title {
    font-size: 0.9rem;
    color: var(--text-secondary-dark);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.slider-arrow {
    background: transparent;
    cursor: pointer;
    color: var(--text-primary-dark);
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-light-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: var(--color-light-bg);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-light-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot-btn.active {
    background-color: var(--color-gold);
    transform: scale(1.3);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 140px 0;
    background-color: var(--color-light-bg);
    color: var(--text-primary-dark);
    border-top: 1px solid var(--color-light-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary-dark);
    margin-bottom: 40px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary-dark);
    text-transform: uppercase;
}

.corporate-form input,
.corporate-form select,
.corporate-form textarea {
    padding: 15px;
    border: 1px solid var(--color-light-border);
    border-radius: 0;
    background-color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.corporate-form input:focus,
.corporate-form select:focus,
.corporate-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
}

.corporate-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.submit-btn {
    align-self: flex-start;
    padding: 20px 45px;
}

.contact-details-wrapper {
    height: 100%;
}

.details-card {
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 40px;
    height: 100%;
}

.details-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary-dark);
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 15px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.info-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary-dark);
}

.info-text p, .info-text a {
    font-size: 0.95rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
}

.info-text a:hover {
    color: var(--color-gold);
}

.whatsapp-container {
    margin-top: 10px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 0;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Styled Dark Map Placeholder */
.map-placeholder-container {
    width: 100%;
    height: 230px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
    border: 1px solid var(--color-light-border);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark-card);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(197, 168, 128, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(197, 168, 128, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 168, 128, 0.03) 1px, transparent 1px);
    background-size: 20px 20px, 40px 40px, 40px 40px;
    opacity: 0.8;
}

.map-target {
    position: relative;
    z-index: 5;
}

.map-target .pin {
    font-size: 2rem;
    animation: bounce 2s infinite alternate ease-in-out;
}

.map-target .ping {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    animation: pingMarker 1.8s infinite ease-out;
}

.map-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
}

.map-overlay-text h4 {
    font-size: 0.95rem;
    color: var(--color-white);
    font-weight: 700;
}

.map-overlay-text p {
    font-size: 0.8rem;
    color: var(--text-secondary-light);
}

.map-coords {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--color-gold);
    display: block;
    margin-top: 5px;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.contact-section-heading {
    max-width: 900px;
    margin-bottom: 56px;
}

.contact-section-heading .section-title {
    margin-bottom: 18px;
}

.contact-section-heading .contact-subtitle {
    max-width: 860px;
    margin-bottom: 0;
}

.contact-section .contact-grid {
    align-items: start;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 42px;
}

.contact-section .details-card,
.contact-section .corporate-form {
    border: 1px solid rgba(197, 168, 128, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 247, 0.96)),
        var(--color-white);
    box-shadow: 0 24px 60px rgba(10, 10, 11, 0.08);
}

.contact-section .details-card {
    position: sticky;
    top: 110px;
    gap: 32px;
    padding: 42px;
}

.contact-section .details-card h3,
.form-section h3 {
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-primary-dark);
}

.contact-section .details-card h3 {
    border-bottom: 1px solid var(--color-light-border);
}

.contact-section .contact-info-list {
    gap: 22px;
}

.contact-section .info-item {
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--color-light-border);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.72);
}

.contact-section .info-icon {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--color-gold-hover);
}

.contact-section .info-icon svg {
    width: 22px;
    height: 22px;
}

.contact-section .info-text h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-section .info-text p,
.contact-section .info-text a {
    word-break: break-word;
}

.contact-helper-text {
    padding: 20px;
    border-left: 3px solid var(--color-gold);
    border-radius: 8px;
    background-color: rgba(197, 168, 128, 0.09);
    color: var(--text-secondary-dark);
}

.contact-section .corporate-form {
    gap: 28px;
    padding: 34px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.choice-grid {
    display: grid;
    gap: 12px;
}

.checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-pill {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px 12px 44px;
    border: 1px solid var(--color-light-border);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--text-primary-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.choice-pill:hover {
    border-color: rgba(197, 168, 128, 0.65);
    box-shadow: 0 10px 24px rgba(10, 10, 11, 0.06);
    transform: translateY(-1px);
}

.choice-pill input {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold-hover);
}

.choice-pill:has(input:checked) {
    border-color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.12);
    color: var(--text-primary-dark);
}

.contact-section .form-row {
    gap: 18px;
}

.contact-section .form-group {
    gap: 9px;
}

.contact-section .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
}

.contact-section .corporate-form input,
.contact-section .corporate-form select,
.contact-section .corporate-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 15px 16px;
    border: 1px solid var(--color-light-border);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--text-primary-dark);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-section .corporate-form textarea {
    min-height: 170px;
    resize: vertical;
    line-height: 1.7;
}

.contact-section .corporate-form input:hover,
.contact-section .corporate-form select:hover,
.contact-section .corporate-form textarea:hover {
    border-color: rgba(197, 168, 128, 0.5);
}

.contact-section .corporate-form input:focus,
.contact-section .corporate-form select:focus,
.contact-section .corporate-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.16), 0 12px 24px rgba(10, 10, 11, 0.05);
}

.contact-section .corporate-form input.is-invalid,
.contact-section .corporate-form select.is-invalid,
.contact-section .corporate-form textarea.is-invalid {
    border-color: #C74646;
    box-shadow: 0 0 0 4px rgba(199, 70, 70, 0.12);
}

.character-counter {
    align-self: flex-end;
    font-size: 0.84rem;
    color: var(--text-secondary-dark);
}

.form-status {
    display: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.form-status.success,
.form-status.error {
    display: block;
}

.form-status.success {
    border: 1px solid rgba(18, 140, 126, 0.24);
    background-color: rgba(18, 140, 126, 0.1);
    color: #12695F;
}

.form-status.error {
    border: 1px solid rgba(199, 70, 70, 0.24);
    background-color: rgba(199, 70, 70, 0.1);
    color: #9B2F2F;
}

.contact-section .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 20px 32px;
    border-radius: 8px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 34px rgba(197, 168, 128, 0.24);
}

.contact-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(197, 168, 128, 0.32);
}

.contact-section .submit-btn:active {
    transform: translateY(0) scale(0.99);
}

@media (max-width: 1100px) {
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section .details-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 90px 0;
    }

    .contact-section-heading {
        margin-bottom: 36px;
    }

    .contact-section .details-card,
    .contact-section .corporate-form {
        padding: 24px;
    }

    .checkbox-grid,
    .type-grid {
        grid-template-columns: 1fr;
    }

    .contact-section .info-item {
        padding: 16px;
    }

    .contact-section .submit-btn {
        width: 100%;
    }
}

/* Contact form refinement */
.contact-section {
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 100%);
    padding: 96px 0 120px;
}

.contact-section > .container {
    max-width: 1280px;
    padding: 0 5%;
}

.contact-section-heading {
    max-width: 980px;
    margin: 0 auto 42px;
    padding: 0;
    text-align: center;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.contact-section-heading .section-title {
    margin: 0;
    color: var(--text-primary-dark);
}

.contact-section-heading .contact-subtitle {
    display: block;
    max-width: 900px;
    margin: 22px auto 0;
    color: var(--text-secondary-dark);
    font-size: 1.08rem;
    line-height: 1.8;
}

.contact-section .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-section .contact-details-wrapper {
    order: 1;
}

.contact-section .contact-form-wrapper {
    order: 2;
}

.contact-section .details-card,
.contact-section .corporate-form {
    border: 1px solid rgba(197, 168, 128, 0.18);
    border-radius: 18px;
    background: var(--color-white);
    box-shadow: 0 24px 70px rgba(10, 10, 11, 0.08);
}

.contact-section .details-card {
    position: static;
    height: auto;
    padding: 30px;
    gap: 26px;
}

.contact-section .details-card h3 {
    margin: 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.28);
    font-size: 1.45rem;
}

.contact-section .contact-info-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-section .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--color-light-border);
    border-radius: 12px;
    background: #fbfbfb;
}

.contact-section .info-icon {
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(197, 168, 128, 0.12);
    color: var(--color-gold-hover);
}

.contact-section .info-icon svg {
    width: 25px;
    height: 25px;
}

.contact-section .info-text {
    min-width: 0;
}

.contact-section .info-text h4 {
    margin-bottom: 4px;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-section .info-text p,
.contact-section .info-text a {
    color: var(--text-secondary-dark);
    font-size: 0.94rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-section .info-text a[href^="mailto:"] {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-section .corporate-form {
    padding: clamp(28px, 4vw, 54px);
    gap: 32px;
}

.contact-section .contact-form-intro {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-light-border);
}

.contact-section .contact-form-intro h3 {
    margin: 0;
    color: var(--text-primary-dark);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 700;
}

.contact-section .form-section {
    gap: 22px;
}

.contact-section .form-section:first-of-type {
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-light-border);
}

.contact-section .form-section:first-of-type h3 {
    display: grid;
    grid-template-columns: max-content 1fr;
    align-items: center;
    gap: 20px;
    color: var(--text-primary-dark);
    font-size: 1.45rem;
    font-weight: 700;
}

.contact-section .form-section:first-of-type h3::after {
    content: "";
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.65), transparent);
}

.contact-section .form-section:not(:first-child) h3 {
    display: none;
}

.contact-section .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
}

.contact-section .choice-pill {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 18px 14px 52px;
    border: 1px solid var(--color-light-border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text-primary-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.contact-section .choice-pill:hover {
    border-color: rgba(197, 168, 128, 0.7);
    background: rgba(197, 168, 128, 0.06);
    box-shadow: 0 14px 28px rgba(10, 10, 11, 0.06);
    transform: translateY(-2px);
}

.contact-section .choice-pill:has(input:checked) {
    border-color: var(--color-gold);
    background: rgba(197, 168, 128, 0.12);
    box-shadow: inset 0 0 0 1px rgba(197, 168, 128, 0.22);
}

.contact-section .choice-pill input {
    position: absolute;
    left: 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--color-gold-hover);
    cursor: pointer;
    transition: accent-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-section .corporate-form .choice-pill input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    border-radius: 4px;
    box-shadow: none;
    transform: none;
}

.contact-section .corporate-form .choice-pill input[type="checkbox"]:hover,
.contact-section .corporate-form .choice-pill input[type="checkbox"]:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.16);
    transform: none;
}

.contact-section .corporate-form .choice-pill input[type="checkbox"]:checked {
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-section .form-group {
    gap: 10px;
}

.contact-section .form-group label {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    color: var(--text-primary-dark);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.contact-section .corporate-form input,
.contact-section .corporate-form select,
.contact-section .corporate-form textarea {
    width: 100%;
    min-height: 62px;
    padding: 17px 18px;
    border: 1px solid var(--color-light-border);
    border-radius: 12px;
    background-color: #ffffff;
    color: var(--text-primary-dark);
    font-size: 1rem;
    line-height: 1.45;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
}

.contact-section .corporate-form select {
    cursor: pointer;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 52px;
}

.contact-section .corporate-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-section .corporate-form input::placeholder,
.contact-section .corporate-form textarea::placeholder {
    color: #858585;
    opacity: 1;
}

.contact-section .corporate-form input:hover,
.contact-section .corporate-form select:hover,
.contact-section .corporate-form textarea:hover {
    border-color: rgba(197, 168, 128, 0.72);
    transform: translateY(-1px);
}

.contact-section .corporate-form input:focus,
.contact-section .corporate-form select:focus,
.contact-section .corporate-form textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.16), 0 16px 30px rgba(10, 10, 11, 0.06);
    transform: translateY(-1px);
}

.contact-section .corporate-form input.is-invalid,
.contact-section .corporate-form select.is-invalid,
.contact-section .corporate-form textarea.is-invalid {
    border-color: #C74646;
    box-shadow: 0 0 0 4px rgba(199, 70, 70, 0.12);
}

.contact-section .character-counter {
    align-self: flex-end;
    color: var(--text-secondary-dark);
}

.contact-section .submit-btn {
    width: min(100%, 280px);
    justify-content: center;
    border-radius: 12px;
    padding: 18px 34px;
    box-shadow: 0 18px 34px rgba(197, 168, 128, 0.24);
}

.contact-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 46px rgba(197, 168, 128, 0.32);
}

.contact-section .submit-btn:active {
    transform: translateY(-1px) scale(0.99);
}

@media (max-width: 1100px) {
    .contact-section .contact-info-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 76px 0 90px;
    }

    .contact-section > .container {
        padding: 0 20px;
    }

    .contact-section-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .contact-section-heading .contact-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .contact-section .details-card,
    .contact-section .corporate-form {
        border-radius: 14px;
    }

    .contact-section .details-card {
        padding: 22px;
    }

    .contact-section .corporate-form {
        padding: 24px;
        gap: 26px;
    }

    .contact-section .contact-info-list,
    .contact-section .form-row {
        grid-template-columns: 1fr;
    }

    .contact-section .checkbox-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .contact-section .form-section:first-of-type h3 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-section .choice-pill {
        min-height: 56px;
    }

    .contact-section .corporate-form input,
    .contact-section .corporate-form select,
    .contact-section .corporate-form textarea {
        min-height: 58px;
        padding: 15px 16px;
    }

    .contact-section .submit-btn {
        width: 100%;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark-bg);
    border-top: 1px solid var(--color-dark-border);
    padding: 80px 0 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-logo {
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-white);
}

.footer-brand-desc {
    color: var(--text-secondary-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary-light);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(197, 168, 128, 0.05);
}

.social-link .icon {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary-light);
}

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

.footer-legal-links a {
    font-size: 0.85rem;
    color: var(--text-secondary-light);
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   PARTNERS MODAL DIALOG
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 20, 45, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-container {
    position: relative;
    z-index: 10;
    background-color: var(--color-dark-bg);
    border: 1px solid var(--color-dark-border);
    width: 90%;
    max-width: 1100px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal.open .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--color-dark-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.partner-count {
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 500;
}

.modal-close-btn {
    font-size: 3rem;
    color: var(--color-white);
    background: transparent;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--color-gold);
}

.modal-filter-bar {
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--color-dark-border);
}

#modal-partner-search {
    width: 100%;
    background: rgba(0, 20, 45, 0.2);
    border: 1px solid var(--color-dark-border);
    padding: 12px 20px;
    color: var(--color-white);
    font-size: 1rem;
    border-radius: 4px;
}

#modal-partner-search:focus {
    border-color: var(--color-gold);
}

.modal-body {
    padding: 40px;
    overflow-y: auto;
    flex-grow: 1;
}

.partners-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.partners-grid-full .partner-card {
    height: 120px;
    padding: 25px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Ultrawide screens */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* Large Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    .about-grid {
        gap: 50px;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets Landscape */
@media (max-width: 992px) {
    .header-container {
        justify-content: space-between;
    }
    .desktop-nav {
        display: none;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .why-infographic {
        height: 380px;
    }
    .info-ring {
        width: 280px;
        height: 280px;
    }
    .info-ring-center {
        width: 130px;
        height: 130px;
    }
    .info-node {
        width: 80px;
        height: 80px;
    }
    .node-1 { top: -40px; left: calc(50% - 40px); }
    .node-2 { bottom: -40px; left: calc(50% - 40px); }
    .node-3 { left: -40px; top: calc(50% - 40px); }
    .node-4 { right: -40px; top: calc(50% - 40px); }
    
    .process-timeline {
        margin-top: 50px;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-bottom: 50px;
    }
    .timeline-dot {
        left: -2px !important;
        right: auto !important;
    }
    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
        transform: rotate(45deg) !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Portrait Tablets & Mobiles */
@media (max-width: 768px) {
    .site-header {
        padding: 20px 0;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-name-main {
        font-size: 1.18rem;
    }
    .logo-name-sub {
        font-size: 0.62rem;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-tagline {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .business-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .presence-info-cards {
        grid-template-columns: 1fr;
    }
    .partners-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-content-card {
        padding: 40px 25px;
    }
    .testimonial-quote {
        font-size: 1.1rem;
    }
    .details-card {
        padding: 30px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    .header-logo {
        height: 44px;
    }
    .menu-toggle {
        width: 44px;
        height: 44px;
    }
    .menu-drawer {
        padding: 26px 22px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
    .modal-container {
        height: 90vh;
    }
    .modal-body {
        padding: 20px;
    }
    .admin-modal {
        padding: 16px;
    }
    .admin-modal-panel {
        padding: 22px;
    }
    .admin-modal-header,
    .admin-panel-toolbar,
    .admin-submission-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-submission-meta {
        grid-template-columns: 1fr;
    }
    .admin-dashboard-shell {
        width: min(100% - 28px, 1180px);
        padding-top: 18px;
    }
    .admin-dashboard-header,
    .admin-dashboard-table-header {
        align-items: flex-start;
        flex-direction: column;
    }
    .admin-dashboard-hero {
        grid-template-columns: 1fr;
    }
    .admin-dashboard-stat {
        align-items: flex-start;
        text-align: left;
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
    }
    .logo-link {
        gap: 10px;
    }
    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }
    .logo-name-main {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
    }
    .logo-name-sub {
        font-size: 0.54rem;
        letter-spacing: 0.16em;
    }
    .menu-drawer {
        width: 100vw;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .partners-grid-full {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
