/*
Theme Name: Take Off Unlocked
Theme URI: https://takeoffunlocked.com
Author: Take Off Unlocked Team
Author URI: https://takeoffunlocked.com
Description: A professional WordPress theme for Take Off Unlocked network marketing business. Features include a commission calculator, Instagram feed integration, contact form, and beautiful responsive design with sage green and gold color scheme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: take-off-unlocked
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready

Take Off Unlocked WordPress Theme
Copyright 2025 Take Off Unlocked
*/

/* ============================================
   CSS Variables & Root Styles
   ============================================ */
:root {
    --sage: #7b8a72;
    --sage-light: #8fa085;
    --sage-dark: #6a7962;
    --gold: #f0cf7f;
    --gold-light: #f5dfa3;
    --gold-dark: #dbb960;
    --cream: #F9F9F7;
    --dark: #1a1a1a;
    --muted: #5a5a5a;
    --border: #dcdcd9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ============================================
   Typography
   ============================================ */
.font-heading {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Manrope', sans-serif;
}

.font-accent {
    font-family: 'Cormorant Garamond', serif;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 48px;
    }
}

.section-padding {
    padding: 96px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 128px 0;
    }
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(249, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 12px 0;
}

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

.site-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo-text {
    color: var(--dark);
}

@media (max-width: 640px) {
    .logo-text {
        display: none;
    }
}

/* Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        margin-left: auto;
    }
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    transition: color 0.3s ease;
}

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

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle span {
    background: var(--sage);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-tagline {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

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

@media (min-width: 768px) {
    .hero-title {
        font-size: 72px;
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 20px;
    }
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
}

@media (min-width: 768px) {
    .play-button {
        width: 96px;
        height: 96px;
    }
}

.play-button:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

@media (min-width: 768px) {
    .play-button svg {
        width: 40px;
        height: 40px;
    }
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(240, 207, 127, 0.5);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(240, 207, 127, 0);
    }
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 207, 127, 0.4);
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    background: none;
    border: none;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(10px);
    }
    60% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

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

.section-label {
    color: var(--sage);
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-top: 16px;
    margin-bottom: 32px;
}

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

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

.about-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .about-text p {
        font-size: 18px;
    }
}

.about-text p:first-of-type::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 4px;
    color: var(--sage);
    font-weight: 500;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item h3 {
    font-size: 32px;
    color: var(--sage);
}

@media (min-width: 768px) {
    .stat-item h3 {
        font-size: 40px;
    }
}

.stat-item p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image-bg {
    position: absolute;
    inset: -16px;
    background: rgba(123, 138, 114, 0.1);
    border-radius: 16px;
    transform: rotate(3deg);
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 96px;
    height: 96px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-badge span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
}

.about-badge span:last-child {
    font-size: 12px;
    color: var(--dark);
}

/* ============================================
   Calculator Section
   ============================================ */
.calculator-section {
    background: var(--sage);
}

.calculator-section .section-label {
    color: var(--gold);
}

.calculator-section .section-title {
    color: white;
}

.calculator-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 48px;
}

.calculator-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .calculator-card {
        padding: 48px;
    }
}

.slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.slider-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-weight: 500;
}

.slider-label svg {
    width: 20px;
    height: 20px;
    color: var(--sage);
}

.slider-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--sage);
    font-weight: 600;
}

@media (min-width: 768px) {
    .slider-value {
        font-size: 32px;
    }
}

/* Custom Range Slider */
.calculator-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    border-radius: 4px;
    outline: none;
    margin: 24px 0;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.calculator-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slider-range {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--muted);
}

/* Results Box */
.calculator-results {
    background: var(--cream);
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .calculator-results {
        padding: 32px;
    }
}

.results-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.results-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-icon svg {
    width: 24px;
    height: 24px;
}

.results-label p {
    color: var(--muted);
    font-size: 14px;
}

.results-label p:last-child {
    font-size: 12px;
    opacity: 0.7;
}

.commission-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .commission-amount {
        font-size: 56px;
    }
}

.annual-earnings {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sage);
    font-size: 14px;
    font-weight: 500;
}

.annual-earnings svg {
    width: 20px;
    height: 20px;
}

.calculator-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    opacity: 0.7;
    margin-top: 24px;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 767px) {
    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item:last-child {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .gallery-item:last-child {
        grid-column: span 1;
    }
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 138, 114, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 500;
    font-size: 18px;
}

/* ============================================
   Instagram Section
   ============================================ */
.instagram-section {
    background: var(--dark);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.instagram-header svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.instagram-section .section-label {
    color: var(--gold);
}

.instagram-section .section-title {
    color: white;
}

.instagram-section .section-description {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto 48px;
}

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

@media (min-width: 768px) {
    .instagram-grid {
        gap: 16px;
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 138, 114, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-item-overlay {
    opacity: 1;
}

.instagram-item-overlay svg {
    width: 32px;
    height: 32px;
    color: white;
}

.instagram-follow {
    text-align: center;
    margin-top: 40px;
}

.instagram-follow a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-follow a:hover {
    color: var(--gold-light);
}

.instagram-follow svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   Text/Quote Section
   ============================================ */
.text-section {
    background: var(--cream);
}

.text-section .container {
    max-width: 900px;
}

.quote-icon {
    width: 64px;
    height: 64px;
    background: rgba(240, 207, 127, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.quote-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 32px;
    }
}

.quote-author h4 {
    font-size: 20px;
    color: var(--sage);
}

.quote-author p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 4px;
}

.quote-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px 0;
}

.quote-divider span:first-child,
.quote-divider span:last-child {
    width: 64px;
    height: 1px;
    background: var(--border);
}

.quote-divider span:nth-child(2) {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.text-content h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .text-content h3 {
        font-size: 28px;
    }
}

.text-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .text-content p {
        font-size: 18px;
    }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--sage);
}

.contact-section .section-label {
    color: var(--gold);
}

.contact-section .section-title {
    color: white;
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 48px;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 48px;
    }
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--muted);
}

.form-input-wrapper.textarea svg {
    top: 16px;
    transform: none;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px 12px 48px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(123, 138, 114, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 207, 127, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 32px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(123, 138, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--sage);
}

.form-success h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.form-success p {
    color: var(--muted);
    margin-bottom: 24px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--sage-dark);
    color: white;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    gap: 48px;
}

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

.footer-brand .site-logo {
    position: relative;
    left: 0;
    transform: none;
    margin-bottom: 24px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 24px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.footer-contact-item a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

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

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Privacy Policy Page
   ============================================ */
.privacy-header {
    background: var(--sage);
    padding: 120px 0 48px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

.privacy-content {
    padding: 64px 0;
}

.privacy-content h1 {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .privacy-content h1 {
        font-size: 48px;
    }
}

.privacy-date {
    font-size: 14px;
    color: var(--muted);
    opacity: 0.7;
    margin-bottom: 32px;
}

.privacy-section {
    margin-bottom: 32px;
}

.privacy-section h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
}

.privacy-section p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--muted);
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--sage);
    text-decoration: underline;
}

.privacy-section a:hover {
    color: var(--sage-dark);
}

.privacy-footer {
    background: var(--sage-dark);
    padding: 32px 0;
}

.privacy-footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-align: center;
}

/* ============================================
   Utilities
   ============================================ */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--sage);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sage-dark);
}
