@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* DESIGN SYSTEM VARIABLES */
:root {
    --primary: #0A1931;
    --primary-light: #15305B;
    --secondary: #F58220;
    --secondary-hover: #E06D12;
    --secondary-light: #FFF4EB;
    --text: #334155;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --whatsapp: #25D366;
    --whatsapp-hover: #20BA56;
    --border: #E2E8F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1240px;
}

/* RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

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

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

ul, ol {
    list-style: none;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* BUTTONS & BADGES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 130, 32, 0.3);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 25, 49, 0.2);
}

.btn-whatsapp {
    background-color: var(--bg-white);
    color: var(--whatsapp);
    border: 2px solid var(--whatsapp);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-solid {
    background-color: var(--whatsapp);
    color: var(--bg-white);
}

.btn-whatsapp-solid:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

/* TOPBAR */
.topbar {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.topbar-tagline {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item a {
    color: var(--bg-white);
    font-weight: 600;
}

.topbar-item a:hover {
    color: var(--secondary);
}

.topbar-item svg {
    color: var(--secondary);
    width: 16px;
    height: 16px;
}

.topbar-btn {
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.topbar-btn:hover {
    background-color: var(--secondary-hover);
}

/* HEADER / NAVIGATION */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--secondary);
}

.logo-text h2 {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--border);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
}

.nav-dropdown-item:hover {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 100px 0 140px;
    background: linear-gradient(135deg, rgba(10, 25, 49, 0.92) 0%, rgba(15, 37, 72, 0.85) 100%), url('../images/hero-bg.png') no-repeat center center/cover;
    color: var(--bg-white);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

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

.hero-subtitle-top {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
}

.hero h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--secondary);
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.hero-feature-item svg {
    color: var(--secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 10px;
    backdrop-filter: blur(10px);
}

.hero-image-card img {
    border-radius: var(--radius-md);
    width: 100%;
    box-shadow: var(--shadow-xl);
}

/* STATS BAR */
.stats-container-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stats-bar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border: 1px solid var(--border);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 26px;
    height: 26px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* SECTION GLOBAL STYLES */
.section {
    padding: 90px 0;
}

.section-bg {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(245, 130, 32, 0.3);
}

.service-card-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background-color: var(--secondary);
    color: var(--bg-white);
    transform: scale(1.05);
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* WHY US SECTION */
.why-us-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.why-us-images {
    position: relative;
}

.why-us-main-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 160px;
}

.why-us-badge .badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.why-us-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us-content .section-title {
    margin-bottom: 20px;
}

.why-us-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.why-us-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
}

.why-us-feature-item svg {
    color: var(--secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* PROCESS SECTION */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-num {
    width: 32px;
    height: 32px;
    background-color: var(--secondary);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 0.85rem;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.process-step-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-step-icon svg {
    width: 28px;
    height: 28px;
    color: var(--secondary);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0 10px;
}

/* TESTIMONIALS SECTION */
.testimonials-slider {
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

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

.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-stars {
    color: #F8D01E;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.user-location {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.google-icon {
    width: 22px;
    height: 22px;
    opacity: 0.85;
}

/* SERVICE REGIONS SECTION */
.regions-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.regions-content .section-title {
    margin-bottom: 20px;
}

.regions-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.map-container {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 380px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

/* SVG INTERACTIVE MAP */
.map-svg {
    width: 100%;
    height: 100%;
}

.map-region {
    fill: #E2E8F0;
    stroke: #FFFFFF;
    stroke-width: 1.5;
    transition: var(--transition);
    cursor: pointer;
}

.map-region:hover, .map-region.active {
    fill: var(--secondary-light);
    stroke: var(--secondary);
}

.map-region.highlight {
    fill: #CDE4FF;
    stroke: #0A66C2;
}

.map-marker {
    cursor: pointer;
    transition: var(--transition);
}

.map-marker circle {
    fill: var(--secondary);
    stroke: var(--bg-white);
    stroke-width: 2px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.map-marker text {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 700;
    fill: var(--primary);
}

.map-marker:hover circle {
    transform: scale(1.25);
    fill: var(--primary);
}

/* SEO SECTION / ACCORDIONS */
.seo-text-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.seo-text-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.seo-rich-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.seo-rich-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.seo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.seo-pill {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.seo-pill:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background-color: var(--secondary-light);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-header h3 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-content-inner {
    padding: 0 20px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--bg-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    top: -100px;
    right: -100px;
}

.cta-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-text p {
    opacity: 0.9;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.cta-phone svg {
    width: 28px;
    height: 28px;
}

/* CONTACT PAGE SPECIFICS */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-details h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-info-details p, .contact-info-details a {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info-details a:hover {
    color: var(--secondary);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #DEF7EC;
    color: #03543F;
    border: 1px solid #BCF0DA;
}

.form-status.error {
    display: block;
    background-color: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #FBD5D5;
}

/* REGIONS/BLOG LAYOUTS */
.regions-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.region-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.region-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.region-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.region-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

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

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content h3 a:hover {
    color: var(--secondary);
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

/* FOOTER */
.footer {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 80px 0 30px;
    border-top: 5px solid var(--secondary);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text h2 {
    color: var(--bg-white);
}

.footer-brand p {
    opacity: 0.75;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-column h3 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.footer-link::before {
    content: '›';
    font-size: 1.2rem;
    color: var(--secondary);
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0.85;
}

.footer-contact-item svg {
    color: var(--secondary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    opacity: 0.75;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--whatsapp);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    animation: pulse 2s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-hover);
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ANIMATIONS */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .why-us-images {
        max-width: 500px;
        margin: 0 auto;
    }
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
    .process-timeline::before {
        display: none;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid .testimonial-card:last-child {
        display: none;
    }
    .regions-grid {
        grid-template-columns: 1fr;
    }
    .regions-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        border-top: 1px solid var(--border);
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        min-width: unset;
    }
    
    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        padding-bottom: 10px;
    }
    
    .hero {
        padding: 60px 0 100px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 15px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        display: flex;
    }
    
    .regions-list {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .cta-banner {
        text-align: center;
    }
    
    .cta-banner .container {
        flex-direction: column;
    }
    
    .cta-phone {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-text-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
