﻿/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* CSS Custom Properties */
:root {
    /* About Us Color Scheme - Matching Homepage */
    --primary: #ffc400;
    --primary-accent: #ff9500;
    --gradient: linear-gradient(135deg, #ffc400, #ff9500);
    --primary-dark: #e6b000;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --background-dark: #0a0d14;
    --background-secondary: #1a1f2b;
    --background-tertiary: #2a2f3b;
    --background-light: #f8fafc;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #ffc400 0%, #ff9500 100%);
    --gradient-dark: linear-gradient(135deg, #0a0d14 0%, #1a1f2b 100%);
    --glass: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation Styles */
.navbar { position:fixed; top:0; left:0; right:0; z-index:100; background:#0a0d14; border-bottom:1px solid rgba(255,196,0,0.3); transition:all .3s ease; }
.navbar.scrolled { background:#0a0d14; box-shadow:0 4px 30px -5px rgba(0,0,0,0.5); }
.nav-inner { display:grid; grid-template-columns: 260px 1fr auto; align-items:center; height:70px; padding:0; }
.navbar .logo { display:flex; align-items:center; cursor:pointer; font-weight:800; font-size:22px; letter-spacing:.5px; color: #ffffff; gap:12px; padding:0 20px; justify-content:center; background:#0a0d14; height:70px; border-right:1px solid rgba(255,196,0,0.3); }
.logo span { line-height:1; display:flex; align-items:center; }
.navbar .logo-icon { width:42px; height:42px; border-radius:10px; background:var(--gradient); display:flex; align-items:center; justify-content:center; font-weight:800; font-size:20px; line-height:1; color:#000; box-shadow:0 4px 15px rgba(255,196,0,0.4); }
.nav-links { display:flex; align-items:center; gap:16px; justify-content:center; padding:0 20px; }
.nav-links button, .nav-links a:not(.cta) { background:none; border:none; font-weight:600; font-size:15px; cursor:pointer; color: #ffffff; position:relative; padding:8px 8px; transition:color .3s; text-decoration:none; white-space:nowrap; text-align:center; }
.navbar.scrolled .nav-links button, .navbar.scrolled .nav-links a:not(.cta) { color:#ffffff; }
.nav-links button:hover, .nav-links a:not(.cta):hover { color:var(--primary-accent); }
.nav-links a:not(.cta).active { color:var(--primary-accent); }
.nav-links a:not(.cta)::after { content:''; position:absolute; bottom:2px; left:50%; transform:translateX(-50%); width:0; height:2px; background:var(--gradient); transition:width .3s ease; }
.nav-links a:not(.cta):hover::after, .nav-links a:not(.cta).active::after { width:80%; }
.nav-links .cta { background:var(--gradient); color:#000; font-weight:700; padding:12px 20px; border-radius:50px; text-decoration:none; font-size:14px; box-shadow:0 6px 18px rgba(255,196,0,0.4); transition:.3s; margin-left:12px; }
.nav-links .cta:hover { filter:brightness(.9); transform:translateY(-2px); }

.nav-cta { background:var(--gradient); color:#000; font-weight:700; padding:12px 26px; border-radius:50px; text-decoration:none; font-size:14px; box-shadow:0 6px 18px rgba(255,196,0,0.4); transition:.3s; margin-right:32px; white-space:nowrap; }
.nav-cta:hover { filter:brightness(.9); transform:translateY(-2px); }

.mobile-toggle { display:none; background:none; border:none; font-size:30px; cursor:pointer; color: #ffffff; margin-right:20px; }
.navbar.scrolled .mobile-toggle { color:#ffffff; }
.mobile-menu { display:none; flex-direction:column; background:rgba(10, 13, 20, 0.95); backdrop-filter:blur(10px); padding:16px 20px; border-bottom:1px solid rgba(255,196,0,0.2); }
.mobile-menu.open { display:flex; }
.mobile-menu button, .mobile-menu a { background:none; border:none; padding:14px 4px; font-size:16px; font-weight:600; text-align:left; cursor:pointer; color: #ffffff; border-bottom:1px solid rgba(255,255,255,0.1); text-decoration:none; display:block; width:100%; }
/* Sidebar Navigation */
.page-sidebar {
  position: fixed;
  left: 0;
  top: 70px;
  width: 260px;
  height: calc(100vh - 70px);
  background: linear-gradient(180deg, #1a1f2b 0%, #0a0d14 100%);
  border-right: 1px solid rgba(255, 196, 0, 0.1);
  padding: 32px 0;
  z-index: 90;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

.sidebar-content {
  padding: 0 20px;
}

.sidebar-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  padding: 0 12px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-link .icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.sidebar-link:hover {
  background: rgba(255, 196, 0, 0.1);
  color: var(--accent-gold);
  transform: translateX(4px);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-accent));
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
}

.sidebar-link.active .icon {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

/* Content shift for sidebar */
body {
  padding-left: 260px;
}

.mobile-menu a.cta { background:var(--gradient); color:#000; text-align:center; border:none; margin-top:8px; border-radius:10px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.55) saturate(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.65)),radial-gradient(circle at 30% 70%, rgba(255,196,0,0.12) 0%, transparent 55%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Section */
.company-story {
    padding: 8rem 0;
    background: var(--background-secondary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.story-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision-card {
    background: var(--background-tertiary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--primary);
}

.vision-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
}

.team-member {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 196, 0, 0.2);
}

.team-member.featured {
    background: rgba(255, 196, 0, 0.1);
    border: 2px solid var(--primary);
}

.member-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.member-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.member-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.member-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.member-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.member-achievements h4,
.member-expertise h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.member-achievements ul {
    list-style: none;
    padding-left: 0;
}

.member-achievements li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.member-achievements li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Override to hide checkmarks */
.member-achievements li::before {
    content: '' !important;
    display: none !important;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.expertise-tags span {
    background: rgba(255, 196, 0, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--primary);
}

.member-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.image-placeholder {
    width: 200px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
}

.placeholder-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

.member-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: var(--background-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--background-tertiary);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Recognition Section */
.recognition-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    color: var(--text-light);
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.recognition-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 196, 0, 0.2);
    transition: all 0.3s ease;
}

.recognition-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.recognition-year {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.recognition-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.recognition-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-content > p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-primary {
    background: var(--background-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-large);
}

.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item strong {
    color: var(--text-light);
}

/* Responsive Design - Enhanced Mobile First Approach */

/* Large Desktop - 1920px+ */
@media (min-width: 1920px) {
    .container { max-width: 1400px; }
    .hero-title { font-size: 4rem; }
    .section-title { font-size: 3.5rem; }
    .team-section, .company-story, .values-section, .recognition-section, .cta-section { 
        padding: 120px 0; 
    }
    .story-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .values-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
    .recognition-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

/* Desktop - 1200px to 1919px */
@media (min-width: 1200px) and (max-width: 1919px) {
    .container { max-width: 1200px; }
    .story-grid { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; }
    .values-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
    .recognition-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .team-section, .company-story, .values-section, .recognition-section, .cta-section { 
        padding: 100px 0; 
    }
}

/* Tablet Landscape - 1024px to 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container { max-width: 1000px; padding: 0 20px; }
    .story-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .story-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .recognition-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .member-content { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
    .team-section, .company-story, .values-section, .recognition-section, .cta-section { 
        padding: 80px 0; 
    }
}

/* Desktop Small - hide CTA button */
@media (max-width: 1199px) {
    .nav-cta { display: none !important; }
}

/* Tablet Portrait - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Global tablet fixes */
    * { box-sizing: border-box; }
    html, body { overflow-x: hidden !important; width: 100% !important; }
    body { margin-left: 0 !important; padding-left: 0 !important; }
    
    /* Hide sidebar on tablets */
    .page-sidebar { display: none !important; }
    main { margin-left: 0 !important; width: 100% !important; }
    .hero, .section, .container { width: 100% !important; max-width: 100% !important; }
    
    /* Navbar */
    .nav-cta { display: none !important; }
    .nav-inner { grid-template-columns: 1fr auto; }
    .container { max-width: 100%; padding: 0 24px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; font-size: 26px; padding: 20px; }
    
    .hero-title { font-size: clamp(2.5rem, 6vw, 3.2rem); }
    .section-title { font-size: clamp(2.2rem, 5vw, 2.8rem); }
    
    .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .recognition-grid { grid-template-columns: 1fr; gap: 2rem; }
    .member-content { grid-template-columns: 1fr; gap: 2rem; }
    
    .team-member { padding: 2.5rem; }
    .value-card { padding: 2.5rem; }
    
    .cta-buttons { flex-direction: column; gap: 1rem; align-items: center; }
    .trust-indicators { flex-direction: column; gap: 1rem; text-align: center; }
    
    .team-section, .company-story, .values-section, .recognition-section, .cta-section { 
        padding: 70px 0; 
    }
}

/* Mobile Large - 480px to 767px */
@media (min-width: 480px) and (max-width: 767px) {
    /* Hide sidebar */
    .page-sidebar { display: none !important; }
    body { margin-left: 0 !important; padding-left: 0 !important; overflow-x: hidden; }
    main { margin-left: 0 !important; width: 100%; }
    .hero, .section, .container { width: 100%; max-width: 100%; box-sizing: border-box; }
    .container { max-width: 100%; padding: 0 12px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
    .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    .section-header p { font-size: clamp(1rem, 4vw, 1.3rem); }
    
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .story-stats { grid-template-columns: 1fr; gap: 1.5rem; }
    .values-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .recognition-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .member-content { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .member-image { order: -1; }
    .image-placeholder { width: 150px; height: 180px; margin: 0 auto; }
    .member-stats { gap: 1rem; flex-direction: column; }
    
    .team-member { padding: 2rem; }
    .value-card { padding: 2rem; }
    
    .cta-buttons { flex-direction: column; gap: 1rem; align-items: center; }
    .trust-indicators { flex-direction: column; gap: 1rem; text-align: center; }
    
    .team-section, .company-story, .values-section, .recognition-section, .cta-section { 
        padding: 60px 0; 
    }
}

/* Mobile Small - 320px to 479px */
@media (max-width: 479px) {
  /* Global mobile fixes */
  * { max-width: 100%; box-sizing: border-box; }
  html { overflow-x: hidden !important; }
  body { 
    margin-left: 0 !important; 
    padding-left: 0 !important; 
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    font-size: 14px;
  }
  img { max-width: 100% !important; height: auto; }
  
  /* Hide sidebar on mobile */
  .page-sidebar { display: none !important; }
  main { margin-left: 0 !important; width: 100% !important; padding: 0 !important; }
  .hero, .section, .container { 
    width: 100% !important; 
    max-width: 100vw !important; 
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Navigation optimized */
  .navbar { padding: 0; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .mobile-toggle { display: block !important; font-size: 28px; padding: 20px; margin: 0; }
  .logo { font-size: 16px; padding: 0 16px; }
  
  /* Mobile optimizations */
  body { font-size: 15px; }
  .container { padding: 0 16px; }
    .container { padding: 0 8px; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    
    .hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); line-height: 1.2; }
    .section-title { font-size: clamp(1.5rem, 7vw, 2rem); line-height: 1.3; }
    .section-header p { font-size: clamp(0.9rem, 4vw, 1.1rem); }
    .member-name { font-size: clamp(1.6rem, 6vw, 2rem); }
    
    .hero-content { padding: 0 8px; }
    
    .story-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .story-stats { grid-template-columns: 1fr; gap: 1rem; }
    .values-grid { grid-template-columns: 1fr; gap: 1rem; }
    .recognition-grid { grid-template-columns: 1fr; gap: 1rem; }
    .member-content { grid-template-columns: 1fr; gap: 1rem; }
    
    .member-image { order: -1; }
    .image-placeholder { width: 120px; height: 150px; margin: 0 auto; }
    .member-stats { gap: 0.5rem; flex-direction: column; text-align: center; }
    
    .team-member { padding: 1.5rem; }
    .value-card { padding: 1.5rem; }
    
    .cta-buttons { 
        flex-direction: column; 
        gap: 0.8rem; 
        align-items: center;
        width: 100%;
    }
    .btn { width: 100%; max-width: 280px; padding: 12px 20px; font-size: 14px; }
    
    .trust-indicators { 
        flex-direction: column; 
        gap: 0.8rem; 
        text-align: center; 
    }
    
    .team-section, .company-story, .values-section, .recognition-section, .cta-section { 
        padding: 50px 0; 
    }
    
    /* Navigation improvements for small screens */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--background-dark);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Footer Styles */
.footer-enhanced {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #cbd5e1;
  position: relative;
}

.footer-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 196, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 800;
  font-size: 22px;
  color: #ffffff;
}

.footer-brand .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 196, 0, 0.4);
}

.footer-brand .logo span {
  line-height: 1;
}

.footer-brand p {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 25px;
}

.footer-emergency {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.emergency-label {
  font-size: 12px;
  font-weight: 800;
  color: #ffc400;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.emergency-phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emergency-phone:hover {
  color: #ffc400;
  transform: scale(1.05);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffc400;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
  white-space: nowrap;
}

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-column a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-legal span {
  color: #64748b;
  font-size: 14px;
}

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

.legal-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffc400;
}

.footer-final-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.15), rgba(255, 149, 0, 0.1));
  border: 2px solid rgba(255, 196, 0, 0.4);
  border-radius: 16px;
  padding: 18px 30px;
  box-shadow: 0 8px 25px -8px rgba(255, 196, 0, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.footer-final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -10px rgba(255, 196, 0, 0.4);
}

.final-cta-text {
  font-size: 12px;
  font-weight: 800;
  color: #ffc400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta-phone {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.final-cta-phone:hover {
  color: #ffc400;
  transform: scale(1.05);
}

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