/* ================================================================
   STYLE.CSS - VIP CLEANING SOLUTION
   FRESH GREEN THEME - FULLY RESPONSIVE
   ================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================ */
/*  NAVBAR - CLEAN & MINIMAL                                        */
/* ================================================================ */
.navbar-wrapper {
    background: rgba(18, 18, 28, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 168, 107, 0.12);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    width: 100%;
}

.navbar-wrapper.scrolled {
    background: rgba(12, 12, 20, 0.96);
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.8);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    position: relative;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00A86B, #008F5A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(0, 168, 107, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    pointer-events: none;
}

.logo:hover .logo-icon {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 12px 36px rgba(0, 168, 107, 0.5);
}

.logo-icon i {
    position: relative;
    z-index: 2;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.logo-text .brand span {
    color: #00A86B;
}

.logo-text .tag {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text .tag i {
    color: #00A86B;
    font-size: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 60px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links li a i {
    font-size: 14px;
    color: #00A86B;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(0, 168, 107, 0.1);
    color: #ffffff;
}

.nav-links li a:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-links li a.active {
    background: rgba(0, 168, 107, 0.12);
    color: #ffffff;
    font-weight: 600;
}

.nav-links li a.active i {
    opacity: 1;
}

.btn-cta {
    background: linear-gradient(135deg, #00A86B, #008F5A);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 60px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 28px rgba(0, 168, 107, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 40%, rgba(255,255,255,0.05) 100%);
    border-radius: 60px;
    pointer-events: none;
    z-index: 1;
}

.btn-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00C97A, #00A86B);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 60px;
    z-index: 0;
}

.btn-cta:hover::after {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 168, 107, 0.4);
}

.btn-cta span, .btn-cta i {
    position: relative;
    z-index: 2;
}

.btn-cta i {
    color: #fff !important;
    font-size: 13px !important;
    opacity: 1 !important;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 168, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 168, 107, 0); }
}
.btn-cta {
    animation: pulse-ring 2.5s infinite;
}
.btn-cta:hover {
    animation: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.hamburger:hover {
    background: rgba(0, 168, 107, 0.08);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #00A86B;
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #00A86B;
}

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-16px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================================ */
/*  HERO SECTION - FULLY RESPONSIVE                                 */
/* ================================================================ */
.hero {
    padding: 50px 0 70px;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 168, 107, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 168, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.15);
    padding: 6px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    width: fit-content;
}

.hero-tag i {
    color: #00A86B;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #00A86B, #00C97A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #00A86B, #008F5A);
    color: #fff;
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0, 168, 107, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 168, 107, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 28px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 107, 0.2);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary i {
    color: #00A86B;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.stat .number .plus {
    color: #00A86B;
}

.stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.06);
}

/* Hero Right */
.hero-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-card {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.icon-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 14px 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.icon-card:hover {
    background: rgba(0, 168, 107, 0.06);
    border-color: rgba(0, 168, 107, 0.15);
    transform: translateY(-3px);
}

.icon-card i {
    font-size: 22px;
    color: #00A86B;
    display: block;
    margin-bottom: 4px;
}

.icon-card span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.card-footer {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.card-footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.card-footer i {
    color: #00A86B;
}

/* ================================================================ */
/*  SERVICES SECTION                                                */
/* ================================================================ */
.services {
    padding: 70px 0;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
    padding: 0 16px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.15);
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    color: #00A86B;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.section-header h2 span {
    background: linear-gradient(135deg, #00A86B, #00C97A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.6;
    padding: 0 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 168, 107, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-image {
    position: relative;
    height: 170px;
    overflow: hidden;
    width: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
}

.service-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0, 168, 107, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 168, 107, 0.3);
}

.service-body {
    padding: 16px 18px 20px;
}

.service-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.service-body p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin-bottom: 14px;
}

.service-actions {
    display: flex;
    gap: 10px;
}

.service-actions .btn-whatsapp {
    flex: 1;
    padding: 8px 14px;
    background: linear-gradient(135deg, #00A86B, #008F5A);
    color: #fff;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 107, 0.3);
}

.service-actions .btn-call {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-actions .btn-call:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 168, 107, 0.15);
    color: #ffffff;
}

/* ================================================================ */
/*  ABOUT SECTION                                                   */
/* ================================================================ */
.about {
    padding: 70px 0;
    position: relative;
    width: 100%;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(0, 168, 107, 0.03), transparent 60%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.about-content .badge {
    display: inline-block;
    background: rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.15);
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    color: #00A86B;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #00A86B, #00C97A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-desc {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.about-desc strong {
    color: rgba(255, 255, 255, 0.8);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.feature i {
    color: #00A86B;
    font-size: 16px;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}

.about-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-stat:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 107, 0.1);
    transform: translateY(-3px);
}

.about-stat .number {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #00A86B, #00C97A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat .number .plus {
    -webkit-text-fill-color: #00A86B;
}

.about-stat .label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.about-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 18px 20px;
    width: 100%;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row i {
    font-size: 16px;
    color: #00A86B;
    width: 22px;
    flex-shrink: 0;
}

.info-row span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    word-break: break-word;
}

/* ================================================================ */
/*  SERVICE AREAS SECTION                                           */
/* ================================================================ */
.areas {
    padding: 50px 0 70px;
    width: 100%;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
}

.areas-grid span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.areas-grid span:hover {
    background: rgba(0, 168, 107, 0.06);
    border-color: rgba(0, 168, 107, 0.15);
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* ================================================================ */
/*  CONTACT SECTION                                                 */
/* ================================================================ */
.contact {
    padding: 70px 0 80px;
    background: linear-gradient(145deg, #f8f4f0, #f0ebe5);
    border-radius: 40px 40px 0 0;
    margin-top: 30px;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    width: 100%;
}

.contact-info .badge {
    display: inline-block;
    background: rgba(0, 168, 107, 0.1);
    border: 1px solid rgba(0, 168, 107, 0.15);
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 12px;
    font-weight: 500;
    color: #00A86B;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 10px;
}

.contact-info h2 span {
    background: linear-gradient(135deg, #00A86B, #008F5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info > p {
    font-size: 16px;
    color: #6f5e4e;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item i {
    font-size: 18px;
    color: #00A86B;
    margin-top: 2px;
    width: 24px;
    flex-shrink: 0;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-size: 11px;
    font-weight: 600;
    color: #8a7a6a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item span, .contact-item a {
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.4;
    word-break: break-word;
}

.contact-item a {
    color: #00A86B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #008F5A;
}

.contact-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social .social {
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a3a2a;
    font-size: 17px;
    transition: all 0.3s ease;
}

.contact-social .social:hover {
    background: #00A86B;
    border-color: #00A86B;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 168, 107, 0.2);
}

/* Contact Form */
.contact-form .form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 22px;
    padding: 30px 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.form-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.form-card > p {
    font-size: 13px;
    color: #8a7a6a;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 16px;
    background: #f8f4f0;
    border: 1px solid #e8dfd7;
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00A86B;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 168, 107, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0a090;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300A86B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color: #4a3a2a;
}

.form-group select option {
    background: #ffffff;
    color: #1a1a2e;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.submit-btn {
    width: 100%;
    padding: 13px 28px;
    background: linear-gradient(135deg, #00A86B, #008F5A);
    color: #fff;
    border: none;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 168, 107, 0.35);
}

/* ================================================================ */
/*  FOOTER                                                          */
/* ================================================================ */
.footer {
    background: #0a0a0f;
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 35px;
    margin-bottom: 35px;
    width: 100%;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.logo-footer i {
    color: #00A86B;
    font-size: 22px;
}

.logo-footer strong {
    color: #00A86B;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 10px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.footer-rating i {
    color: #f5b342;
    font-size: 13px;
}

.footer-rating span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 4px;
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00A86B;
}

.footer-contact h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-contact p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word;
}

.footer-contact p i {
    color: #00A86B;
    width: 18px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom i {
    color: #00A86B;
}

/* ================================================================ */
/*  RESPONSIVE BREAKPOINTS - MOBILE FIRST                           */
/* ================================================================ */

/* ================================================================ */
/*  HERO SECTION RESPONSIVE BREAKPOINTS                             */
/* ================================================================ */

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 80px;
    }
    .hero-title {
        font-size: 54px;
    }
    .hero-desc {
        font-size: 18px;
    }
    .hero-card {
        padding: 32px;
        max-width: 520px;
    }
    .card-grid {
        gap: 12px;
    }
    .icon-card {
        padding: 16px 8px;
    }
    .icon-card i {
        font-size: 24px;
    }
    .icon-card span {
        font-size: 11px;
    }
}

/* Tablets & Small Laptops (1024px - 1199px) */
@media (max-width: 1199px) {
    .hero-title { 
        font-size: 40px; 
    }
    .hero-grid {
        gap: 40px;
    }
    .hero-card {
        max-width: 420px;
        padding: 24px;
    }
    .card-grid {
        gap: 8px;
    }
    .icon-card {
        padding: 12px 4px;
    }
    .icon-card i {
        font-size: 20px;
    }
    
    .services-grid { 
        grid-template-columns: repeat(3, 1fr); 
    }
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .about-image { 
        order: -1; 
    }
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 30px; 
    }
}

/* Tablets (820px - 1023px) */
@media (max-width: 1023px) {
    .navbar {
        padding: 0 16px;
        height: 68px;
    }
    .logo-text .tag { 
        display: none; 
    }
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        border-radius: 10px;
    }
    .logo-text .brand { 
        font-size: 18px; 
    }
    .logo { 
        gap: 8px; 
    }

    .hamburger { 
        display: flex; 
    }
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        position: absolute;
        top: 68px;
        left: 0;
        background: rgba(12, 12, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px 20px 24px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        border-top: 1px solid rgba(255, 215, 175, 0.08);
        border-radius: 0 0 20px 20px;
        animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    .nav-links.open { 
        display: flex; 
    }
    .nav-links li a {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        color: rgba(255, 255, 255, 0.85);
    }
    .nav-links li a i { 
        width: 24px; 
        text-align: center; 
        font-size: 15px; 
    }
    .nav-links li a:hover { 
        background: rgba(0, 168, 107, 0.08); 
        transform: none; 
    }
    .navbar .btn-cta-desktop { 
        display: none !important; 
    }

    /* Hero Tablet */
    .hero { 
        padding: 35px 0 50px;
        min-height: auto;
    }
    .hero-grid { 
        grid-template-columns: 1fr; 
        gap: 35px; 
    }
    .hero-title { 
        font-size: 34px; 
    }
    .hero-desc { 
        font-size: 15px; 
    }
    .hero-card { 
        max-width: 100%; 
        padding: 24px; 
    }
    .card-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 8px; 
    }
    .icon-card {
        padding: 12px 6px;
    }
    .icon-card i {
        font-size: 20px;
    }
    .icon-card span {
        font-size: 9px;
    }

    .services { 
        padding: 50px 0; 
    }
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 18px; 
    }
    .section-header h2 { 
        font-size: 30px; 
    }
    .section-header p { 
        font-size: 15px; 
    }

    .about { 
        padding: 50px 0; 
    }
    .about-content h2 { 
        font-size: 30px; 
    }
    .about-stats-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    .about-features { 
        grid-template-columns: 1fr 1fr; 
        gap: 8px; 
    }
    .about-stat { 
        padding: 16px 12px; 
    }
    .about-stat .number { 
        font-size: 24px; 
    }

    .areas { 
        padding: 40px 0 50px; 
    }
    .areas-grid span { 
        font-size: 12px; 
        padding: 5px 14px; 
    }

    .contact { 
        padding: 50px 16px 60px; 
        border-radius: 30px 30px 0 0; 
        margin-top: 20px; 
    }
    .contact-info h2 { 
        font-size: 30px; 
    }
    .contact-info > p { 
        font-size: 15px; 
    }
    .contact-form .form-card { 
        padding: 24px 20px; 
        border-radius: 20px; 
    }
    .form-card h3 { 
        font-size: 20px; 
    }
    
    .footer { 
        padding: 40px 0 20px; 
    }
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 25px; 
    }
}

/* Mobile (550px - 819px) */
@media (max-width: 819px) {
    .container { 
        padding: 0 16px; 
    }
    
    .navbar {
        padding: 0 12px;
        height: 62px;
    }
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 10px;
    }
    .logo-text .brand { 
        font-size: 16px; 
    }
    .logo { 
        gap: 8px; 
    }
    
    .nav-links {
        top: 62px;
        padding: 14px 16px 20px;
        border-radius: 0 0 16px 16px;
    }
    .nav-links li a {
        font-size: 13px;
        padding: 10px 14px;
        border-radius: 10px;
    }
    .nav-links li a i { 
        font-size: 14px; 
    }
    .hamburger {
        width: 32px;
        height: 32px;
    }
    .hamburger span { 
        width: 20px; 
        height: 2px; 
    }
    .hamburger.open span:nth-child(1),
    .hamburger.open span:nth-child(3) { 
        width: 20px; 
    }

    /* Hero Mobile */
    .hero { 
        padding: 20px 0 35px;
        min-height: auto;
    }
    .hero-container {
        padding: 0 12px;
    }
    .hero-grid {
        gap: 28px;
    }
    .hero-title { 
        font-size: 26px; 
    }
    .hero-desc { 
        font-size: 14px;
        max-width: 100%;
    }
    .hero-tag {
        font-size: 10px;
        padding: 4px 12px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
        white-space: normal;
        justify-content: center;
        width: 100%;
    }
    .hero-stats { 
        gap: 16px;
        justify-content: space-around;
        padding-top: 16px;
    }
    .stat .number { 
        font-size: 20px; 
    }
    .stat .label { 
        font-size: 10px; 
    }
    .stat-divider { 
        display: none; 
    }
    .hero-card { 
        padding: 16px; 
        border-radius: 20px; 
    }
    .card-grid { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 6px; 
    }
    .icon-card { 
        padding: 10px 4px; 
        border-radius: 10px; 
    }
    .icon-card i { 
        font-size: 16px; 
        margin-bottom: 2px;
    }
    .icon-card span { 
        font-size: 8px; 
    }
    .card-footer p { 
        font-size: 11px; 
    }

    .section-header h2 { 
        font-size: 26px; 
    }
    .section-header p { 
        font-size: 14px; 
    }

    .services { 
        padding: 40px 0; 
    }
    .services-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 14px; 
    }
    .service-image { 
        height: 140px; 
    }
    .service-body { 
        padding: 12px 14px 16px; 
    }
    .service-body h3 { 
        font-size: 14px; 
    }
    .service-body p { 
        font-size: 12px; 
    }
    .service-actions .btn-whatsapp,
    .service-actions .btn-call {
        font-size: 11px;
        padding: 6px 12px;
    }
    .service-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
        bottom: 8px;
        right: 8px;
    }

    .about { 
        padding: 40px 0; 
    }
    .about-content h2 { 
        font-size: 26px; 
    }
    .about-desc { 
        font-size: 14px; 
    }
    .about-features { 
        grid-template-columns: 1fr 1fr; 
        gap: 6px; 
    }
    .feature {
        font-size: 12px;
    }
    .feature i {
        font-size: 14px;
    }
    .about-stats-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 10px; 
    }
    .about-stat { 
        padding: 14px 10px; 
        border-radius: 12px; 
    }
    .about-stat .number { 
        font-size: 22px; 
    }
    .about-stat .label { 
        font-size: 10px; 
    }
    .about-info { 
        padding: 14px 16px; 
        border-radius: 12px; 
    }
    .info-row { 
        padding: 6px 0; 
        gap: 10px; 
    }
    .info-row i { 
        font-size: 14px; 
        width: 18px; 
    }
    .info-row span { 
        font-size: 12px; 
    }

    .areas { 
        padding: 30px 0 40px; 
    }
    .areas-grid { 
        gap: 8px; 
    }
    .areas-grid span { 
        font-size: 11px; 
        padding: 4px 12px; 
    }

    .contact { 
        padding: 30px 12px 40px; 
        border-radius: 20px 20px 0 0; 
    }
    .contact-grid { 
        gap: 30px; 
    }
    .contact-info h2 { 
        font-size: 26px; 
    }
    .contact-info > p { 
        font-size: 14px; 
    }
    .contact-details { 
        gap: 10px; 
    }
    .contact-item { 
        gap: 10px; 
    }
    .contact-item i { 
        font-size: 16px; 
        width: 20px; 
    }
    .contact-item span, .contact-item a { 
        font-size: 13px; 
    }
    .contact-form .form-card { 
        padding: 20px 16px; 
        border-radius: 16px; 
    }
    .form-card h3 { 
        font-size: 18px; 
    }
    .form-card > p { 
        font-size: 12px; 
    }
    .form-group { 
        margin-bottom: 10px; 
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 10px;
    }
    .form-group textarea { 
        min-height: 80px; 
    }
    .submit-btn { 
        padding: 11px 20px; 
        font-size: 14px; 
    }
    .contact-social .social { 
        width: 38px; 
        height: 38px; 
        font-size: 15px; 
    }

    .footer { 
        padding: 30px 0 15px; 
    }
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    .logo-footer { 
        font-size: 17px; 
    }
    .logo-footer i { 
        font-size: 20px; 
    }
    .footer-brand p { 
        font-size: 12px; 
    }
    .footer-links a { 
        font-size: 12px; 
    }
    .footer-contact p { 
        font-size: 12px; 
    }
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
    }
    .footer-bottom p { 
        font-size: 11px; 
    }
}

/* Small Phones (380px - 549px) */
@media (max-width: 549px) {
    .hero-title { 
        font-size: 22px; 
    }
    .hero-card {
        padding: 14px;
    }
    .card-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 6px;
    }
    .icon-card {
        padding: 8px 4px;
    }
    .icon-card i {
        font-size: 14px;
    }
    .icon-card span {
        font-size: 7px;
    }
    .hero-stats {
        gap: 12px;
        flex-wrap: wrap;
    }
    .stat .number {
        font-size: 18px;
    }
    .stat .label {
        font-size: 9px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 12px;
        padding: 10px 16px;
    }

    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 14px; 
    }
    .service-image {
        height: 160px;
    }
    
    .about-features { 
        grid-template-columns: 1fr; 
        gap: 6px; 
    }
    .about-stats-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .about-stat .number {
        font-size: 20px;
    }
    
    .contact-item { 
        flex-wrap: wrap; 
    }
    .contact-social .social {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    
    .areas-grid span {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* Very Small Phones (under 380px) */
@media (max-width: 379px) {
    .hero-title { 
        font-size: 20px; 
    }
    .hero-card {
        padding: 12px;
    }
    .card-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 4px;
    }
    .icon-card {
        padding: 6px 3px;
        border-radius: 8px;
    }
    .icon-card i {
        font-size: 12px;
    }
    .icon-card span {
        font-size: 6px;
    }
    .hero-stats {
        gap: 8px;
    }
    .stat .number {
        font-size: 16px;
    }
    .stat .label {
        font-size: 8px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        font-size: 11px;
        padding: 8px 14px;
    }
    .hero-tag {
        font-size: 9px;
        padding: 3px 10px;
    }
    .hero-desc {
        font-size: 12px;
    }

    .services-grid { 
        grid-template-columns: 1fr; 
    }
    .service-image {
        height: 140px;
    }
    .service-body h3 {
        font-size: 13px;
    }
    .service-body p {
        font-size: 11px;
    }
    
    .about-content h2 {
        font-size: 22px;
    }
    .about-stat .number {
        font-size: 18px;
    }
    .about-stat .label {
        font-size: 9px;
    }
    
    .contact-info h2 {
        font-size: 22px;
    }
    .form-card h3 {
        font-size: 16px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
        padding: 8px 12px;
    }
    .submit-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .areas-grid span {
        font-size: 9px;
        padding: 3px 8px;
    }
}

/* ================================================================ */
/*  SCROLLBAR                                                       */
/* ================================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #1a1a2e; }
::-webkit-scrollbar-thumb { background: #00A86B; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #00C97A; }

* { transition: all 0.3s ease; }