/* System Design & Variable Definitions */
:root {
    --primary: #ff5500; /* Naranja eléctrico street */
    --primary-dark: #cc4400;
    --primary-light: #fff2eb;
    --secondary: #0f172a;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-alternate: #f1f5f9;
    --border: #e2e8f0;
    --border-hover: #cbd5e1;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1280px;
    
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px -12px rgba(255, 85, 0, 0.06);
    --shadow-card: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
    
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

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

/* Reusable Components & Layout Utility classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
    scroll-margin-top: 90px;
}

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

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

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--bg-alternate);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 3px 3px 0px var(--text-main);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--text-main);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-main);
    border-color: var(--text-main);
    box-shadow: 3px 3px 0px rgba(15, 23, 42, 0.15);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0px var(--text-main);
}

/* Header & Glassmorphic Navigation */
header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    height: 75px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}

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

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

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid rgba(226, 232, 240, 0.5);
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none; /* Disable underline effect inside dropdown */
}

.dropdown-menu a:hover {
    background: var(--bg-stone);
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    z-index: 1000;
    padding: 8px 0;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-content li {
    display: block;
}

.nav-dropdown-content a {
    padding: 10px 20px !important;
    display: block;
    font-size: 0.9rem;
    color: var(--text-main) !important;
    font-weight: 500;
}

.nav-dropdown-content a:hover {
    background-color: var(--bg-subtle);
    color: var(--primary) !important;
}

.nav-dropdown-content a::after {
    display: none !important;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Hero Section Styles */
.hero {
    padding: 200px 0 120px;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 85% 15%, rgba(255, 85, 0, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
}

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

.hero-content {
    max-width: 640px;
}

.hero-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-tag-pulse {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    min-height: 120px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    margin-left: -12px;
    background-color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

.trust-avatar:first-child {
    margin-left: 0;
}

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

.trust-text strong {
    color: var(--text-main);
}

/* Floating Web Mockup Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
}

.mockup-main {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 24px;
    width: 100%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 0;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-slow);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
}

.mockup-dots span:nth-child(1) { background-color: #ef4444; }
.mockup-dots span:nth-child(2) { background-color: #eab308; }
.mockup-dots span:nth-child(3) { background-color: #22c55e; }

.mockup-nav {
    width: 60px;
    height: 8px;
    background-color: var(--bg-alternate);
    border-radius: 4px;
}

.mockup-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-hero-shape {
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-hero-shape::before {
    content: '';
    width: 40%;
    height: 6px;
    background-color: var(--primary);
    opacity: 0.3;
    border-radius: 3px;
}

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

.mockup-grid-item {
    height: 64px;
    background-color: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.mockup-badge-float {
    position: absolute;
    background-color: var(--bg-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.badge-float-1 {
    top: -5px;
    right: -10px;
    animation: floating-1 6s ease-in-out infinite;
}

.badge-float-2 {
    bottom: 20px;
    left: -30px;
    animation: floating-2 7s ease-in-out infinite;
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.badge-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.badge-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Animations for floating mockups */
@keyframes floating-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floating-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* Statistics Section */
.stats {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stats-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Services Grid & Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 48px 36px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 85, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 30px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: rotate(6deg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.service-features svg {
    color: #22c55e;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-price strong {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--primary);
    font-weight: 800;
}

/* Process Timeline Section */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    justify-content: flex-end;
    width: 50%;
    padding-right: 40px;
}

.process-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
    margin-left: 50%;
}

.process-number {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-smooth);
}

.process-item:nth-child(even) .process-number {
    left: 0;
}

.process-item:hover .process-number {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

.process-content {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.process-content:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.process-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.process-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Local Info Section & Custom Map Mockup */
.local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.local-details h3 {
    font-size: 1.85rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.local-checklist {
    margin-top: 30px;
}

.local-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.local-checklist-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.local-checklist-text strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.local-checklist-text span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.local-map {
    position: relative;
    background: #f1f5f9;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.local-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) contrast(1.1) brightness(0.95);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.local-map:hover iframe {
    filter: grayscale(0.2) contrast(1) brightness(1);
    opacity: 1;
}

.map-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: var(--bg-white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 280px;
    z-index: 2;
}

.map-badge h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.map-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.map-badge a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.map-badge a:hover {
    color: var(--primary-dark);
}

/* Premium Contact Section with Form */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    padding: 60px;
    background-color: var(--bg-subtle);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-top h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.contact-info-top p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.channel-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.channel-details a, .channel-details strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.channel-details a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    padding: 60px;
}

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

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

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

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

.form-group input, .form-group textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-subtle);
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(255, 85, 0, 0.15);
}

.contact-form button {
    margin-top: 10px;
}

/* Form feedback message */
.ch-form-msg {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    line-height: 1.5;
    display: none;
    grid-column: 1 / -1;
}
.ch-form-msg.success {
    display: block;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}
.ch-form-msg.error {
    display: block;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Modern Footer */
footer {
    background-color: var(--bg-subtle);
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-nav-col h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-newsletter h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    width: 100%;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-form button {
    padding: 10px 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* Animations Core System (Scroll Reveal Classes) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom individual speeds */
.reveal-delay-100 { transition-delay: 100ms; }
.reveal-delay-200 { transition-delay: 200ms; }
.reveal-delay-300 { transition-delay: 300ms; }
.reveal-delay-400 { transition-delay: 400ms; }

/* Responsive adjustments for Mobile & Tablets */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-desc {
        min-height: 100px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-trust {
        width: 100%;
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 40px;
    }
    
    .contact-form-wrapper {
        padding: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-desc {
        min-height: 155px;
    }
    
    /* Navigation Bar Mobile Layout */
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 40px;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-dropdown-content {
        position: relative !important;
        top: 0 !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 20px !important;
        min-width: 100% !important;
        background-color: transparent !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
    
    .dropdown-toggle svg {
        display: none !important;
    }
    
    .dropdown-toggle {
        color: var(--text-muted) !important;
        font-weight: 700 !important;
        pointer-events: none;
    }
    
    /* Hamburger Active Style */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Stats Layout */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    
    /* Timeline Mobile */
    .process-timeline::before {
        left: 20px;
    }
    
    .process-item {
        width: 100%;
        padding-right: 0;
        padding-left: 50px;
        margin-bottom: 40px;
    }
    
    .process-item:nth-child(even) {
        align-self: flex-start;
        justify-content: flex-start;
        padding-left: 50px;
        margin-left: 0;
    }
    
    .process-number {
        left: 20px !important;
        transform: translateX(-50%);
    }
    
    /* Local Layout */
    .local-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .local-map {
        height: 300px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-full {
        grid-column: span 1;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-white);
}

.faq-item summary {
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* WhatsApp Floating Button */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
    z-index: 999;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

