:root {
    --primary: #f37021;
    --primary-dark: #d95e13;
    --primary-soft: #fff0e7;
    --ink: #101828;
    --muted: #566173;
    --line: #e5e7eb;
    --surface: #ffffff;
    --soft-bg: #f7f8fb;
    --dark-panel: #17202f;
    --green: #25d366;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.08);
    --shadow-md: 0 10px 24px rgba(16, 24, 40, 0.12);
    --shadow-lg: 0 18px 42px rgba(16, 24, 40, 0.16);
    --transition: 0.2s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--surface);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
}

.top-bar {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 9px 14px;
    text-align: center;
    text-transform: uppercase;
}

.main-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    padding: 10px 14px;
}

.logo-link {
    align-items: center;
    display: flex;
    min-width: 0;
}

.logo-img {
    height: 42px;
    object-fit: contain;
    width: auto;
}

.call-btn-link {
    flex-shrink: 0;
    text-decoration: none;
}

.call-btn {
    align-items: center;
    background: var(--primary);
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(243, 112, 33, 0.24);
    color: #fff;
    display: flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    transition: var(--transition);
}

.call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.hero-section {
    background: var(--soft-bg);
    padding: 14px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    max-width: 1180px;
}

.carousel-container {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    height: 390px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-slides {
    height: 100%;
    position: relative;
    width: 100%;
}

.carousel-slide {
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    transition: opacity 1.1s ease;
    width: 100%;
}

.carousel-slide.active {
    opacity: 1;
}


.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 22px 18px;
}

.form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.15;
}

.form-subtitle {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 7px 0 18px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    color: var(--ink);
    display: block;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-group input[type="text"],
.phone-input-wrapper {
    border: 1px solid #cfd5df;
    border-radius: 8px;
    transition: var(--transition);
    width: 100%;
}

.form-group input[type="text"] {
    color: var(--ink);
    min-height: 46px;
    padding: 12px 13px;
}

.phone-input-wrapper {
    align-items: center;
    display: flex;
    overflow: hidden;
}

.country-code {
    background: #f1f3f7;
    border-right: 1px solid #cfd5df;
    color: var(--muted);
    flex-shrink: 0;
    font-weight: 800;
    min-height: 46px;
    padding: 12px;
}

.phone-input-wrapper input {
    border: 0;
    color: var(--ink);
    min-width: 0;
    padding: 12px;
    width: 100%;
}

.form-group input:focus,
.phone-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.14);
    outline: 0;
}

.error-msg {
    color: #dc2626;
    display: none;
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 5px;
}

.submit-btn,
.home-btn,
.secondary-btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-family: var(--font-heading);
    font-weight: 800;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
    transition: var(--transition);
}

.submit-btn,
.home-btn {
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(243, 112, 33, 0.24);
    color: #fff;
}

.submit-btn {
    margin-top: 4px;
    width: 100%;
}

.submit-btn:hover,
.home-btn:hover {
    background: var(--primary-dark);
}

.services-section,
.events-section {
    margin: 0 auto;
    max-width: 1180px;
    padding: 38px 14px;
}

.section-badge,
.section-title,
.section-subtitle {
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.14;
    margin-top: 5px;
}

.section-subtitle {
    color: var(--muted);
    margin: 10px auto 28px;
    max-width: 680px;
}

.services-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

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

.service-image-container {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #f1f3f7;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.service-image {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    padding: 11px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.15;
    min-height: 2.15em;
}

.card-call-btn {
    align-items: center;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    justify-content: center;
    min-height: 36px;
    padding: 8px 10px;
    text-decoration: none;
    width: 100%;
}

.card-call-btn:hover {
    background: var(--primary-dark);
}


.events-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
}

.events-grid span {
    background: var(--soft-bg);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 12px;
}

.areas-section {
    background: var(--soft-bg);
    padding: 14px 14px 48px;
}

.areas-card-bg {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    max-width: 1180px;
    padding: 30px 18px;
}

.areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: center;
    margin: 18px auto 22px;
    max-width: 860px;
}

.areas-chips span {
    background: var(--soft-bg);
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 800;
    padding: 8px 10px;
}

.address-card {
    background: var(--primary-soft);
    border: 1px solid #ffd5bd;
    display: grid;
    gap: 6px;
    margin: 0 auto;
    max-width: 760px;
    padding: 15px;
}

.address-card strong {
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.address-card span {
    color: var(--ink);
    font-weight: 650;
}

.footer {
    background: #fff8f4;
    border-top: 1px solid #f4ddce;
    padding: 44px 14px 26px;
}

.footer-container {
    display: grid;
    gap: 28px;
    margin: 0 auto;
    max-width: 1180px;
}

.footer-logo {
    height: 46px;
    margin-bottom: 14px;
    object-fit: contain;
    width: auto;
}

.company-desc,
.footer-services-list a,
.contact-item {
    color: var(--muted);
    font-size: 0.91rem;
}

.footer-services h3,
.footer-contact h3 {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    margin-bottom: 13px;
    position: relative;
}

.footer-services h3::after,
.footer-contact h3::after {
    background: var(--primary);
    content: "";
    display: block;
    height: 2px;
    margin-top: 4px;
    width: 30px;
}

.footer-services-list {
    display: grid;
    gap: 9px;
    list-style: none;
}

.footer-services-list a {
    text-decoration: none;
}

.contact-details {
    display: grid;
    gap: 12px;
}

.contact-item {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #ead7c9;
    color: var(--muted);
    font-size: 0.8rem;
    margin: 34px auto 0;
    max-width: 1180px;
    padding-top: 20px;
    text-align: center;
}

.floating-ctas {
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 14px;
    z-index: 999;
}

.floating-btn {
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.24);
    color: #fff;
    display: flex;
    height: 50px;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    width: 50px;
}

.floating-btn:hover {
    transform: scale(1.06);
}

.call-float {
    animation: pulse-orange 2s infinite;
    background: var(--primary);
}

.whatsapp-float {
    animation: pulse-green 2s infinite;
    background: var(--green);
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(243, 112, 33, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(243, 112, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 112, 33, 0); }
}

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

.thankyou-section {
    align-items: center;
    background: var(--soft-bg);
    display: flex;
    justify-content: center;
    min-height: 58vh;
    padding: 58px 14px;
}

.thankyou-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 520px;
    padding: 34px 20px;
    text-align: center;
    width: 100%;
}

.thankyou-icon {
    color: #16a34a;
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.thankyou-card h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.1;
}

.thankyou-card p {
    color: var(--muted);
    margin: 12px 0 24px;
}

.thankyou-actions {
    display: grid;
    gap: 10px;
}

.secondary-btn {
    background: #f1f3f7;
    color: var(--ink);
}

.compact-footer {
    padding-top: 36px;
}

@media (max-width: 360px) {
    .call-btn span {
        display: none;
    }

    .call-btn {
        padding: 10px;
    }

    .carousel-container {
        height: 330px;
    }

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

@media (min-width: 680px) {
    .top-bar {
        font-size: 0.86rem;
        padding: 11px 18px;
    }

    .header-container {
        padding: 13px 20px;
    }

    .logo-img {
        height: 54px;
    }

    .hero-section {
        padding: 24px 20px;
    }

    .hero-container {
        gap: 22px;
    }

    .carousel-container {
        height: 470px;
    }

    .form-card {
        padding: 28px;
    }

    .services-section,
    .events-section {
        padding: 62px 20px;
    }

    .section-title {
        font-size: 2.25rem;
    }
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-section {
        padding: 22px 20px 66px;
    }

    .areas-card-bg {
        padding: 42px 34px;
    }

    .footer {
        padding: 58px 20px 30px;
    }

    .footer-container {
        grid-template-columns: 1.2fr 0.8fr 1fr;
    }

    .thankyou-actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 980px) {
    .hero-container {
        align-items: stretch;
        flex-direction: row;
        gap: 28px;
    }

    .carousel-container {
        flex: 1.42;
        height: auto;
        min-height: 540px;
    }

    .form-container {
        flex: 0.58;
    }

    .form-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }

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

    .floating-ctas {
        bottom: 28px;
        right: 28px;
    }

    .floating-btn {
        height: 56px;
        width: 56px;
    }
}
