/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #a38d65;
    --color-primary-dark: #8a7855;
    --color-secondary: #4a5c6a;
    --color-light: #f5f4ef;
    --color-dark: #2c2c2c;
    --color-gray: #6c757d;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius: 10px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Utility Bar */
.utility-bar {
    background-color: var(--color-dark);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.utility-link {
    color: white;
    font-weight: 500;
}

.utility-address {
    color: #ccc;
}

@media (max-width: 768px) {
    .utility-bar {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1000;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
}

.logo-container img {
    border-radius: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    color: var(--color-dark);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-list a:hover {
    color: var(--color-primary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 21px;
    background: transparent;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.header-cta .cta-small {
    padding: 8px 18px;
    font-weight: 600;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 800px;
    padding: 40px 20px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--color-light);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-dark);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

/* About */
.about-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    text-align: center;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ece7df;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* Trust */
.trust-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f2eb, #fff);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.3rem;
    color: var(--color-dark);
}

.rating-text strong {
    font-size: 1.8rem;
}

.trust-quote {
    font-size: 1.3rem;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-secondary);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Reviews */
.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 1.2rem;
}

.review-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ */
.faq-section .container {
    max-width: 800px;
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
}

.accordion-heading {
    width: 100%;
    padding: 22px 25px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition);
}

.accordion-heading:hover {
    background-color: #f9f9f9;
}

.accordion-heading[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 25px;
    max-height: 500px;
}

.accordion-content p {
    margin-bottom: 15px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.contact-info address {
    font-style: normal;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--color-dark);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: white;
}

.contact-form {
    background: #ece7df;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(163, 141, 101, 0.2);
}

.map-container {
    margin-top: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Footer */
.main-footer {
    background-color: var(--color-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col address {
    font-style: normal;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col address a {
    opacity: 0.9;
}

.footer-col address a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    gap: 10px;
    border: 2px solid transparent;
}

.cta-primary {
    background-color: var(--color-primary);
    color: white;
}

.cta-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(163, 141, 101, 0.3);
}

.cta-secondary {
    background-color: white;
    color: var(--color-dark);
    border-color: #ddd;
}

.cta-secondary:hover {
    background-color: #f8f8f8;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.cta-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.cta-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.cta-small {
    padding: 8px 20px;
    font-size: 0.95rem;
}

/* Mobile CTA Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 9999;
    padding: 10px 15px;
}

.mobile-cta-bar .cta-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
    font-size: 0.8rem;
    color: var(--color-dark);
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-cta-bar .cta-bar-item:hover {
    background-color: #f5f5f5;
    color: var(--color-primary);
}

.mobile-cta-bar svg {
    width: 22px;
    height: 22px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* Mobile menu specific fixes */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001; /* Ensure it's above other elements */
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 20px 30px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s ease;
        z-index: 1000; /* High z-index */
        overflow-y: auto;
        margin: 0;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list a {
        display: block;
        padding: 18px 0;
        font-size: 1.2rem;
        border-bottom: 1px solid #f0f0f0;
        color: var(--color-dark);
    }

    .nav-list a:last-child {
        border-bottom: none;
    }

    .nav-list a::after {
        display: none;
    }

    .header-inner {
        position: relative;
        z-index: 1002; /* Header above menu */
    }

    /* Rest of your mobile styles... */
}
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .utility-bar {
        font-size: 0.85rem;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .cta-button {
        padding: 14px 25px;
    }

    .accordion-heading {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 25px 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;

}

