/* ========================================
   ALPHA BETA CONSULTANCY — MASTER STYLES
   Skeuomorphic Design System
   ======================================== */

/* CSS Variables */
:root {
    --navy: #0A1628;
    --navy-light: #1E293B;
    --navy-dark: #060E1A;
    --gold: #C9A227;
    --gold-light: #E8D285;
    --gold-dark: #8B6914;
    --parchment: #F5F0E8;
    --paper: #FEFDFB;
    --leather: #5C4033;
    --success: #166534;
    --alert: #991B1B;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: var(--paper);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.preloader-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.preloader-logo {
    margin-bottom: 2rem;
}

.preloader-logo-svg {
    width: 120px;
    height: 48px;
}

.preloader-line {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.preloader-line-bar {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
}

.preloader-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.preloader-curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--navy);
    z-index: 2;
}

.preloader-curtain-left { left: 0; }
.preloader-curtain-right { right: 0; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-ab {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(145deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--gold-dark);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 8px rgba(201,162,39,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 6px 20px rgba(201,162,39,0.4);
}

/* Mobile Navigation */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-menu.active {
    display: block;
}

.nav-mobile-link {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-mobile-link:hover {
    color: var(--gold);
}

/* ========================================
   SKEUOMORPHIC COMPONENTS
   ======================================== */

/* Metallic Gold Button */
.skeuo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.skeuo-btn-gold {
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: var(--navy);
    border: 1px solid var(--gold-dark);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 4px rgba(0,0,0,0.2), 0 4px 12px rgba(201,162,39,0.25);
}

.skeuo-btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.skeuo-btn-gold:hover::before {
    left: 100%;
}

.skeuo-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 6px 20px rgba(201,162,39,0.4);
}

.skeuo-btn-gold:active {
    transform: translateY(-1px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.1);
}

.skeuo-btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.skeuo-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,162,39,0.05);
}

/* Skeuomorphic Card */
.skeuo-card {
    background: var(--paper);
    will-change: transform;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 2rem;
    box-shadow: 
        0 1px 2px rgba(0,0,0,0.05),
        0 4px 8px rgba(0,0,0,0.04),
        0 8px 16px rgba(0,0,0,0.03),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skeuo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.skeuo-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 4px 8px rgba(0,0,0,0.08),
        0 8px 24px rgba(0,0,0,0.06),
        0 16px 40px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.skeuo-card:hover::before {
    transform: scaleX(1);
}

/* Inset Input */
.skeuo-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    background: var(--parchment);
    border: 1px solid #D4CFC7;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    outline: none;
}

.skeuo-input:focus {
    border-color: var(--gold);
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.06),
        0 0 0 3px rgba(201,162,39,0.15);
}

.skeuo-input::placeholder {
    color: #999;
    font-weight: 300;
}

/* Gold Plate (Stats) */
.gold-plate {
    background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.4),
        0 4px 12px rgba(201,162,39,0.3),
        0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid var(--gold-dark);
    position: relative;
    overflow: hidden;
}

.gold-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
    border-radius: 12px 12px 0 0;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding: 0.25rem 0;
    position: relative;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-title-light {
    color: white;
}

.section-desc {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0f2847 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--gold) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--gold) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201,162,39,0.1);
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 50px;
}

.hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
    border: 1px solid rgba(201,162,39,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-trust-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.hero-trust-text strong {
    color: white;
    font-weight: 600;
    display: block;
}

/* Hero Visual (3D/Graphic) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,162,39,0.2), rgba(201,162,39,0.05));
    border: 1px solid rgba(201,162,39,0.15);
    opacity: 0.8;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border-color: rgba(255,255,255,0.1);
}

.hero-orb-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 15%;
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
}

.hero-orb {
    will-change: transform;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.05);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 3;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ========================================
   ABOUT / TRUST PILLARS SECTION
   ======================================== */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--paper) 0%, var(--parchment) 100%);
    position: relative;
    overflow: visible;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.pillar-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.pillar-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--paper), var(--parchment));
    box-shadow: 
        inset 0 2px 4px rgba(0,0,0,0.05),
        0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(201,162,39,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pillar-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(201,162,39,0.2);
}

.pillar-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.pillar-desc {
    font-size: 0.875rem;
    color: #777;
    line-height: 1.6;
}

/* ========================================
   SERVICES PAKISTAN
   ======================================== */
.services-pakistan {
    padding: 6rem 0;
    background: var(--paper);
    position: relative;
    overflow: visible;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(10,22,40,0.05), rgba(10,22,40,0.02));
    border: 1px solid rgba(10,22,40,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: white;
    border-color: var(--gold-dark);
    transform: rotate(5deg) scale(1.05);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

.service-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

/* ========================================
   SERVICES INTERNATIONAL
   ======================================== */
.services-intl {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-intl::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-intl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.intl-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.intl-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.intl-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

.intl-panel-dubai::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.intl-panel-qatar::before {
    background: linear-gradient(90deg, #8B1538, #C41E3A);
}

.intl-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.intl-panel-flag {
    width: 48px;
    height: 36px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.intl-panel-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.intl-panel-title span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.intl-services-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.intl-services-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0;
}

.intl-services-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: visible;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201,162,39,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,162,39,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(201,162,39,0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--parchment) 0%, var(--paper) 100%);
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-slider {
    position: relative;
    padding: 2rem 0;
}

.testimonial-slide {
    text-align: center;
    padding: 2rem;
}

.testimonial-quote-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-role {
    font-size: 0.8rem;
    color: #888;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background: var(--gold);
    opacity: 1;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    padding: 6rem 0;
    background: var(--paper);
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-ceo-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
}

.team-ceo-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 
        0 8px 30px rgba(0,0,0,0.15),
        0 0 0 8px rgba(201,162,39,0.1);
    transition: all 0.4s ease;
}

.team-ceo-card:hover .team-ceo-avatar {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.2),
        0 0 0 12px rgba(201,162,39,0.15);
}

.team-ceo-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.team-ceo-role {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.team-ceo-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 0.5rem;
}

.form-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(22, 101, 52, 0.15);
    border: 1px solid rgba(22, 101, 52, 0.3);
    color: #4ade80;
}

.form-message.error {
    display: block;
    background: rgba(153, 27, 27, 0.15);
    border: 1px solid rgba(153, 27, 27, 0.3);
    color: #f87171;
}

/* Contact Info */
.contact-info {
    padding-top: 1rem;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
    border: 1px solid rgba(201,162,39,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.contact-info-content a:hover {
    color: var(--gold);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-dark);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-ab {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.footer-logo-text small {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--gold);
    border-color: var(--gold-dark);
    color: var(--navy);
    transform: translateY(-2px) rotate(5deg);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-flag {
    display: inline-block;
    width: 24px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    margin-right: 0.5rem;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
}

.footer-contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.footer-contact a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-credit {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-credit a {
    color: var(--gold);
    font-weight: 500;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ========================================
   WHATSAPP FAB
   ======================================== */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #25D366;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.whatsapp-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    padding-right: 1.5rem;
}

.whatsapp-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    background: #25D366;
    opacity: 0.3;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.1; }
}

.whatsapp-fab-icon {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-fab-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.whatsapp-fab:hover .whatsapp-fab-label {
    max-width: 200px;
    opacity: 1;
    margin-right: 0.5rem;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    border: 1px solid var(--gold-dark);
    box-shadow: 0 4px 15px rgba(201,162,39,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201,162,39,0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 5rem 1.5rem 3rem;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group .skeuo-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-trust-badges {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .intl-panels {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-fab {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .back-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .intl-services-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-scroll-line,
    .whatsapp-fab-pulse,
    .preloader-line-bar {
        animation: none !important;
    }
}

/* ========================================
   NOISE TEXTURE OVERLAY
   ======================================== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
