/* =====================================================
   ANASTACIA GRANJA - Harmonização Facial e Corporal
   Stylesheet Principal
   ===================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===================== CSS Variables ===================== */
:root {
    --primary: #c4a882;
    --primary-dark: #b0906e;
    --primary-light: #d4bf9a;
    --primary-gradient: linear-gradient(135deg, #c4a882 0%, #b0906e 100%);
    --cream: #f5ebe0;
    --cream-light: #faf5ef;
    --cream-dark: #ede0d0;
    --dark-brown: #4a3728;
    --medium-brown: #8b6f4e;
    --gold: #c9a96e;
    --gold-light: #dcc89e;
    --warm-dark: #3d2e1f;
    --white: #ffffff;
    --text: #4a3728;
    --text-light: #8b7355;
    --text-muted: #a89478;
    --shadow-sm: 0 2px 10px rgba(74, 55, 40, 0.08);
    --shadow-md: 0 5px 25px rgba(74, 55, 40, 0.12);
    --shadow-lg: 0 15px 50px rgba(74, 55, 40, 0.15);
    --shadow-xl: 0 25px 60px rgba(74, 55, 40, 0.2);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;
}

/* ===================== CSS Reset ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
    background: none;
}

input, textarea {
    font-family: var(--font-body);
    outline: none;
    border: none;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

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

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

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 400;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gradient);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(196, 168, 130, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 168, 130, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    display: inline-block;
    padding: 13px 35px;
    background: var(--dark-brown);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--medium-brown);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================== Loading Screen ===================== */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading.hidden {
    opacity: 0;
    visibility: hidden;
}

#loading img {
    width: 100px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin-top: 30px;
    border: 3px solid var(--cream-dark);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================== Header / Navigation ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

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

.header.scrolled {
    padding: 12px 0;
    background: rgba(250, 245, 239, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 45px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu ul li a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-menu ul li a {
    color: var(--dark-brown);
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.nav-menu ul li a:hover {
    color: var(--gold);
}

.header.scrolled .nav-menu ul li a:hover {
    color: var(--primary-dark);
}

.social-link {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header.scrolled .social-link {
    color: var(--dark-brown);
}

.social-link:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.header.scrolled .hamburger span {
    background: var(--dark-brown);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== Hero Section ===================== */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(61, 46, 31, 0.6) 0%,
        rgba(61, 46, 31, 0.3) 40%,
        transparent 70%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInLeft 1s ease 0.3s backwards;
}

.hero-content h2 {
    font-family: var(--font-subheading);
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeInLeft 1s ease 0.6s backwards;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.9s backwards;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease 1.2s backwards;
}

/* ===================== About Section ===================== */
.about {
    padding: 120px 0;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 2px solid var(--cream-dark);
    border-radius: 50%;
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: 1;
    transition: var(--transition);
}

.about-image:hover::before {
    top: -20px;
    left: -20px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.about-text {
    padding-left: 20px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
    text-align: left;
}

.about-text h2::after {
    display: none;
}

.about-text h3 {
    font-family: var(--font-subheading);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 25px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-text p:last-of-type {
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 500;
}

/* ===================== Services Section ===================== */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream-light) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-bottom-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(196, 168, 130, 0.4);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-card .btn-outline {
    font-size: 0.82rem;
    padding: 10px 25px;
}

/* ===================== Gallery Section ===================== */
.gallery {
    padding: 120px 0;
    background: var(--cream-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.gallery-filters button {
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    color: var(--primary-dark);
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-filters button:hover,
.gallery-filters button.active {
    background: var(--primary);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
    transition: var(--transition);
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-item.show {
    opacity: 1;
    transform: scale(1);
    position: relative;
    width: auto;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(74, 55, 40, 0.8) 0%,
        rgba(74, 55, 40, 0.2) 50%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 25px;
    border: 2px solid var(--white);
    border-radius: var(--radius-xl);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ===================== Lightbox ===================== */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

/* ===================== Testimonials Section ===================== */
.testimonials {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 20px;
}

.testimonial-card-inner {
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.testimonial-card-inner::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--primary-light);
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-image {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(196, 168, 130, 0.3);
}

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

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 400;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-brown);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
}

.testimonial-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots span.active {
    background: var(--gold);
    transform: scale(1.2);
}

.testimonial-dots span:hover {
    background: var(--primary-light);
}

/* ===================== Contact Section ===================== */
.contact {
    padding: 100px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background: var(--white);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

#contact-form {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-error {
    font-size: 0.8rem;
    color: #ff8a80;
    margin-top: 6px;
    display: block;
    font-weight: 400;
}

/* Honeypot field */
.form-honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

#contact-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
    padding: 16px 40px;
    background: var(--white);
    color: var(--dark-brown);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

#contact-form button[type="submit"]:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===================== Location Section ===================== */
.location {
    padding: 100px 0;
    background: var(--cream-light);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.map-embed {
    height: 250px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    padding: 25px;
}

.location-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.location-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.location-info .btn-outline {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px 25px;
}

/* ===================== Footer ===================== */
.footer {
    background: var(--warm-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
    position: relative;
    padding-left: 0;
}

.footer-col ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--gold);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icons a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

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

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

.footer-bottom .heart {
    color: #e74c3c;
    animation: pulse 1.5s ease infinite;
}

/* ===================== WhatsApp Float Button ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-green 2s ease-in-out infinite;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--dark-brown);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--white);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===================== Back to Top ===================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* ===================== Toast Notifications ===================== */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 18px 30px;
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.toast.error {
    background: linear-gradient(135deg, #f44336, #c62828);
}

.toast-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

.toast-close:hover {
    opacity: 1;
}

/* ===================== Keyframe Animations ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===================== Reveal Animations ===================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ===================== Responsive Design ===================== */

/* Large desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 2.4rem;
    }

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

    .about-grid {
        gap: 40px;
    }
}

/* Tablets landscape */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(250, 245, 239, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li {
        width: 100%;
        border-bottom: 1px solid var(--cream-dark);
    }

    .nav-menu ul li a {
        color: var(--dark-brown) !important;
        display: block;
        padding: 18px 0;
        font-size: 1rem;
    }

    .nav-menu ul li a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .social-link {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .about-text {
        padding-left: 0;
        text-align: center;
    }

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

    .about-divider {
        margin: 0 auto 25px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Tablets portrait */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .hero {
        min-height: 90vh;
    }

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

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .about {
        padding: 80px 0;
    }

    .services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 20px auto 0;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonial-card-inner {
        padding: 35px 25px;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .contact {
        padding: 70px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: 1;
    }

    .location {
        padding: 70px 0;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-col ul li a {
        padding-left: 0;
    }

    .footer-col ul li a::before {
        display: none;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Mobile large */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 13px 30px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filters button {
        padding: 8px 18px;
        font-size: 0.78rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .about-image::before {
        top: -10px;
        left: -10px;
    }

    .testimonial-card-inner::before {
        font-size: 4rem;
        top: 5px;
        left: 15px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 25px;
        width: 40px;
        height: 40px;
    }

    .toast {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

/* Mobile small */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-content h2 {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 0.88rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card .map-embed {
        height: 200px;
    }
}

/* Hover only on devices that support it */
@media (hover: hover) and (pointer: fine) {
    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .service-card:hover {
        transform: translateY(-12px);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    #loading,
    .hamburger {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
