:root {
    --primary-color: #d97706;
    --primary-hover: #b45309;
    --secondary-color: #0f172a;
    --text-dark: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --wa-color: #25d366;
    --font-main: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.top-bar {
    background: var(--secondary-color);
    color: #e2e8f0;
    font-size: 13px;
    text-align: center;
    padding: 8px 0;
    font-weight: 500;
}

.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.site-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-logo-footer {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 8px 18px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--primary-color);
    color: #fff !important;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 800;
    color: var(--secondary-color);
}

.phone-link svg {
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

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

.btn-outline:hover {
    background: var(--secondary-color);
    color: #fff;
}

.btn-whatsapp {
    background: var(--wa-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(to right, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
}

.hero-subtitle {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.hero h1 span {
    display: block;
    font-weight: 400;
    font-size: 38px;
    color: var(--text-dark);
    margin-top: 5px;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-color);
}

.badge-item svg {
    color: var(--primary-color);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-box {
    flex: 1;
    position: relative;
}

.main-hero-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--secondary-color);
    color: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-num {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.stat-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.phil-icon {
    background: var(--bg-light);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.phil-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

.services-premium-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img-col {
    flex: 1;
}

.service-img-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 350px;
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-text-col {
    flex: 1;
}

.service-text-col h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.service-text-col p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.text-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.text-link:hover {
    padding-left: 5px;
}

.cta-banner {
    background: var(--secondary-color);
    color: #fff;
    padding: 70px 0;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-banner p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.testim-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.stars {
    margin-bottom: 15px;
}

.testim-card .review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.7;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.method {
    display: flex;
    gap: 15px;
    align-items: center;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.method-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.method-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
}

.contact-form-box {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-light);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.checkbox-group input {
    margin-top: 4px;
    width: auto;
}

.site-footer {
    background: var(--secondary-color);
    color: #94a3b8;
    padding-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-info {
    max-width: 400px;
}

.footer-info p {
    margin-top: 5px;
    font-size: 14px;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 13px;
}

.whatsapp-float-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--wa-color);
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
}

.whatsapp-float-desktop:hover {
    transform: scale(1.05);
    color: white;
}

.mobile-action-bar {
    display: none;
}

@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions,
    .hero-trust-badges {
        justify-content: center;
    }

    .floating-stat {
        left: 20px;
        bottom: 20px;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

    .contact-methods {
        align-items: center;
    }

    .method {
        flex-direction: column;
        gap: 10px;
    }

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

    .phil-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .main-nav,
    .header-contact {
        display: none;
    }

    .site-logo {
        height: 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h1 span {
        font-size: 26px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-float-desktop {
        display: none;
    }

    body {
        padding-bottom: 70px;
    }

    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 10px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        gap: 10px;
    }

    .btn-mobile {
        flex: 1;
        text-align: center;
        padding: 14px;
        border-radius: 4px;
        color: white;
        font-weight: 700;
        font-size: 15px;
    }

    .btn-mobile-call {
        background: var(--secondary-color);
    }

    .btn-mobile-wa {
        background: var(--wa-color);
    }
}