/* Reset y variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a; /* Azul corporativo */
    --secondary-color: #64748b; /* Gris */
    --accent-color: #f59e0b; /* Amarillo/naranja */
    --bg-color: #f8fafc;
    --text-color: #1e293b;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInDrawer {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes partnersScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1.2s ease-out;
}

/* Body */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.site-header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

nav {
    position: relative;
    width: 100%;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin-left: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    max-width: 80%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.mobile-menu__title {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__list li a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mobile-menu__list li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6), rgba(103, 126, 182, 0.6)), url('https://source.unsplash.com/1200x400/?business,handshake') no-repeat center/cover;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Intro Video */
.intro-video {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-video__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.intro-video__media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-video__ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.intro-video__ratio iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.intro-video__ratio video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.intro-video__unmute {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.intro-video__unmute:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-1px);
}

.intro-video__unmute[hidden] {
    display: none;
}

.intro-video__content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-video__content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.intro-video__content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* About */
.about-preview {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.about-preview h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-preview p {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.stats-section h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.features-section h2 {
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align: center;
}

.testimonials-section h2 {
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(226, 232, 240, 0.9));
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.partners-section .container {
    text-align: center;
}

.partners-subtitle {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--secondary-color);
    font-size: 1rem;
}

.partners-marquee {
    overflow: hidden;
    margin-top: 30px;
}

.partners-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: partnersScroll 22s linear infinite;
}

.partner-badge {
    padding: 12px 24px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.02em;
    white-space: nowrap;
    border: 1px solid rgba(30, 58, 138, 0.12);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

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

.ratings-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.ratings-content {
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 40px;
    align-items: center;
}

.ratings-score-card {
    border-radius: 24px;
    padding: 36px 32px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(37, 99, 235, 0.9));
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.25);
}

.rating-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ratings-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.ratings-score-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.ratings-metrics {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.metric-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.metric-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.metric-score {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.metric-bar {
    position: relative;
    height: 10px;
    background: rgba(30, 58, 138, 0.15);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 14px;
}

.metric-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), rgba(30, 58, 138, 0.85));
    border-radius: inherit;
}

.metric-item p {
    margin: 0;
    color: var(--secondary-color);
}

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

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.1rem;
}

.faq-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--secondary-color);
}

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

.faq-list details {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-list details[open] {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.12);
}

.faq-list summary {
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 24px;
}

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

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list p {
    margin-top: 12px;
    color: var(--text-color);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 8px;
    width: 16px;
}

.footer-social .social-link {
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social .social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    text-align: left;
}

.footer-bottom__copy,
.footer-bottom__brand {
    margin: 0;
}

.footer-bottom__brand {
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form h2,
.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Enhanced Submit Button Styles */
#quote-form button[type="submit"] {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#quote-form button[type="submit"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

#quote-form button[type="submit"]:hover:before {
    left: 100%;
}

#quote-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1d4ed8 100%);
}

#quote-form button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.3);
}

#quote-form button[type="submit"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

#quote-form button[type="submit"] i {
    margin-right: 8px;
}

/* Loading animation for submit button */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Quote Hero */
.quote-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.quote-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.quote-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.quote-form-section form {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form {
    max-width: none;
}

.quote-form__layout {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1fr);
    gap: 32px;
    align-items: start;
}

.quote-form__card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.quote-form__section {
    padding: 32px;
    position: relative;
}

.quote-form__section + .quote-form__section {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.quote-form__section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.quote-form__section-header h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.quote-form__section-header p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.quote-form__section-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(30, 64, 175, 0.35));
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.quote-form__field label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.quote-form__field input,
.quote-form__field select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 14px;
    background-color: rgba(248, 250, 252, 0.85);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.quote-form__field input:focus,
.quote-form__field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
    background-color: var(--white);
}

.quote-form__field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(30, 58, 138, 0.6) 50%),
                      linear-gradient(135deg, rgba(30, 58, 138, 0.6) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% + 4px);
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
    padding-right: 44px;
}

.quote-form__consent {
    padding: 0 32px 28px;
    background: rgba(226, 232, 240, 0.2);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.consent-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
}

.consent-checkbox span a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.quote-form__submit {
    padding: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(226, 232, 240, 0.6));
    display: flex;
    justify-content: flex-end;
}

.quote-form__submit .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.quote-form__aside {
    position: relative;
}

.quote-form__aside-card {
    position: sticky;
    top: 120px;
    background: linear-gradient(150deg, rgba(30, 58, 138, 0.95), rgba(37, 99, 235, 0.9));
    color: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.35);
    overflow: hidden;
}

.quote-form__aside-card h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.quote-form__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 14px;
}

.quote-form__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    font-size: 0.98rem;
}

.quote-form__benefits i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.quote-form__privacy {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-form__privacy i {
    font-size: 1rem;
}

@media (max-width: 1080px) {
    .quote-form__layout {
        grid-template-columns: 1fr;
    }

    .quote-form__aside-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .quote-form__section {
        padding: 24px;
    }

    .quote-form__consent {
        padding: 0 24px 24px;
    }

    .quote-form__submit {
        padding: 24px;
        justify-content: center;
    }

    .quote-form__grid {
        grid-template-columns: 1fr;
    }

    .quote-form__section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .quote-form__section-icon {
        width: 42px;
        height: 42px;
    }
}

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

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

.full-width {
    width: 100%;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-section p, .content-section ul {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* About Page Styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.content-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.content-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.mission-vision-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.mission-icon, .vision-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.mission-card p, .vision-card p {
    line-height: 1.6;
    color: var(--text-color);
}

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

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.team-section > p {
    margin-bottom: 50px;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.member-role {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.stats-about-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.stats-about-section h2 {
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.stats-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-about-item {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-about-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-about-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.cta-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-about-buttons .btn-primary,
.cta-about-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    /* Header Mobile */
    .site-header .container {
        flex-direction: column;
        align-items: center;
        padding: 6px 15px;
        gap: 6px;
        position: relative;
    }

    .logo h1 {
        font-size: 1.3rem;
        margin-bottom: 0;
        text-align: center;
        font-weight: 600;
    }

    /* Hide only the header nav on mobile; keep drawer nav visible */
    .site-header nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1003;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }

    /* Intro Video Mobile */
    .intro-video {
        padding: 50px 0;
        text-align: center;
    }

    .intro-video__layout {
        gap: 20px;
    }

    .intro-video__media {
        border-radius: 12px;
    }

    .intro-video__content h2 {
        font-size: 1.6rem;
    }

    .intro-video__content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .intro-video__content .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .partners-track {
        animation-duration: 28s;
    }

    .partner-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .partners-track {
        animation-duration: 34s;
    }

    .partner-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 40px 0;
    }

    .stats-section h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    /* Features Mobile */
    .features-section {
        padding: 40px 0;
    }

    .features-section h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 20px 15px;
        text-align: center;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-section h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 15px;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-intro {
        margin-bottom: 25px;
    }

    .faq-list details {
        padding: 14px 16px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 40px 0;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    .site-footer {
        padding: 25px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo h2 {
        font-size: 1.2rem;
    }

    .footer-links ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

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

    .footer-social .social-link {
        margin-right: 15px;
        font-size: 1.6rem;
    }

    /* Contact Page Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }

    /* About Page Mobile */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-icon {
        font-size: 3.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .value-card {
        padding: 15px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stats-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cta-about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-about-buttons .btn-primary,
    .cta-about-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }

    /* Services Page Mobile */
    .overview-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .overview-icon {
        font-size: 4rem;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-detailed-card {
        padding: 15px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-step {
        padding: 15px;
    }

    .cta-services-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-services-buttons .btn-primary,
    .cta-services-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Extra Small Devices (phones < 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

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

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

    .features-grid,
    .testimonials-grid {
        gap: 15px;
    }

    .feature-card,
    .testimonial-card {
        padding: 20px 15px;
    }

    .faq-list details {
        padding: 12px 14px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .footer-links ul {
        grid-template-columns: 1fr;
    }

    /* Form Mobile Optimizations */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }

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

    /* Touch-friendly buttons */
    button[type="submit"],
    .btn-primary,
    .btn-secondary {
        min-height: 44px; /* iOS touch target minimum */
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Services Page Styles */
.services-overview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.overview-text p {
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.overview-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overview-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.overview-feature span {
    font-weight: 500;
}

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

.overview-icon {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.7;
}

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

.services-detailed-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-detailed-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-detailed-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.4rem;
}

.service-detailed-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

.service-btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    background: #25d366;
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2.8s ease-in-out infinite;
    will-change: transform, box-shadow;
}

.service-btn--whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 22px rgba(37, 211, 102, 0.45);
    animation-play-state: paused;
}

.service-btn--whatsapp i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-btn--whatsapp:hover i {
    transform: rotate(-8deg) scale(1.15);
}

@keyframes whatsappPulse {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 16px rgba(37, 211, 102, 0.35);
    }
    50% {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 12px 24px rgba(37, 211, 102, 0.45);
    }
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 16px rgba(37, 211, 102, 0.35);
    }
}

.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.process-section h2 {
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    opacity: 0.9;
    line-height: 1.6;
}

.cta-services-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.cta-services-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-services-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-services-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-services-buttons .btn-primary,
.cta-services-buttons .btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .ratings-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ratings-score-card {
        max-width: 360px;
        margin: 0 auto;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* About page responsive */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-icon {
        font-size: 5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .stats-about-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .cta-about-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-about-buttons .btn-primary,
    .cta-about-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Services page responsive */
    .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .overview-icon {
        font-size: 5rem;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-services-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-services-buttons .btn-primary,
    .cta-services-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}