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

:root {
    --navy: #0B1D3A;
    --navy-light: #132B50;
    --gold: #C8943E;
    --gold-light: #E0B668;
    --gold-dark: #A67A2E;
    --white: #FFFFFF;
    --off-white: #F8F7F4;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 600;
}

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

.section {
    padding: 100px 0;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 148, 62, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-dark:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.btn-full {
    width: 100%;
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 29, 58, 0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo:hover {
    text-decoration: none;
}

.logo:hover .logo-icon {
    background: var(--gold);
    color: var(--white);
}

.logo:hover .logo-text {
    color: var(--white);
}

.logo:hover .logo-sub {
    color: rgba(255,255,255,0.6);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.logo-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    border-radius: 6px;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video-wrapper {
    position: relative;
}

.hero-accent {
    color: var(--gold-light);
    text-shadow: 0 2px 12px rgba(200, 148, 62, 0.3);
}

.hero-welcome {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.hero-text::before {
    display: none;
}

.hero-featured-video {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #000;
    border: 2px solid rgba(200, 148, 62, 0.4);
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(200, 148, 62, 0.3);
}

.video-badge-icon {
    font-size: 10px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200, 148, 62, 0.2);
    border: 1px solid rgba(200, 148, 62, 0.4);
    border-radius: 100px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.hero h1 {
    font-size: clamp(44px, 6vw, 68px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ========== Trust Bar ========== */
.trust-bar {
    background: var(--navy);
    padding: 24px 0;
    border-bottom: 3px solid var(--gold);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 148, 62, 0.15);
    border-radius: 10px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.trust-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* ========== Section Headers ========== */
.section-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(200, 148, 62, 0.1);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: var(--gold-light);
}

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

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
}

/* ========== About ========== */
.about {
    background: var(--off-white);
}

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

.about-image {
    position: relative;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.about-image-badge:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.about-image-badge strong {
    display: block;
    font-size: 15px;
    color: var(--white);
}

.about-image-badge span {
    font-size: 13px;
    color: var(--gold-light);
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-content .lead {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-weight: 400;
}

.about-content p {
    margin-bottom: 16px;
    color: var(--gray-600);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}

/* ========== Services ========== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(200, 148, 62, 0.08);
    border-radius: 14px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--navy);
    padding: 0;
}

.cta-section .container {
    padding: 0 72px 0 0;
    max-width: 100%;
}

.cta-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 480px;
}

.cta-content {
    padding: 80px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 28px;
}

.cta-list {
    list-style: none;
    margin-bottom: 36px;
}

.cta-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.cta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.cta-buttons {
    display: flex;
    gap: 16px;
}

.cta-image {
    position: relative;
    overflow: hidden;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Team ========== */
.team {
    background: var(--off-white);
}

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

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.team-photo {
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.team-card h3 {
    font-size: 18px;
    padding: 20px 20px 4px;
}

.team-role {
    display: block;
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 500;
    padding: 0 20px;
}

.team-card p {
    font-size: 14px;
    color: var(--gray-500);
    padding: 12px 20px 24px;
    line-height: 1.6;
}

/* ========== Resources ========== */
.resources {
    background: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.resource-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.resource-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.resource-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.resource-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.resource-card h3 {
    font-size: 16px;
    padding: 16px 16px 4px;
}

.download-label {
    display: block;
    padding: 0 16px 16px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.resources-cta {
    text-align: center;
    margin-top: 48px;
}

.featured-book {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-top: 56px;
    box-shadow: var(--shadow-lg);
}

.featured-book img {
    width: 180px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.featured-book-text {
    color: var(--white);
}

.featured-book-text .section-tag {
    background: rgba(200,148,62,0.2);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.featured-book-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin: 12px 0 16px;
}

.featured-book-text p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-book-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.featured-book-list li {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding: 6px 0 6px 24px;
    position: relative;
    line-height: 1.5;
}

.featured-book-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 640px) {
    .featured-book {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 28px;
    }
    .featured-book img {
        width: 140px;
    }
}

/* ========== Radio Shows ========== */
.radio-shows {
    background: var(--navy);
    color: var(--white);
    scroll-margin-top: -20px;
}

.radio-shows .section-tag {
    background: rgba(200, 148, 62, 0.2);
    color: var(--gold-light);
}

.radio-shows .section-header h2 {
    color: var(--white);
}

.radio-shows .section-header p {
    color: rgba(255,255,255,0.6);
}

.radio-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    max-height: 300px;
}

.radio-banner-img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.radio-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(11, 29, 58, 0.9));
}

.radio-banner-overlay h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 4px;
}

.radio-banner-overlay p {
    color: var(--gold-light);
    font-size: 15px;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.radio-card {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all var(--transition);
}

.radio-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(200, 148, 62, 0.15);
}

.radio-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.radio-station {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
}

.radio-card h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.radio-card span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.radio-card audio {
    width: 100%;
    height: 40px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .radio-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== Contact ========== */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info .lead {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 148, 62, 0.1);
    border-radius: 10px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-card a {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy);
}

.contact-locations {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}

.location {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.location h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.location p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.6;
}

.location a {
    font-size: 14px;
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-800);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 148, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ========== Footer ========== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

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

.footer-contact p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.disclaimer {
    margin-top: 8px;
    font-size: 11px !important;
    color: rgba(255,255,255,0.25) !important;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 16px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 100px;
        padding-bottom: 40px;
        gap: 32px;
    }

    .hero-text {
        text-align: center;
        align-items: center;
    }

    .hero-text::before {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-items {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-image::before {
        display: none;
    }

    .about-image-badge {
        right: 0;
        bottom: -16px;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2,
    .cta-content h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 60px 0;
    }

    .cta-image {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-locations {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .team-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
    }
}

/* Free Book Section */
.free-book-section {
    background: var(--gray-50);
}

.free-book-inner {
    display: grid;
    grid-template-columns: 320px 1fr 280px;
    gap: 48px;
    align-items: start;
}

.free-book-cover img {
    width: 100%;
    border-radius: 0;
}

.free-book-questions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.free-book-questions ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
    color: var(--navy);
    line-height: 1.5;
}

.free-book-questions ul li::before {
    content: '›';
    position: absolute;
    left: 8px;
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.free-book-form {
    background: #2980b9;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: white;
}

.free-book-form h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.free-book-form p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 24px;
}

.book-request-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.book-request-form input {
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    background: white;
    color: var(--navy);
}

.book-request-form input::placeholder {
    color: #999;
}

.book-request-form .btn-primary {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .free-book-inner {
        grid-template-columns: 1fr;
    }
    .free-book-cover {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* SmartVestor Section */
.smartvestor-section {
    background: #2980b9;
    padding: 60px 0;
}

.smartvestor-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
}

.smartvestor-image img {
    width: 300px;
    border-radius: var(--radius-md);
    background: white;
    padding: 16px;
}

.smartvestor-text {
    max-width: 480px;
    color: white;
}

.smartvestor-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin-bottom: 24px;
}

.smartvestor-phone {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.smartvestor-phone:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .smartvestor-inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    .smartvestor-image img {
        width: 220px;
    }
}
