/* Root Variables */
:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --gold: #c9a961;
    --gold-dark: #b89851;
    --gold-light: #8b6f3f;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --green: #25D366;
    --green-dark: #128C7E;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.logo i {
    font-size: 2rem;
    color: var(--gold);
}

.logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--gold);
    margin: 0;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav-desktop a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color 0.3s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--white);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    padding: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920&h=1080&fit=crop') center/cover;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.hero-text {
    max-width: 48rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-line {
    height: 4px;
    width: 3rem;
    background: var(--gold);
}

.hero-badge span {
    color: var(--gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 42rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 8rem 0 5rem;
    margin-top: 70px;
    text-align: center;
}

.page-hero-content {
    color: var(--white);
}

.page-hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 9999px;
    color: var(--gold-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.text-gold {
    color: var(--gold);
}

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

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

.about-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: var(--gray-200);
    height: 500px;
}

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

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.about-content p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.feature-item i {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--gray-700);
}

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

/* Services Grid */
.services-grid {
    display: grid;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border: 2px solid var(--gray-100);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    background: var(--white);
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--gold);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.service-list i {
    color: var(--gold);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

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

/* Process Grid */
.process-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.process-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.process-icon {
    width: 8rem;
    height: 8rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.process-icon i {
    font-size: 4rem;
    color: var(--white);
}

.process-number {
    position: absolute;
    top: -0.5rem;
    right: 50%;
    transform: translateX(2rem);
    width: 3rem;
    height: 3rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: bold;
}

.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.7;
}

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

/* Contact Grid */
.contact-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    border: 2px solid var(--gray-100);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    background: var(--white);
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.contact-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.contact-card a {
    color: var(--gray-600);
    transition: color 0.3s;
}

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

.contact-meta {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

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

/* Contact Methods */
.contact-methods-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method-card {
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    background: var(--white);
}

.whatsapp-icon-large,
.callback-icon-large {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.whatsapp-icon-large {
    background: var(--green);
}

.callback-icon-large {
    background: var(--gold);
}

.whatsapp-icon-large i,
.callback-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-method-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    text-align: center;
}

.contact-method-card > p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.contact-info-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.contact-info-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.contact-info-item i {
    width: 1.25rem;
    color: var(--gold);
}

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

/* Callback Form */
.callback-form {
    margin-top: 1.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b8985f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select:hover {
    border-color: var(--gold);
}

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

.form-group textarea {
    resize: vertical;
    line-height: 1.6;
}

/* Office Hours */
.office-hours-card {
    max-width: 64rem;
    margin: 0 auto;
    border: 2px solid rgba(201, 169, 97, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    background: var(--white);
}

.office-hours-icon {
    width: 4rem;
    height: 4rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.office-hours-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.office-hours-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    text-align: center;
}

.office-hours-grid {
    display: grid;
    gap: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

.office-hours-item {
    color: var(--gray-700);
}

.office-hours-full {
    grid-column: 1 / -1;
}

.office-hours-note {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--gray-600);
}

@media (min-width: 768px) {
    .office-hours-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Booking Section */
.booking-section {
    min-height: calc(100vh - 70px);
    padding: 4rem 0 3rem;
    margin-top: 70px;
    background: #f8f9fa;
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.booking-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.stepper-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-600);
}

.stepper-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.stepper-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.stepper-item.active .stepper-circle {
    background: var(--gold);
    color: var(--white);
}

.stepper-item.active .stepper-label {
    color: var(--gray-900);
}

.stepper-item.completed .stepper-circle {
    background: var(--navy);
    color: var(--white);
}

.stepper-item.completed .stepper-circle::after {
    content: '✓';
    font-size: 1.25rem;
}

.stepper-line {
    width: 80px;
    height: 2px;
    background: var(--gray-200);
    margin: 0 1rem;
}

/* Step Content */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 1rem;
}

.options-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.options-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.option-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: var(--white);
    transition: all 0.3s ease;
    height: 100%;
}

.option-card:hover .option-content {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.15);
}

.option-card input[type="radio"]:checked + .option-content {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

.option-content i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.option-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.option-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.pricing-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.5rem;
}

/* Input Grid */
.input-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23b8985f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

.input-group select:hover {
    border-color: var(--gold);
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.input-group textarea {
    resize: vertical;
    line-height: 1.6;
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.form-actions-split {
    justify-content: space-between;
    gap: 1rem;
}

.btn-next {
    min-width: 250px;
}

/* Responsive */
@media (min-width: 768px) {
    .input-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .options-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .options-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-wrapper {
        padding: 3.5rem 4rem;
    }
}

@media (max-width: 767px) {
    .booking-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .booking-header h2 {
        font-size: 1.875rem;
    }
    
    .stepper {
        padding: 0;
    }
    
    .stepper-label {
        font-size: 0.8rem;
    }
    
    .stepper-line {
        width: 40px;
        margin: 0 0.5rem;
    }
    
    .stepper-circle {
        width: 2rem;
        height: 2rem;
        font-size: 0.95rem;
    }
    
    .form-actions-split {
        flex-direction: column;
    }
    
    .btn-next {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .option-content {
        padding: 1.5rem 1rem;
    }
    
    .option-content i {
        font-size: 2rem;
    }
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h5 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-logo i {
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-logo span {
    font-size: 1.125rem;
}

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

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-hours i {
    width: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

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

/* Responsive Typography */
@media (max-width: 767px) {
    .hero h2,
    .page-hero h2 {
        font-size: 2rem;
    }
    
    .section-header h3 {
        font-size: 1.875rem;
    }
    
    .about-content h3 {
        font-size: 1.875rem;
    }
    
    .booking-header h2 {
        font-size: 1.875rem;
    }
    
    .booking-container {
        padding: 1.5rem;
    }
}