/* ============================
   Prism AI — Modern Bright Theme
   Brand Colors:
   - Primary Maroon/Crimson: #8B1A4A
   - Vibrant Gold/Amber:     #F59E0B
   - Electric Teal:          #0D9488
   - Deep Indigo Accent:     #4F46E5
   - Light BG:               #F8FAFC
   - White:                  #FFFFFF
   - Dark Text:              #0F172A
   - Muted Text:             #64748B
   ============================ */

:root {
    --maroon:      #7B1C3E;
    --maroon-light:#9E2250;
    --gold:        #B8962E;
    --gold-light:  #D4AF5A;
    --teal:        #1D7A7A;
    --teal-light:  #2A9D9D;
    --indigo:      #4F46E5;
    --indigo-light:#818CF8;
    --bg:          #F8FAFC;
    --bg-card:     #FFFFFF;
    --bg-section:  #F1F5F9;
    --dark:        #0F172A;
    --dark-2:      #1E293B;
    --text:        #1E293B;
    --text-muted:  #64748B;
    --border:      #E2E8F0;
    --border-strong: #CBD5E1;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg:   0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.08);
    --shadow-xl:   0 32px 64px rgba(0,0,0,0.15);
    --gradient-hero:    linear-gradient(135deg, #6B1535 0%, #7B1C3E 40%, #1D7A7A 100%);
    --gradient-maroon:  linear-gradient(135deg, #7B1C3E, #9E2250);
    --gradient-gold:    linear-gradient(135deg, #B8962E, #D4AF5A);
    --gradient-teal:    linear-gradient(135deg, #1D7A7A, #2A9D9D);
    --gradient-indigo:  linear-gradient(135deg, #4F46E5, #818CF8);
    --gradient-card:    linear-gradient(135deg, rgba(123,28,62,0.06), rgba(29,122,122,0.06));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--text-muted); font-size: 1rem; }
a  { text-decoration: none; color: inherit; transition: color 0.3s ease; }

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-padding { padding: 6rem 0; }
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title h2 { color: var(--dark); margin-bottom: 0.75rem; }
.section-title p { max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.tag-maroon  { background: rgba(139,26,74,0.1);  color: var(--maroon);  border: 1px solid rgba(139,26,74,0.25); }
.tag-gold    { background: rgba(245,158,11,0.12); color: #92400E;        border: 1px solid rgba(245,158,11,0.35); }
.tag-teal    { background: rgba(13,148,136,0.1);  color: var(--teal);    border: 1px solid rgba(13,148,136,0.25); }
.tag-indigo  { background: rgba(79,70,229,0.1);   color: var(--indigo);  border: 1px solid rgba(79,70,229,0.25); }

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, #6B1535 0%, #8B1A4A 40%, #1D7A7A 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(107,21,53,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107,21,53,0.45);
}
.btn-outline {
    background: #fff;
    color: var(--maroon);
    border: 2px solid var(--maroon);
}
.btn-outline:hover {
    background: var(--maroon);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.btn-white {
    background: #fff;
    color: var(--dark);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ---- Gradient Text ---- */
.gradient-text {
    background: linear-gradient(135deg, #7B1C3E 0%, #B8962E 50%, #1D7A7A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-text   { color: var(--gold); }
.teal-text   { color: var(--teal); }
.maroon-text { color: var(--maroon); }
.indigo-text { color: var(--indigo); }

/* ==============================
   NAVIGATION
============================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    transition: all 0.35s ease;
    background: transparent;
}
#navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.nav-logo img {
    height: 52px;
    width: 52px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}
.nav-logo-text .prism { color: #fff; }
.nav-logo-text .ai    { color: #D4AF5A; }

/* When navbar is scrolled/solid, use brand colors */
#navbar.scrolled .nav-logo-text .prism { color: var(--maroon); }
#navbar.scrolled .nav-logo-text .ai    { color: var(--indigo); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}
#navbar.scrolled .nav-links a { color: var(--text-muted); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--maroon) !important; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, #6B1535, #8B1A4A) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 16px rgba(139,26,74,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { opacity: 0.9; transform: translateY(-2px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}
.hamburger span {
    width: 25px; height: 2.5px;
    background: var(--maroon);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ==============================
   HERO SECTION
============================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(150deg, #5C1030 0%, #7B1C3E 35%, #9E2250 55%, #1A6060 80%, #1D7A7A 100%);
}

/* Geometric background shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}
.hero-shape-1 {
    width: 600px; height: 600px;
    background: #B8962E;
    top: -200px; right: -100px;
    opacity: 0.15;
}
.hero-shape-2 {
    width: 400px; height: 400px;
    background: #1D7A7A;
    bottom: -100px; left: -100px;
    opacity: 0.2;
}
.hero-shape-3 {
    width: 350px; height: 350px;
    background: #7B1C3E;
    top: 50%; left: 38%;
    transform: translate(-50%,-50%);
    opacity: 0.12;
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-tag { margin-bottom: 1.5rem; }
.hero-content h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content h1 .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.18rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
    color: rgba(255,255,255,0.85);
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item { text-align: left; }
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #D4AF5A;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* Floating card on hero */
.hero-float-card {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: none;
}
@media (min-width: 1100px) { .hero-float-card { display: block; } }

.float-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.float-card-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}
.float-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.float-service-item:last-child { border-bottom: none; }
.float-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-gold   { background: var(--gold-light); }
.dot-teal   { background: var(--teal-light); }
.dot-white  { background: rgba(255,255,255,0.8); }
.dot-indigo { background: var(--indigo-light); }
.float-service-item span {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
}

/* ==============================
   ABOUT SECTION
============================== */
#about { background: var(--bg-card); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-visual { position: relative; }

.about-logo-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}
.about-logo-clean img {
    max-width: 360px;
    width: 100%;
    filter: drop-shadow(0 8px 32px rgba(123,28,62,0.18));
}

.about-logo-wrap {
    background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-logo-wrap::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(139,26,74,0.08), transparent 70%);
    border-radius: 50%;
}
.about-logo-wrap::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(13,148,136,0.08), transparent 70%);
    border-radius: 50%;
}
.about-logo-wrap img {
    max-width: 320px;
    width: 100%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(123,28,62,0.15));
}

/* Floating badge on logo */
.about-badge {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: linear-gradient(135deg, #6B1535, #8B1A4A);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.about-text { padding-left: 1rem; }
.about-text h2 { color: var(--dark); margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.85; }

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s;
}
.highlight-item:hover {
    border-color: var(--maroon);
    background: rgba(139,26,74,0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.highlight-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #6B1535, #8B1A4A);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.highlight-text { font-size: 0.85rem; color: var(--text); font-weight: 600; }

/* ==============================
   SERVICES SECTION
============================== */
#services { background: var(--bg-section); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.25rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.service-card.card-maroon::after  { background: linear-gradient(135deg, #6B1535, #8B1A4A); }
.service-card.card-teal::after    { background: var(--gradient-teal); }
.service-card.card-gold::after    { background: var(--gradient-gold); }
.service-card.card-indigo::after  { background: var(--gradient-indigo); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 60px; height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}
.icon-maroon { background: linear-gradient(135deg, rgba(139,26,74,0.12), rgba(194,24,91,0.08)); border: 1px solid rgba(139,26,74,0.2); }
.icon-teal   { background: linear-gradient(135deg, rgba(13,148,136,0.12), rgba(45,212,191,0.08)); border: 1px solid rgba(13,148,136,0.2); }
.icon-gold   { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(252,211,77,0.08)); border: 1px solid rgba(245,158,11,0.2); }
.icon-indigo { background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(129,140,248,0.08)); border: 1px solid rgba(79,70,229,0.2); }

.service-card h3 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p  { font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; }

.service-list { list-style: none; padding: 0; }
.service-list li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 0.4rem 0;
    padding-left: 1.3rem;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    font-weight: 800;
    font-size: 1rem;
}
.card-maroon .service-list li::before  { color: var(--maroon); }
.card-teal   .service-list li::before  { color: var(--teal); }
.card-gold   .service-list li::before  { color: var(--gold); }
.card-indigo .service-list li::before  { color: var(--indigo); }

/* ==============================
   MARKET FOCUS SECTION
============================== */
#markets { background: var(--bg-card); }

.markets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.market-card {
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    box-shadow: var(--shadow-md);
}
.market-card.qatar {
    background: linear-gradient(135deg, #5C1030 0%, #7B1C3E 100%);
    color: #fff;
}
.market-card.saudi {
    background: linear-gradient(135deg, #1D7A7A 0%, #0891B2 100%);
    color: #fff;
}
.market-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Decorative circle */
.market-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.market-card::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.market-flag { font-size: 3.5rem; display: block; margin-bottom: 1rem; position: relative; z-index: 1; }
.market-card h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.4rem; position: relative; z-index: 1; }
.market-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 1.25rem;
    display: block;
    position: relative;
    z-index: 1;
}
.market-card p {
    color: rgba(255,255,255,0.85);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}
.market-stat {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
}
.market-stat-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.market-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.75); line-height: 1.3; }

/* ==============================
   INDUSTRY FOCUS SECTION
============================== */
#industries { background: var(--bg); }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--bg-card);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7B1C3E, #B8962E, #1D7A7A);
    opacity: 0;
    transition: opacity 0.3s;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.industry-card:hover::before { opacity: 1; }

.industry-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.industry-card h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.ind-tag {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(123,28,62,0.08), rgba(29,122,122,0.08));
    color: #7B1C3E;
    border: 1px solid rgba(123,28,62,0.15);
    letter-spacing: 0.3px;
}

/* ==============================
   WHY CHOOSE US
============================== */
#why-us { background: var(--bg-section); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: all 0.35s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(135deg, #8B1A4A, #B8962E, #1D7A7A);
    transform: scaleX(0);
    transition: transform 0.35s;
    border-radius: 0 0 16px 16px;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6B1535, #8B1A4A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 20px rgba(107,21,53,0.3);
}
.why-card h3 { color: var(--dark); margin-bottom: 0.75rem; font-size: 1.05rem; }
.why-card p  { font-size: 0.9rem; line-height: 1.75; }

/* ==============================
   CONTACT SECTION
============================== */
#contact { background: var(--bg-card); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 { color: var(--dark); margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2.5rem; font-size: 1rem; line-height: 1.85; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #6B1535, #8B1A4A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(107,21,53,0.25);
}
.contact-item-text strong { display: block; color: var(--dark); font-size: 0.88rem; margin-bottom: 0.2rem; }
.contact-item-text span   { color: var(--text-muted); font-size: 0.9rem; }

.contact-form {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form h3 {
    color: var(--dark);
    margin-bottom: 1.75rem;
    font-size: 1.3rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.9rem;
    transition: all 0.3s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px rgba(139,26,74,0.08);
}
.form-group select option { background: var(--bg-card); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6B1535 0%, #8B1A4A 50%, #1D7A7A 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(107,21,53,0.35);
    font-family: inherit;
}
.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107,21,53,0.45);
}

/* ==============================
   FOOTER
============================== */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img { height: 70px; width: 70px; object-fit: contain; margin-bottom: 1rem; background: #fff; border-radius: 12px; padding: 6px; }
.footer-brand p   { font-size: 0.88rem; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.55); }

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold-light); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
    .about-grid,
    .markets-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
    .about-text    { padding-left: 0; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links a    { color: var(--text-muted) !important; }
    .hamburger      { display: flex; }
    .form-row       { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom  { flex-direction: column; text-align: center; }
    .about-highlights { grid-template-columns: 1fr; }
    .hero-stats     { gap: 1.5rem; }
}

@media (max-width: 480px) {
    .section-padding  { padding: 4rem 0; }
    .hero-buttons     { flex-direction: column; }
    .hero-buttons .btn{ text-align: center; }
    .markets-grid     { grid-template-columns: 1fr; }
    .market-stats     { grid-template-columns: 1fr 1fr; }
    .services-grid    { grid-template-columns: 1fr; }
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50%       { transform: translateY(-53%) translateX(4px); }
}
.hero-float-card { animation: floatY 4s ease-in-out infinite; }

.animate-fade-up { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==============================
   SCROLL TO TOP BUTTON
============================== */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, #6B1535, #8B1A4A);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover   { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
