* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6F47;
    --secondary: #C9ADA7;
    --accent: #D4A574;
    --light: #F5EBE0;
    --dark: #3E2723;
    --highlight: #D4A574;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    background: linear-gradient(135deg, var(--light) 0%, #FAF7F2 100%);
    overflow-x: hidden;
    transition: background 0.8s ease;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(139, 111, 71, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 2px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* ========== HAMBURGER MENU ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, #F5EBE0 0%, #FAF7F2 50%, #EDE0D9 100%);
    background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 39, 35, 0.5);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ========== LOCATION BANNER ========== */
.location-banner {
    background: transparent;
    padding: 0;
    text-align: center;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .location-content {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.9), rgba(212, 165, 116, 0.9));
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    max-width: fit-content;
    z-index: 10;
}

.location-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.2);
    max-width: fit-content;
}

.location-content i {
    font-size: 1.8rem;
}

.location-content h3 {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ========== IMAGE GALLERY SECTION ========== */
.image-showcase {
    min-height: 100vh;
    background: linear-gradient(135deg, #EDE0D9 0%, #F5EBE0 100%);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.image-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--primary);
    font-style: italic;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: scale(1);
    transition: all 0.5s ease;
    will-change: transform;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 111, 71, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: none;
}

/* ========== ABOUT SECTION ========== */
.about {
    min-height: 100vh;
    background: linear-gradient(135deg, #F5EBE0 0%, #FAF7F2 100%);
    padding: 80px 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 2rem;
}

.about-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(212, 165, 116, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 5px;
    letter-spacing: 0.5px;
}

/* ========== SERVICES SECTION ========== */
.services {
    min-height: 100vh;
    background: linear-gradient(135deg, #EDE0D9 0%, #E8DCD0 100%);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-top: 4px solid var(--accent);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent);
    border-top: 4px solid var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.service-card p {
    color: var(--primary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    min-height: 100vh;
    background: linear-gradient(135deg, #F5EBE0 0%, #FAF7F2 100%);
    padding: 80px 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 111, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

/* Hide scrollbar but keep functionality */
.testimonials-grid::-webkit-scrollbar {
    height: 6px;
}

.testimonials-grid::-webkit-scrollbar-track {
    background: rgba(139, 111, 71, 0.1);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--light);
    flex: 0 0 calc(33.333% - 1.4rem);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    border-top: 2px solid var(--light);
    padding-top: 1rem;
    margin-top: auto;
}

/* ========== SCROLL BUTTONS ========== */
.scroll-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
    flex-shrink: 0;
}

.scroll-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

.scroll-btn:active {
    transform: scale(0.95);
}

.scroll-btn-left {
    order: -1;
}

/* ========== CONTACT SECTION ========== */
.contact {
    min-height: 100vh;
    background: linear-gradient(135deg, #EDE0D9 0%, #E8DCD0 100%);
    padding: 80px 2rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--dark);
    font-size: 1rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
    transition: all 0.3s ease;
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.4);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(212, 165, 116, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
}

/* ========== SUCCESS MESSAGE ========== */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #FFFAF7;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.15);
    padding: 3.5rem 2.5rem;
    text-align: center;
    z-index: 1000;
    max-width: 420px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    border: 2px solid rgba(212, 165, 116, 0.3);
    opacity: 0;
    visibility: hidden;
}

.success-message.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.success-message.hide {
    animation: fadeOut 0.5s ease forwards;
}

.success-content i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
    animation: scaleCheck 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: var(--dark);
    margin: 1rem 0 0.7rem 0;
    font-weight: 700;
}

.success-content p {
    color: #666;
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

@keyframes scaleCheck {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -50%) scale(0.95);
    }
}

/* Overlay when success message shows */
.success-message::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    transition: background 0.3s ease;
    pointer-events: none;
}

.success-message.show::before {
    background: rgba(0, 0, 0, 0.15);
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    color: var(--light);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-text {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero {
        padding: 60px 1.5rem 0 1.5rem;
        min-height: 100vh;
        height: 100vh;
        background-size: 120%;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .hero .location-content {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.95rem;
        padding: 0.9rem 1.8rem;
    }

    .location-content i {
        font-size: 1.4rem;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .about h2,
    .contact-info h2 {
        font-size: 1.9rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-highlight {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .gallery-grid {
        gap: 1.5rem;
    }

    .gallery-item:hover img {
        transform: scale(1.03);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .testimonials-grid {
        flex: 0 0 calc(50% - 1rem);
    }

    .testimonial-card {
        padding: 1.8rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .scroll-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.4rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.9rem 2rem;
    }

    .success-message {
        max-width: 350px;
        padding: 2.5rem 1.5rem;
    }

    .success-content h3 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(139, 111, 71, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 350px;
    }

    .nav-links li {
        padding: 0.9rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        font-size: 1rem;
    }

    .cta-button {
        display: none;
    }
}

@media (max-width: 480px) {
    * {
        font-size: calc(0.95 * 1rem);
    }

    header {
        padding: 0.8rem;
    }

    nav {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .hero {
        margin-top: 0;
        padding: 0;
        min-height: 100vh;
        height: 100vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero .location-content {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
    }

    .location-content i {
        font-size: 1.2rem;
    }

    .location-content h3 {
        font-size: 0.85rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .image-showcase,
    .about,
    .services,
    .testimonials,
    .contact {
        padding: 3rem 1rem;
    }

    .gallery-grid {
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-item:hover img {
        transform: scale(1.02);
    }

    .about-content {
        padding: 1rem;
    }

    .about h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .about-highlight {
        padding: 1.2rem;
        font-size: 0.95rem;
        margin: 1rem 0;
        border-left: 3px solid var(--accent);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        max-width: 100%;
        grid-auto-rows: minmax(280px, 1fr);
    }

    .service-card {
        padding: 1.5rem;
        border-radius: 12px;
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        height: 100%;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
        flex-shrink: 0;
        flex-shrink: 0;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        margin-top: 0.8rem;
        line-height: 1.2;
        min-height: 2.6rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        flex: 1;
    }

    .testimonials-grid {
        flex: 0 0 calc(100vw - 40px);
        gap: 1rem;
        scroll-snap-type: x mandatory;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .stars {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        flex-grow: 1;
    }

    .testimonial-author {
        font-size: 0.85rem;
        margin-top: auto;
        border-top: 2px solid var(--light);
        padding-top: 0.8rem;
    }

    .scroll-btn {
        display: none;
    }

    .contact-container {
        gap: 1.5rem;
        padding: 1rem;
    }

    .contact-info h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .whatsapp-btn,
    .email-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .success-message {
        max-width: 90vw;
        padding: 2rem 1.2rem;
    }

    .success-content i {
        font-size: 2.5rem;
    }

    .success-content h3 {
        font-size: 1.4rem;
        margin: 0.8rem 0 0.3rem 0;
    }

    .success-content p {
        font-size: 0.9rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-links a {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }

    .footer-text {
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    /* Optimize animations for mobile scroll performance */
    .service-card,
    .gallery-item,
    .testimonial-card {
        will-change: auto;
    }

    .service-card:hover,
    .gallery-item:hover {
        transform: none !important;
    }

    .hero {
        background-attachment: scroll !important;
    }
}
