/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #222222;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    border: none;
    cursor: pointer;
    min-height: 56px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 56px;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 56px;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    background: #1d4ed8;
}

.btn-form {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: #2563eb;
    margin: 0;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.nav-menu {
    display: none;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.lang-toggle {
    padding: 8px 12px;
    background: #f1f5f9;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: #e2e8f0;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#acceptCookies {
    padding: 10px 20px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: none;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Mobile Bar */
.whatsapp-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #25d366, #128c7e);
    z-index: 1000;
    display: block;
}

.whatsapp-mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #2563eb;
    display: block;
    font-size: 0.9em;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.benefit-icon {
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.hero-card h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.schedule p {
    margin-bottom: 0.25rem;
    color: #cbd5e1;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #60a5fa;
}

/* Service Tabs */
.service-tabs-section {
    margin-top: 4rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-tabs-section h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.tabs-container {
    max-width: 100%;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    color: #222222;
}

.tab-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.tab-btn.active {
    background: #2563eb;
    color: white !important;
    border-color: #2563eb;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.tab-content h5 {
    color: #374151;
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.content-column ul {
    list-style: none;
    margin: 1rem 0;
}

.content-column li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.content-column li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.highlight-box h5 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.price-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #059669;
}

.price-highlight h5 {
    color: #065f46;
    margin-bottom: 1rem;
}

/* Accordion Styles */
.documents-accordion,
.info-accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #2563eb;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-header h5,
.accordion-header h3 {
  margin: 0;
  color: #1e293b;
  font-weight: 500;
  font-size: 22px;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 25px 1.5rem 1.5rem;
    max-height: 2000px;
}

.accordion-content ul {
    list-style: none;
    margin: 1rem 0;
}

.accordion-content li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.accordion-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Pricing Details */
.pricing-details {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-table {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.pricing-table h5 {
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.price-row:last-child {
    border-bottom: none;
}

.service-name {
    color: #374151;
}

.service-price {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.1rem;
}

.whats-included {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

.whats-included h5 {
    color: #059669;
    margin-bottom: 1rem;
}

.comparison-box {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin: 2rem 0;
}

.comparison-box h5 {
    color: #92400e;
    margin-bottom: 1rem;
}

/* Madrid Locations */
.madrid-locations {
    margin: 2rem 0;
}

.location-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.location-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.location-item h5 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.local-advantages {
    margin: 2rem 0;
}

.advantages-grid {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.advantage-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.advantage-item strong {
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Comprehensive Info Section */
.comprehensive-info {
    background: #f8fafc;
    padding: 80px 0;
}

.content-detailed {
    line-height: 1.6;
}

.content-detailed h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.content-detailed h5 {
    color: #374151;
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

.content-detailed h6 {
    color: #4b5563;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.process-steps {
    margin: 2rem 0;
}

.step-detail {
    background: #f4fff4;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #059669;
}

.step-detail strong {
    color: #059669;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cost-breakdown {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.cost-item:last-child {
    border-bottom: none;
}

.warning-box {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin: 2rem 0;
}

.warning-box h5 {
    color: #dc2626;
    margin-bottom: 1rem;
}

/* Moto Types */
.moto-types {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.moto-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.moto-category h6 {
    color: #2563eb;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.moto-pricing {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-moto {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
    margin: 2rem 0;
}

.highlight-moto h5 {
    color: #6b21a8;
    margin-bottom: 1rem;
}

/* Documentation Sections */
.docs-section {
    margin: 2rem 0;
}

.docs-section h6 {
    color: #2563eb;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.specific-docs {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.doc-type {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.important-notes {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 2rem 0;
}

.service-offer {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #059669;
    margin: 2rem 0;
}

/* Full Pricing Table */
.full-pricing-table {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.pricing-category h6 {
    color: #1e293b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-item:last-child {
    border-bottom: none;
}

.official-costs {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cost-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.cost-category h6 {
    color: #92400e;
    margin-bottom: 1rem;
}

/* Value Proposition */
.value-proposition {
    margin: 3rem 0;
}

.value-points {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.value-item strong {
    color: #2563eb;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guarantee-box {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #059669;
    text-align: center;
    margin: 2rem 0;
}

.guarantee-box h5 {
    color: #065f46;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Madrid Coverage */
.madrid-coverage {
    margin: 2rem 0;
}

.zone-detail {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.zone-detail h5 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.districts {
    display: grid;
    gap: 2rem;
}

.district-group,
.metro-group {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.district-group h6,
.metro-group h6 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.south-areas ul,
.west-north-areas ul {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 1rem 0;
}

.south-areas li,
.west-north-areas li {
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    position: relative;
    padding-left: 1.5rem;
}

.south-areas li:before,
.west-north-areas li:before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Local Benefits */
.local-benefits {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #059669;
}

.benefit-item strong {
    color: #059669;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Coverage Stats */
.coverage-stats {
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item span {
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design Updates */
@media (min-width: 768px) {
    .tab-buttons {
        justify-content: center;
    }
    
    .tab-btn {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .moto-types {
        grid-template-columns: 1fr;
    }
    
    .specific-docs {
        grid-template-columns: 1fr;
    }
    
    .full-pricing-table {
        grid-template-columns: 1fr;
    }
    
    .official-costs {
        grid-template-columns: 1fr 1fr;
    }
    
    .value-points {
        grid-template-columns: 1fr 1fr;
    }
    
    .districts {
        grid-template-columns: 1fr 1fr;
    }
    
    .local-benefits {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .moto-types {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .specific-docs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .full-pricing-table {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-points {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .districts {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .local-benefits {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-card.featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-card.popular {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-buttons {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .whatsapp-mobile-bar {
        display: none;
    }
    
    .whatsapp-float {
        display: block;
    }
    
    .nav-menu {
        display: block;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .cookie-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .cookie-content p {
        margin: 0;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-card.featured {
        grid-column: auto;
        transform: scale(1.08);
        max-width: none;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.popular {
        grid-column: auto;
        max-width: none;
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-cta,
    .btn-whatsapp {
        border: 2px solid currentColor;
    }
    
    .service-card,
    .pricing-card {
        border-width: 2px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .whatsapp-mobile-bar,
    .cookie-consent {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}orm-field {
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #2563eb;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #059669;
    font-weight: 500;
}

.trust-icon {
    background: #d1fae5;
    color: #059669;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #f8fafc;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* How it Works */
.steps {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 16px;
}

.cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #2563eb;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.price-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.pricing-footer {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.contact-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #cbd5e1;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: #60a5fa;
    text-decoration: none;
}

.contact-item a:hover {
    color: #93c5fd;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.map-placeholder h4 {
    color: white;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.map-icon {
    font-size: 4rem;
    margin: 2rem 0;
}

.map-text {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* FAQ Section */
.faq {
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}


.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #1e293b;
  margin: 0;
  line-height: 1.6rem;
}