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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #B8960F;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

.logo:hover {
    color: #B8960F;
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.nav-menu li {
    padding: 0.5rem 20px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #fff;
    color: #D4AF37;
}

.btn-primary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #D4AF37;
}

/* Sections */
section {
    padding: 4rem 0;
}

.alt-bg {
    background-color: #f9f9f9;
}

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

.section-header h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
}

section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Columns */
.content-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.column {
    flex: 1;
}

.column h2 {
    margin-bottom: 1rem;
}

.column p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Highlight Box */
.highlight-box {
    background-color: #f9f9f9;
    padding: 2rem;
    border-left: 4px solid #D4AF37;
    border-radius: 4px;
}

.highlight-box h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Check List */
.check-list {
    list-style: none;
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Timeline List */
.timeline-list {
    list-style: none;
}

.timeline-list li {
    padding: 0.75rem 0;
    border-left: 2px solid #D4AF37;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Service Grid */
.service-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Items List */
.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: border-color 0.3s ease;
}

.service-item:hover {
    border-color: #D4AF37;
}

.service-item-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.service-item-content p {
    color: #666;
    line-height: 1.6;
}

.service-item-price {
    display: flex;
    align-items: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
}

/* Philosophy Section */
.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #666;
    line-height: 1.7;
}

/* Quality Features */
.quality-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quality-feature h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.quality-feature p {
    color: #666;
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-card {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Comparison Section */
.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-item {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.comparison-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.comparison-item p {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.7;
}

/* Process Info */
.process-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-column h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.process-column p {
    color: #666;
    line-height: 1.7;
}

/* Contact Grid */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    margin: 0 auto 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.7;
}

.contact-card a {
    color: #D4AF37;
    font-weight: 600;
}

.small-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.booking-step {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-icon {
    margin-bottom: 1rem;
}

.booking-step h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.booking-step p {
    color: #666;
    line-height: 1.7;
}

.booking-note {
    padding: 1.5rem;
    background-color: #fff3cd;
    border-left: 4px solid #D4AF37;
    border-radius: 4px;
}

.booking-note p {
    color: #333;
    line-height: 1.7;
}

/* Company Details */
.company-details {
    max-width: 600px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.detail-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.detail-value {
    color: #666;
}

/* Landmarks Grid */
.landmarks-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.landmark-item h3 {
    margin-bottom: 1rem;
    color: #333;
}

.landmark-item ul {
    list-style: none;
}

.landmark-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.landmark-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Thank You Section */
.thank-you-section {
    padding: 4rem 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin: 0 auto 2rem;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.thank-you-info {
    margin: 3rem 0;
    text-align: left;
}

.thank-you-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.next-step {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.next-step h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.next-step p {
    color: #666;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-reminder {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-reminder p {
    color: #666;
}

/* Helpful Info */
.helpful-info {
    background-color: #f9f9f9;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
}

.info-card h3 {
    margin-bottom: 0.75rem;
    color: #333;
}

.info-card p {
    color: #666;
    line-height: 1.7;
}

/* Legal Page */
.legal-page {
    padding: 3rem 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.last-updated {
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #333;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #555;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 0.5rem;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.faq-question:hover {
    color: #D4AF37;
}

.faq-icon {
    font-size: 1.5rem;
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #D4AF37 0%, #B8960F 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #D4AF37;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.75rem;
    color: #666;
    font-size: 0.9rem;
}

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .content-columns {
        flex-direction: row;
    }

    .service-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .service-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .service-item-price {
        min-width: 120px;
        justify-content: flex-end;
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .testimonial-grid {
        flex-direction: row;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .quality-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .quality-feature {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .process-columns {
        flex-direction: row;
    }

    .contact-grid {
        flex-direction: row;
    }

    .booking-steps {
        flex-direction: row;
    }

    .detail-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .detail-label {
        margin-bottom: 0;
    }

    .landmarks-grid {
        flex-direction: row;
    }

    .next-steps {
        flex-direction: row;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-direction: row;
    }

    .cookie-modal-buttons {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .service-card {
        min-width: calc(25% - 1.5rem);
    }

    .value-card {
        min-width: calc(33.333% - 1.34rem);
    }

    .process-step {
        min-width: calc(25% - 1.5rem);
    }

    .team-member {
        min-width: calc(50% - 1rem);
    }

    .quality-feature {
        min-width: calc(33.333% - 1.34rem);
    }

    .benefit-card {
        min-width: calc(25% - 1.5rem);
    }

    .info-card {
        min-width: calc(25% - 1.5rem);
    }
}