/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 360px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--stone-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Colors */
:root {
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8941F;
    --stone: #4A4A4A;
    --stone-light: #6A6A6A;
    --stone-dark: #3A3A3A;
    --stone-300: #E5E7EB;
    --stone-400: #9CA3AF;
    --stone-600: #6B7280;
    --stone-800: #4B5563;
    --stone-900: #374151;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
}

.text-gold {
    color: var(--gold);
}

.text-stone-300 {
    color: var(--stone-300);
}

.text-stone-400 {
    color: var(--stone-400);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .nav {
        padding: 8rem 4rem;
    }
}

@media (min-width: 1024px) {
    .nav {
        padding: 10rem 6rem;
    }
}

@media (min-width: 1280px) {
    .nav {
        padding: 12rem 8rem;
    }
}

.nav-logo a {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .nav-logo a {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .nav-logo a {
        font-size: 2rem;
    }
}

.nav-logo a:hover {
    color: var(--gold-light);
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--stone-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 1.125rem;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--stone-dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav-menu {
        position: fixed;
        top: 340px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 30vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 2px solid var(--gold);
}

@media (max-width: 767px) {
    .hero {
        height: 45vh;
        min-height: 450px;
    }
}

@media (min-width: 1024px) {
    .hero {
        height: 600px;
        min-height: 600px;
    }
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-background-overlay::after {
    content: '';
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    filter: blur(3rem);
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 10;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .hero .container {
        padding-top: 4rem;
    }
}

@media (min-width: 640px) {
    .hero .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero .container {
        padding: 0 2rem;
    }
}

.hero-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 2.25rem;
    color: #E8E8E8;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
    .hero-subtitle {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
    .hero-subtitle {
        font-size: 3.75rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    animation: bounce 2s infinite;
    z-index: 10;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--stone-dark);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn .icon {
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: translateX(4px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

@media (min-width: 640px) {
    section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    color: var(--stone-dark);
    margin-bottom: 1rem;
    position: relative;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--gold);
    margin: 0 auto 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--stone-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    background-color: #ffffff;
    padding: 0;
    padding-top: 6rem;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.services-intro {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.services-intro-text {
    font-size: 1rem;
    color: var(--stone-dark);
    line-height: 1.75;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .services-intro-text {
        font-size: 1.125rem;
    }
}

.services-travel {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.services-travel-title {
    font-size: 1.25rem;
    color: var(--stone-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.services-travel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.services-travel-list li {
    padding: 0.5rem 0;
    color: var(--stone-600);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.services-travel-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.services-travel-list li strong {
    color: var(--stone-dark);
    font-weight: 600;
}

.services-travel-note {
    font-size: 0.9375rem;
    color: var(--stone-600);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding: 3rem 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.pricing .section-title {
    color: var(--stone-dark);
}

.pricing .section-description {
    color: var(--stone-600);
}

@media (min-width: 640px) {
    .pricing {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .pricing {
        padding: 5rem 0;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--gold);
    border-width: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, #ffffff 100%);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--gold);
    color: var(--stone-dark);
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-title {
    font-size: 1.125rem;
    color: var(--stone-dark);
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .pricing-title {
        font-size: 1.25rem;
    }
}

.pricing-icon {
    margin: 0 auto;
}

.pricing-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-tiers {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-tier:last-child {
    border-bottom: none;
}

.tier-range {
    font-size: 0.875rem;
    color: var(--stone-600);
    font-weight: 500;
}

.tier-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--stone-dark);
}

@media (min-width: 640px) {
    .tier-price {
        font-size: 1.125rem;
    }
}

.pricing-features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.875rem;
}

.pricing-features li {
    padding: 0.375rem 0;
    color: var(--stone-600);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.pricing-ornaments {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-ornament-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.ornament-label {
    color: var(--stone-600);
    font-weight: 500;
    font-size: 0.875rem;
}

.ornament-price {
    color: var(--stone-dark);
    font-weight: 700;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .ornament-price {
        font-size: 1.125rem;
    }
}

.pricing-note-box {
    background-color: #F9FAFB;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    max-width: 48rem;
    margin: 0 auto;
    color: var(--stone-600);
}

@media (min-width: 768px) {
    .pricing-note-box {
        padding: 2rem;
    }
}

.pricing-note-box p {
    color: var(--stone-600);
    line-height: 1.75;
    margin: 0;
}

.pricing-note-box strong {
    color: var(--stone-dark);
}

.pricing-travel {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .pricing-travel {
        padding: 2rem;
    }
}

.pricing-travel-title {
    font-size: 1.25rem;
    color: var(--stone-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-travel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.pricing-travel-list li {
    padding: 0.5rem 0;
    color: var(--stone-600);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pricing-travel-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.pricing-travel-list li strong {
    color: var(--stone-dark);
    font-weight: 600;
    margin-left: auto;
}

.pricing-travel-note {
    font-size: 0.9375rem;
    color: var(--stone-600);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Before & After Section */
.before-after {
    background-color: var(--bg-light);
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 640px) {
    .before-after {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .before-after {
        padding: 5rem 0;
    }
}

.before-after-item {
    margin-bottom: 4rem;
}

.before-after-item:last-child {
    margin-bottom: 0;
}

.before-after-title {
    font-size: 1.5rem;
    color: var(--stone-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.before-after-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--gold);
}

@media (min-width: 640px) {
    .before-after-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .before-after-title {
        font-size: 2rem;
    }
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .before-after-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.before-after-image-wrapper {
    position: relative;
}

.before-after-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--gold);
    color: var(--stone-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.before-after-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.before-after-image:hover {
    border-color: var(--gold-light);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.before-after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--stone-400);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    color: var(--stone-dark);
    border-top: 2px solid var(--gold);
}

.contact .section-title,
.contact .contact-form-title,
.contact .contact-info-title {
    color: var(--stone-dark);
}

.contact .section-description {
    color: var(--stone-600);
}

.contact .form-label {
    color: var(--stone-dark);
}

.contact .form-input,
.contact .form-textarea {
    background-color: #ffffff;
    border-color: #d1d5db;
    color: var(--stone-dark);
}

.contact .contact-info-text {
    color: var(--stone-600);
}

.contact .contact-note-text {
    color: var(--stone-600);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form-title {
        font-size: 2rem;
    }
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--stone-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: var(--stone-dark);
    font-size: 0.875rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--stone-400);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Form Messages */
.form-message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
}

.form-message-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.form-message button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

@media (max-width: 767px) {
    .contact-info {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .contact-info-item {
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact-info-item > div:last-child {
        text-align: center;
    }
}

.contact-info-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.contact-info-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--stone-dark);
}

.contact-info-text {
    color: var(--stone-600);
}

.contact-note {
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (min-width: 768px) {
    .contact-note {
        padding: 2rem;
    }
}

.contact-note-text {
    color: var(--stone-600);
    line-height: 1.75;
}

/* Footer */
.footer {
    background-color: #F9FAFB;
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-content p {
    color: var(--stone-600);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--stone-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-divider {
    color: var(--stone-400);
}

.footer-design {
    font-size: 0.875rem;
    color: var(--stone-400);
    font-weight: 400;
}

.footer-design-link {
    color: var(--stone-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-design-link:hover {
    color: var(--gold);
}

/* Protected data - anti-bot styling */
.protected-data {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.protected-data.decoded {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 640px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Legal Sections */
.legal-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

@media (min-width: 640px) {
    .legal-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .legal-section {
        padding: 6rem 0;
    }
}

.legal-content {
    max-width: 48rem;
    margin: 0 auto;
}

.legal-text {
    text-align: left;
    color: var(--stone-600);
    line-height: 1.75;
    margin-top: 2rem;
}

/* Mobile: Center all text */
@media (max-width: 767px) {
    body {
        text-align: center;
    }

    /* Keep most text inheriting from body */
    body :where(h1, h2, h3, h4, h5, h6, p, span, div, li) {
        text-align: inherit;
    }

    /* Legal pages are easier to read left-aligned */
    .legal-text,
    .legal-text p,
    .legal-text strong {
        text-align: left;
    }
    
    /* Remove space between contact section and footer on mobile */
    .footer {
        margin-top: 0;
    }
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

.legal-text strong {
    color: var(--stone-dark);
    font-weight: 600;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-text p:first-child strong {
    margin-top: 0;
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: center;
    align-items: center;
}
