/* Adisa Saadu Chambers - Static Site Stylesheet */
/* Premium Law Firm Design System */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   CSS Custom Properties (Design Tokens)
   ======================================== */
:root {
    /* Core Colors */
    --navy-deep: hsl(220, 35%, 18%);
    --navy-medium: hsl(220, 35%, 22%);
    --navy-light: hsl(220, 25%, 35%);
    
    --gold-primary: hsl(38, 60%, 50%);
    --gold-light: hsl(45, 55%, 65%);
    --gold-dark: hsl(38, 65%, 40%);
    
    --cream: hsl(45, 40%, 96%);
    --cream-dark: hsl(45, 30%, 92%);
    
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(220, 25%, 15%);
    --white: #ffffff;
    --muted: hsl(220, 15%, 45%);
    --border: hsl(220, 15%, 88%);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(43, 58, 82, 0.04);
    --shadow-md: 0 4px 12px -2px rgba(43, 58, 82, 0.08);
    --shadow-lg: 0 10px 30px -5px rgba(43, 58, 82, 0.12);
    --shadow-xl: 0 25px 50px -12px rgba(43, 58, 82, 0.2);
    --shadow-gold: 0 4px 20px -4px rgba(201, 162, 39, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.text-gold { color: var(--gold-primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-navy { color: var(--navy-deep); }

.bg-navy { background-color: var(--navy-deep); }
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }
.bg-background { background-color: var(--background); }

.font-heading { font-family: var(--font-heading); }

/* ========================================
   Header Styles
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
    background-color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-base);
}

.header.scrolled .logo-name {
    color: var(--navy-deep);
}

.logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    transition: color var(--transition-base);
}

.header.scrolled .nav-link {
    color: var(--foreground);
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--gold-primary);
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .header-cta { display: flex; }
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--transition-base);
}

.header.scrolled .social-icon {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.social-icon:hover {
    background-color: #22c55e;
    color: var(--white);
}

.header-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 0.25rem;
}

.header.scrolled .header-divider {
    background-color: var(--border);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-base);
}

.header.scrolled .phone-link {
    color: var(--foreground);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
    display: flex;
    padding: 0.5rem;
    color: var(--white);
}

.header.scrolled .mobile-toggle {
    color: var(--foreground);
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--navy-deep);
    border-left: 1px solid var(--navy-light);
    padding: 1.5rem;
    transition: right var(--transition-base);
    z-index: 1001;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-nav-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
    background-color: var(--navy-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-logo-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
}

.mobile-nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.mobile-close {
    padding: 0.5rem;
    color: var(--white);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: rgba(var(--gold-primary), 0.1);
    color: var(--gold-primary);
}

.mobile-nav-link.active {
    background-color: rgba(201, 162, 39, 0.1);
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.mobile-phone-link:hover {
    color: var(--gold-primary);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-gold {
    background-color: var(--gold-primary);
    color: var(--navy-deep);
}

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

.btn-navy {
    background-color: var(--navy-deep);
    color: var(--white);
}

.btn-navy:hover {
    background-color: var(--navy-medium);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: transparent;
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-navy {
    border: 2px solid var(--navy-deep);
    background-color: transparent;
    color: var(--navy-deep);
}

.btn-outline-navy:hover {
    background-color: var(--navy-deep);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--navy-deep);
    padding-top: 6rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy-deep), rgba(43, 58, 82, 0.95), rgba(43, 58, 82, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-label-line {
    width: 48px;
    height: 2px;
    background-color: var(--gold-primary);
}

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

.hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
    color: var(--gold-primary);
}

@media (min-width: 640px) {
    .hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 36rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-contact-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: rgba(201, 162, 39, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.hero-contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-contact-number {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.hero-contact-number:hover {
    color: var(--gold-primary);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

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

.hero-scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.hero-scroll-dot {
    width: 6px;
    height: 12px;
    background-color: var(--gold-primary);
    border-radius: var(--radius-full);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   Page Hero (Sub-pages)
   ======================================== */
.page-hero {
    position: relative;
    padding: 8rem 0 5rem;
    background-color: var(--navy-deep);
}

@media (min-width: 1024px) {
    .page-hero { padding: 10rem 0 7rem; }
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.page-hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.page-hero-title span {
    display: block;
    color: var(--gold-primary);
}

@media (min-width: 640px) {
    .page-hero-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .page-hero-title { font-size: 3.75rem; }
}

.page-hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.75;
}

@media (min-width: 1024px) {
    .page-hero-description { font-size: 1.25rem; }
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .section { padding: 7rem 0; }
}

.section-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-label-centered {
    justify-content: center;
}

.section-label-line {
    width: 48px;
    height: 2px;
    background-color: var(--gold-primary);
}

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

.section-title {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3rem; }
}

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

.section-description {
    color: var(--muted);
    font-size: 1.125rem;
    line-height: 1.75;
    max-width: 48rem;
}

.section-description-white {
    color: rgba(255, 255, 255, 0.8);
}

.section-centered {
    text-align: center;
    margin: 0 auto;
}

/* ========================================
   Grid Layouts
   ======================================== */
.grid {
    display: grid;
    gap: 2rem;
}

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

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   Card Styles
   ======================================== */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-content {
    padding: 1.5rem;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    background-color: rgba(43, 58, 82, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background-color var(--transition-base);
}

.card:hover .card-icon {
    background-color: rgba(201, 162, 39, 0.1);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy-deep);
    transition: color var(--transition-base);
}

.card:hover .card-icon svg {
    color: var(--gold-primary);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

.card:hover .card-title {
    color: var(--gold-primary);
}

.card-description {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Team Card */
.team-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
}

.team-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.team-card-image-top img {
    object-position: top;
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 58, 82, 0.9), rgba(43, 58, 82, 0.3), transparent);
}

.team-card-social {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all var(--transition-base);
}

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

.team-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.team-social-link:hover {
    background-color: var(--gold-primary);
    color: var(--navy-deep);
}

.team-card-content {
    padding: 1.5rem;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.team-card-credentials {
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card-specialty {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Value Card */
.value-card {
    text-align: center;
}

.value-card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-2xl);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.value-card:hover .value-card-icon {
    border-color: rgba(201, 162, 39, 0.5);
    background-color: rgba(201, 162, 39, 0.1);
}

.value-card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gold-primary);
}

.value-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.value-card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Contact Info Card */
.contact-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    transition: box-shadow var(--transition-base);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xl);
    background-color: rgba(43, 58, 82, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.contact-card-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-card-content {
    color: var(--muted);
    font-size: 0.875rem;
    white-space: pre-line;
}

.contact-card-link {
    color: var(--muted);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.contact-card-link:hover {
    color: var(--gold-primary);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .stat-number { font-size: 3rem; }
}

.stat-label {
    color: var(--muted);
    font-weight: 500;
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background-color: var(--gold-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

@media (min-width: 1024px) {
    .about-image-accent {
        width: 12rem;
        height: 12rem;
    }
}

.about-stats {
    position: absolute;
    bottom: -2rem;
    left: 2rem;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.about-stats-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.about-stats-label {
    color: var(--muted);
    font-size: 0.875rem;
}

.about-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-content p:last-of-type {
    margin-bottom: 2rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background-color: var(--navy-deep);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cta { padding: 4rem; }
}

.cta-circle {
    position: absolute;
    border-radius: var(--radius-full);
    background-color: rgba(201, 162, 39, 0.1);
}

.cta-circle-1 {
    width: 16rem;
    height: 16rem;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
}

.cta-circle-2 {
    width: 16rem;
    height: 16rem;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .cta-title { font-size: 3rem; }
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form-card {
    background-color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--white);
    color: var(--foreground);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted);
}

.form-textarea {
    resize: none;
    min-height: 120px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    text-align: center;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background-color: rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.form-success-icon svg {
    width: 32px;
    height: 32px;
    color: #22c55e;
}

.form-success-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.form-success-text {
    color: var(--muted);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    height: 24rem;
    background-color: var(--cream);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter var(--transition-slow);
}

.map-section:hover iframe {
    filter: grayscale(0);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--navy-deep);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
}

.footer-brand {
    max-width: 20rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold-primary);
    background-color: var(--navy-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold-primary);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-primary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-accent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-accent-line {
    width: 64px;
    height: 2px;
    background-color: var(--gold-primary);
}

.footer-accent-text {
    color: var(--gold-primary);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

.footer-link svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    margin-left: -1.25rem;
    transition: all var(--transition-fast);
}

.footer-link:hover svg {
    opacity: 1;
    margin-left: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--gold-primary);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.footer-social-link:hover {
    background-color: var(--gold-primary);
    color: var(--navy-deep);
}

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

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

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal-link:hover {
    color: var(--gold-primary);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
}

/* ========================================
   Quote Section
   ======================================== */
.quote-section {
    padding: 4rem 0;
    background-color: var(--cream);
}

.quote-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .quote-text { font-size: 1.5rem; }
}

.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.quote-attribution-line {
    width: 64px;
    height: 2px;
    background-color: var(--gold-primary);
}

.quote-attribution-text {
    color: var(--gold-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ========================================
   Join Team Section
   ======================================== */
.join-team {
    padding: 4rem 0;
    background-color: var(--cream);
}

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

.join-team-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .join-team-title { font-size: 2.25rem; }
}

.join-team-text {
    color: var(--muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ========================================
   Hidden class
   ======================================== */
.hidden {
    display: none !important;
}

/* ========================================
   Spinner
   ======================================== */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background-color: var(--navy-deep);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--transition-base);
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    background-color: #22c55e;
}

.toast-error {
    background-color: #ef4444;
}

.toast svg {
    width: 20px;
    height: 20px;
}
