/* ===========================
   GLOBAL STYLES & VARIABLES
   =========================== */

:root {
    --primary-color: #8B3A3A;      /* Deep Maroon */
    --primary-dark: #6B2A2A;       /* Darker Maroon */
    --primary-light: #A84A4A;      /* Lighter Maroon */
    --accent-color: #25D366;       /* WhatsApp Green */
    --cream-bg: #F9F7F4;           /* Cream Background */
    --cream-light: #FBF9F7;        /* Light Cream */
    --text-dark: #2C2C2C;          /* Dark Text */
    --text-light: #666666;         /* Light Text */
    --border-color: #E8E4E0;       /* Light Border */
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   CONTAINER & LAYOUT
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 48px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 36px;
    margin-bottom: 1.2rem;
    text-align: center;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-full {
    width: 100%;
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */

.header {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo h2 {
    font-size: 28px;
    margin: 0;
    color: white;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-link.cta-button:hover {
    opacity: 0.9;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, rgba(139, 58, 58, 0.05) 0%, rgba(249, 247, 244, 1) 100%);
    padding: 60px 0;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 0.6s ease;
}

.hero h1 {
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-location {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    animation: slideInRight 0.6s ease;
}

.placeholder-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
}

/* ===========================
   SECTION STYLES
   =========================== */

section {
    padding: 60px 0;
}

.section-intro {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background-color: var(--cream-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Why Us Section */
.why-us {
    background-color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.why-us-card {
    position: relative;
    padding-left: 80px;
    animation: fadeIn 0.6s ease;
}

.why-us-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.why-us-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.why-us-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Events Section */
.events {
    background-color: var(--cream-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 3rem;
}

.event-item {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.event-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 22px;
}

.event-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* Local SEO Section */
.local-seo {
    background-color: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.local-seo h2 {
    color: var(--primary-color);
}

.local-seo p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--cream-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 3rem;
}

.faq-item {
    background-color: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.faq-question {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-answer {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* Lead Form Section */
/* WhatsApp CTA Section */
.whatsapp-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
}

.whatsapp-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.whatsapp-cta .section-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 3rem;
}

.cta-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 3rem;
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.cta-box:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.cta-box.highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
    transform: scale(1.05);
}

.cta-box h3 {
    font-size: 22px;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.cta-box ul li {
    font-size: 15px;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box ul li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-large:hover {
    transform: scale(1.05);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 1.2rem;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   WHATSAPP STICKY BUTTON
   =========================== */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

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

/* ===========================
   ANIMATIONS
   =========================== */

@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;
    }
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .nav-menu {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 12px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

    .why-us-card {
        padding-left: 70px;
    }

    .why-us-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-button {
        display: flex;
    }

    section {
        padding: 40px 0;
    }

    .footer-content {
        gap: 32px;
    }

    .cta-box {
        padding: 24px;
    }

    .cta-box.highlight {
        transform: scale(1.02);
    }

    .cta-box h3 {
        font-size: 18px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    body {
        font-size: 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-link {
        font-size: 11px;
    }

    .service-card,
    .event-item,
    .why-us-card,
    .faq-item {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section ul li,
    .footer-bottom {
        font-size: 12px;
    }

    section {
        padding: 30px 0;
    }

    .cta-content {
        gap: 20px;
    }

    .cta-box {
        padding: 20px;
    }

    .cta-box.highlight {
        transform: scale(1);
        margin-bottom: 1rem;
    }

    .cta-box h3 {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .cta-box p {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 14px;
    }

    .whatsapp-cta {
        padding: 50px 0;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===========================
   PRINT STYLES
   =========================== */

@media print {
    .header,
    .whatsapp-button,
    .nav-menu,
    .hero-cta {
        display: none;
    }

    body {
        background-color: white;
    }

    section {
        page-break-inside: avoid;
    }
}