/* CSS Variables for theming */
:root {
    --color-bg: #f7f4f1;
    --color-bg-light: #ffffff;
    --color-bg-card: #ffffff;
    --color-accent: #d96b52;
    --color-accent-hover: #c25a44;
    --color-accent-soft: rgba(217, 107, 82, 0.12);
    --color-text: #1f1f1f;
    --color-text-muted: #5c5c5c;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.1);
    
    --transition: all 0.25s ease;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    overflow-x: hidden;
    padding-bottom: 5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

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

.text-accent {
    color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 107, 82, 0.35);
}

.btn-secondary {
    background-color: #fff;
    color: var(--color-text);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-bg);
}

.btn-light {
    background-color: #ffffff;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.btn-light:hover {
    background-color: var(--color-bg);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-coral {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-coral i {
    color: var(--color-accent);
    margin: 0 2px;
    font-size: 1.4rem;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a.active {
    color: var(--color-accent);
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text);
    padding: 0.25rem;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--color-accent);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    min-height: 44px;
}

.mobile-nav.open {
    max-height: 420px;
    opacity: 1;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - var(--nav-height));
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 2rem) 0 4rem;
    background: var(--color-bg);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=2574&auto=format&fit=crop') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(247, 244, 241, 0.97) 0%,
        rgba(247, 244, 241, 0.9) 42%,
        rgba(247, 244, 241, 0.55) 68%,
        rgba(247, 244, 241, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-line:nth-child(2) { animation-delay: 0.35s; }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text);
    margin-bottom: 1.25rem;
    max-width: 480px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.25rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(224, 122, 95, 0.35);
    border-radius: 50px;
    color: var(--color-text);
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.hero-trust-badge i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.hero-trust-badge strong {
    color: var(--color-accent);
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* Trust bar */
.trust-bar {
    padding: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-soft);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    font-size: 1.25rem;
}

.trust-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.trust-card span {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* Quick actions */
.quick-actions {
    padding: 2.5rem 0 1rem;
}

.quick-actions-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
    color: var(--color-text);
}

.quick-action-card i {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.quick-action-whatsapp i {
    color: #25d366;
}

.quick-action-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

.quick-action-card small {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-line {
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 0 auto 1rem auto;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.section-header.visible .header-line,
.contact-section .section-header.visible .header-line {
    transform: scaleX(1);
}

/* Common Section Styles */
.section {
    padding: 6rem 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--color-text-muted);
}

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

.services-catalog {
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.services-categories {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.6rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.services-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.services-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: var(--color-bg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: var(--transition);
}

.services-search:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
}

.services-search i {
    color: var(--color-text-muted);
}

.services-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
}

.services-search input::placeholder {
    color: var(--color-text-muted);
}

.category-tab {
    flex-shrink: 0;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab span {
    color: var(--color-text-muted);
    font-weight: 400;
}

.category-tab:hover,
.category-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.category-tab:hover span,
.category-tab.active span {
    color: rgba(255, 255, 255, 0.85);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-category-block {
    transition: opacity 0.3s ease;
}

.service-category-block.hidden {
    display: none;
}

.service-category-block h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(224, 122, 95, 0.2);
}

.service-category-block h3 i {
    color: var(--color-accent);
    font-size: 1rem;
}

.service-category-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    transition: var(--transition);
}

.service-item i {
    color: var(--color-accent);
    font-size: 0.75rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.service-item:hover {
    background: rgba(224, 122, 95, 0.06);
    color: var(--color-text);
}

.service-item.hidden {
    display: none;
}

.services-empty {
    text-align: center;
    color: var(--color-text-muted);
    padding: 2rem 1rem;
}

.services-cta {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

.services-cta p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.services-cta .btn-whatsapp {
    margin-top: 0;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.offer-card {
    background-color: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.offer-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.offer-card:hover .offer-image {
    transform: scale(1.05);
}

.offer-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=2070&auto=format&fit=crop');
}

.offer-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=2070&auto=format&fit=crop');
}

.offer-content {
    padding: 2.5rem;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background-color: var(--color-accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-features li i {
    color: var(--color-accent);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-bg);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.contact-card {
    background: var(--color-bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
}

.contact-card-highlight {
    border-color: rgba(217, 107, 82, 0.25);
    background: linear-gradient(180deg, #fff 0%, rgba(217, 107, 82, 0.04) 100%);
}

.contact-card .info-icon {
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

.contact-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.contact-map iframe {
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 400px;
}

/* Floating WhatsApp */
.fab-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
}

.fab-whatsapp:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp i {
    font-size: 1.35rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(229, 141, 116, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.08);
    background-color: rgba(224, 122, 95, 0.18);
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--color-text-muted);
}

.contact-phone {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.contact-phone:hover {
    color: var(--color-accent);
}

.contact-note {
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0;
    padding: 0.75rem 1.25rem;
    background-color: #25d366;
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 48px;
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.image-placeholder {
    height: 400px;
    background-color: var(--color-bg-card);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    gap: 1rem;
    border: 1px dashed rgba(0,0,0,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--color-accent);
}

/* Footer */
footer {
    background-color: var(--color-bg-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin: 1rem auto 0;
    max-width: 400px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    background-color: var(--color-bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-bg-card);
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--color-text-muted);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}
.form-message.success { color: #28a745; }
.form-message.error { color: #dc3545; }

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .trust-bar-inner { grid-template-columns: 1fr; margin-top: 0; }
    .quick-actions-inner { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-nav { display: flex; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }

    .fab-whatsapp span {
        display: none;
    }

    .fab-whatsapp {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .services-catalog {
        padding: 1.25rem;
    }

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

    .category-tab {
        font-size: 0.82rem;
        padding: 0.5rem 0.85rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}
