* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ff4500;
    --gradient-start: #ffa500;
    --gradient-end: #ff4500;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #fff5f0;
    --border-color: #ffe4d6;
    --hover-bg: #fff0e6;
    --shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 70px;
}

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--hover-bg);
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--bg-white);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.dropdown-toggle {
    cursor: pointer;
}

.arrow {
    margin-left: 0.35rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    max-height: 450px;
    overflow-y: auto;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--hover-bg), transparent);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.btn-login {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10001;
    padding: 5px;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e6 100%);
    overflow: hidden;
    padding: 3rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 165, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.trust-item i {
    color: #10b981;
    font-size: 1.125rem;
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeInRight 0.8s ease-out;
}

.hero-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-illustration i {
    font-size: 8rem;
    color: white;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.floating-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f5 100%);
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.card-features i {
    color: #10b981;
    font-size: 0.875rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
}

.card-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #fff0e6 0%, #ffe4d6 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.1);
}

.services-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--hover-bg);
    color: var(--text-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    background: linear-gradient(135deg, #fff9f5 0%, #fff0e6 100%);
    border-radius: 16px 16px 0 0;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.modal-icon i {
    font-size: 2rem;
    color: white;
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.consultation-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-whatsapp,
.btn-email {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.btn-email:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 992px) {
    body {
        padding-top: 65px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 320px;
        height: calc(100vh - 65px);
        box-shadow: 2px 0 16px rgba(255, 107, 53, 0.2);
        transition: left 0.3s ease;
        padding: 1rem 0;
        overflow-y: auto;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        justify-content: space-between;
    }

    .dropdown .nav-link {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background-color: var(--bg-light);
        padding: 0;
        margin: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }

    .dropdown.active .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 0.875rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2.5rem;
        background: var(--hover-bg);
    }

    .btn-login {
        margin: 1rem 1.5rem 0.5rem;
        text-align: center;
        display: block;
        width: calc(100% - 3rem);
    }

    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: var(--bg-light);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
        border-radius: 10px;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 1.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-image {
        height: 380px;
        order: -1;
    }

    .hero-illustration {
        width: 220px;
        height: 220px;
    }

    .hero-illustration i {
        font-size: 5.5rem;
    }

    .floating-card {
        padding: 0.875rem 1rem;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card h4 {
        font-size: 1.125rem;
    }

    .floating-card p {
        font-size: 0.75rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.75rem;
    }

    .card-title {
        font-size: 1.35rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        width: 280px;
    }

    .hero-section {
        padding: 1.5rem 0;
    }

    .hero-container {
        padding: 1rem 1rem;
        gap: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .hero-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        font-size: 0.875rem;
    }

    .feature-item i {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-trust {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .trust-item i {
        font-size: 1rem;
    }

    .hero-image {
        display: none;
    }

    .services-section {
        padding: 2.5rem 0;
    }

    .services-container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .services-cta p {
        font-size: 1.125rem;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    .consultation-form {
        padding: 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-whatsapp,
    .btn-email {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 55px;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        width: 260px;
        top: 55px;
        height: calc(100vh - 55px);
    }

    .nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .dropdown-menu a {
        padding: 0.65rem 1.75rem;
        font-size: 0.85rem;
    }

    .btn-login {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        margin: 1rem 1rem 0.5rem;
        width: calc(100% - 2rem);
    }

    .hero-section {
        padding: 1rem 0;
    }

    .hero-container {
        padding: 0.75rem 0.75rem;
        gap: 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .feature-item {
        font-size: 0.8rem;
    }

    .feature-item i {
        font-size: 1.125rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.625rem;
    }

    .trust-item {
        font-size: 0.75rem;
    }

    .trust-item i {
        font-size: 0.95rem;
    }

    .hero-image {
        display: none;
    }

    .services-section {
        padding: 2rem 0;
    }

    .services-container {
        padding: 0 1rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.875rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .card-icon {
        width: 55px;
        height: 55px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-description {
        font-size: 0.875rem;
    }

    .card-features li {
        font-size: 0.85rem;
    }

    .services-cta {
        padding: 1.75rem 1rem;
    }

    .services-cta p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .modal-header {
        padding: 1.75rem 1rem 1rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-icon i {
        font-size: 1.75rem;
    }

    .modal-header h3 {
        font-size: 1.35rem;
    }

    .modal-header p {
        font-size: 0.875rem;
    }

    .consultation-form {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-whatsapp,
    .btn-email {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
    .nav-link {
        padding: 0.75rem 0.85rem;
        font-size: 0.9rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 360px) {
    .logo-img {
        height: 35px;
    }

    .nav-menu {
        width: 240px;
    }

    .nav-link {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }

    .hero-title {
        font-size: 1.375rem;
    }

    .hero-description {
        font-size: 0.8125rem;
    }

    .hero-badge span {
        font-size: 0.65rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .hero-image {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff9f5 0%, #ffffff 50%, #fff9f5 100%);
    position: relative;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.featured-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    grid-column: span 1;
}

.featured-card .feature-title,
.featured-card .feature-description,
.featured-card .stat-item h4,
.featured-card .stat-item p {
    color: white;
}

.featured-card::before {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(1);
    height: 5px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.featured-card .feature-description strong {
    color: var(--gradient-start);
}

.feature-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-card .stat-item h4 {
    color: white;
    -webkit-text-fill-color: white;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.6;
}

.feature-list i {
    color: #10b981;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.75rem;
    }
}

@media screen and (max-width: 992px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.35rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .stat-item h4 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-section {
        padding: 2.5rem 0;
    }

    .why-choose-container {
        padding: 0 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-title {
        font-size: 1.25rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    .feature-list li {
        font-size: 0.85rem;
    }

    .feature-stats {
        gap: 1rem;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-section {
        padding: 2rem 0;
    }

    .why-choose-container {
        padding: 0 1rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.35rem;
    }

    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .feature-description {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }

    .feature-list li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .feature-stats {
        grid-template-columns: 1fr;
        gap: 0.875rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 0.875rem;
    }

    .stat-item h4 {
        font-size: 1.35rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 360px) {
    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.75rem;
    }

    .feature-list li {
        font-size: 0.75rem;
    }
}
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-header {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.trust-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trust-card {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.2);
}

.trust-card:hover .trust-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.trust-icon i {
    font-size: 2.5rem;
    color: white;
}

.trust-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.trust-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

@media screen and (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.75rem;
    }
}

@media screen and (max-width: 992px) {
    .trust-section {
        padding: 3rem 0;
    }

    .trust-header {
        margin-bottom: 3rem;
    }

    .trust-title {
        font-size: 2.25rem;
    }

    .trust-description {
        font-size: 1rem;
    }

    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .trust-card {
        padding: 2.5rem 1.75rem;
    }

    .trust-icon {
        width: 80px;
        height: 80px;
    }

    .trust-icon i {
        font-size: 2.25rem;
    }

    .trust-card-title {
        font-size: 1.35rem;
    }

    .trust-card-description {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .trust-section {
        padding: 2.5rem 0;
    }

    .trust-container {
        padding: 0 1.5rem;
    }

    .trust-header {
        margin-bottom: 2.5rem;
    }

    .trust-title {
        font-size: 2rem;
    }

    .trust-description {
        font-size: 0.95rem;
    }

    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.25rem;
    }

    .trust-card {
        padding: 2rem 1.5rem;
    }

    .trust-icon {
        width: 70px;
        height: 70px;
    }

    .trust-icon i {
        font-size: 2rem;
    }

    .trust-card-title {
        font-size: 1.25rem;
    }

    .trust-card-description {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .trust-card {
        padding: 1.75rem 1.25rem;
    }

    .trust-icon {
        width: 65px;
        height: 65px;
    }

    .trust-icon i {
        font-size: 1.75rem;
    }

    .trust-card-title {
        font-size: 1.125rem;
    }

    .trust-card-description {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 480px) {
    .trust-section {
        padding: 2rem 0;
    }

    .trust-container {
        padding: 0 1rem;
    }

    .trust-header {
        margin-bottom: 2rem;
    }

    .trust-title {
        font-size: 1.75rem;
    }

    .trust-description {
        font-size: 0.875rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-card {
        padding: 1.5rem 1rem;
    }

    .trust-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .trust-icon i {
        font-size: 1.5rem;
    }

    .trust-card-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .trust-card-description {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 360px) {
    .trust-title {
        font-size: 1.5rem;
    }

    .trust-description {
        font-size: 0.8125rem;
    }

    .trust-card {
        padding: 1.25rem 0.875rem;
    }

    .trust-icon {
        width: 55px;
        height: 55px;
    }

    .trust-icon i {
        font-size: 1.35rem;
    }

    .trust-card-title {
        font-size: 0.95rem;
    }

    .trust-card-description {
        font-size: 0.75rem;
    }
}
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-icon {
    background: linear-gradient(135deg, #ea4335, #c5221f);
}

.location-icon {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
}

.social-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.info-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.info-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.info-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.info-link i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.info-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.info-address i {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.btn-whatsapp-contact {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.btn-whatsapp-contact:hover {
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-email-contact {
    background: linear-gradient(135deg, #ea4335, #c5221f);
}

.btn-email-contact:hover {
    box-shadow: 0 6px 16px rgba(234, 67, 53, 0.4);
}

.btn-map-contact {
    background: linear-gradient(135deg, #4285f4, #1a73e8);
}

.btn-map-contact:hover {
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
}

.social-media-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.social-media-card .info-header h3,
.social-media-card .info-description {
    color: white;
}

.social-media-card:hover {
    border-color: #667eea;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.facebook-link:hover {
    background: #1877f2;
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.twitter-link:hover {
    background: #000000;
}

.linkedin-link:hover {
    background: #0077b5;
}

.youtube-link:hover {
    background: #ff0000;
}

.telegram-link:hover {
    background: #0088cc;
}

.social-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-stats .stat {
    text-align: center;
}

.social-stats .stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.social-stats .stat span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.quote-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.btn-submit-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-submit-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-submit-quote:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-footer-note {
    text-align: center;
    margin-top: 1rem;
}

.form-footer-note p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0.5rem 0;
}

.form-footer-note i {
    color: #10b981;
}

.social-banner {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.social-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.social-banner-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.social-banner-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.social-banner-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.banner-social-link:nth-child(1):hover {
    color: #1877f2;
}

.banner-social-link:nth-child(2):hover {
    color: #e1306c;
}

.banner-social-link:nth-child(3):hover {
    color: #000000;
}

.banner-social-link:nth-child(4):hover {
    color: #0077b5;
}

.banner-social-link:nth-child(5):hover {
    color: #ff0000;
}

.banner-social-link:nth-child(6):hover {
    color: #0088cc;
}

@media screen and (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-options {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }

    .social-media-card {
        grid-column: span 2;
    }
}

@media screen and (max-width: 992px) {
    .contact-section {
        padding: 3rem 0;
    }

    .quote-form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .social-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .social-banner-links {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-container {
        padding: 0 1.5rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .social-media-card {
        grid-column: span 1;
    }

    .quote-form-wrapper {
        padding: 1.75rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .btn-submit-quote {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .social-banner {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .social-banner-text h3 {
        font-size: 1.5rem;
    }

    .social-banner-text p {
        font-size: 0.9rem;
    }

    .banner-social-link {
        width: 50px;
        height: 50px;
        font-size: 1.35rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 2rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .social-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .quote-form-wrapper {
        padding: 1.5rem;
    }

    .form-header {
        margin-bottom: 1.5rem;
    }

    .form-title {
        font-size: 1.35rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .btn-submit-quote {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .form-footer-note p {
        font-size: 0.8rem;
    }

    .social-banner {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }

    .social-banner-text h3 {
        font-size: 1.25rem;
    }

    .social-banner-text p {
        font-size: 0.85rem;
    }

    .social-banner-links {
        gap: 0.75rem;
    }

    .banner-social-link {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 360px) {
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}
.locations-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.locations-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.locations-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.location-item i {
    font-size: 1.125rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.location-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.location-item:hover a {
    color: var(--primary-color);
}

.locations-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-more-locations {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-more-locations:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    gap: 1rem;
}

.btn-more-locations i {
    transition: transform 0.3s ease;
}

.btn-more-locations:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media screen and (max-width: 992px) {
    .locations-section {
        padding: 3rem 0;
    }

    .locations-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .location-item {
        padding: 0.875rem 1.25rem;
    }

    .location-item a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .locations-section {
        padding: 2.5rem 0;
    }

    .locations-container {
        padding: 0 1.5rem;
    }

    .locations-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .location-item {
        padding: 0.75rem 1rem;
    }

    .location-item i {
        font-size: 1rem;
    }

    .location-item a {
        font-size: 0.85rem;
    }

    .btn-more-locations {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .locations-section {
        padding: 2rem 0;
    }

    .locations-container {
        padding: 0 1rem;
    }

    .locations-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .location-item {
        padding: 0.75rem 1rem;
    }

    .location-item i {
        font-size: 0.95rem;
    }

    .location-item a {
        font-size: 0.8rem;
    }

    .btn-more-locations {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 360px) {
    .locations-title {
        font-size: 1.5rem;
    }

    .location-item {
        padding: 0.625rem 0.875rem;
    }

    .location-item a {
        font-size: 0.75rem;
    }
}
.about-company-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fff9f5 100%);
    position: relative;
}

.about-company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.quick-links-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.quick-link-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.quick-link-icon i {
    font-size: 2rem;
    color: white;
}

.quick-link-item span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quick-link-item:hover span {
    color: var(--primary-color);
}

.about-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-main-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.company-name-link {
    color: inherit;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.company-name-link:hover {
    text-decoration: underline;
}

.location-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
}

.location-link:hover {
    text-decoration: underline;
}

.about-description,
.about-features {
    margin-bottom: 2rem;
}

.about-description p,
.about-features p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inline-link:hover {
    text-decoration: underline;
}

.about-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.4;
    margin: 2.5rem 0 1.5rem;
}

.highlight-text {
    color: #10b981;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-about-primary,
.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-about-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-about-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

@media screen and (max-width: 992px) {
    .about-company-section {
        padding: 3rem 0;
    }

    .quick-links-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .quick-link-item {
        padding: 1.5rem 1rem;
    }

    .quick-link-icon {
        width: 60px;
        height: 60px;
    }

    .quick-link-icon i {
        font-size: 1.75rem;
    }

    .quick-link-item span {
        font-size: 1rem;
    }

    .about-content {
        padding: 2.5rem;
    }

    .about-main-title {
        font-size: 1.75rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .about-company-section {
        padding: 2.5rem 0;
    }

    .about-company-container {
        padding: 0 1.5rem;
    }

    .quick-links-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .quick-link-item {
        padding: 1.25rem 0.875rem;
    }

    .quick-link-icon {
        width: 55px;
        height: 55px;
    }

    .quick-link-icon i {
        font-size: 1.5rem;
    }

    .quick-link-item span {
        font-size: 0.95rem;
    }

    .about-content {
        padding: 2rem;
    }

    .about-main-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-subtitle {
        font-size: 1.35rem;
        margin: 2rem 0 1.25rem;
    }

    .about-description p,
    .about-features p {
        font-size: 0.95rem;
        text-align: left;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .about-company-section {
        padding: 2rem 0;
    }

    .about-company-container {
        padding: 0 1rem;
    }

    .quick-links-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .quick-link-item {
        padding: 1rem 0.75rem;
    }

    .quick-link-icon {
        width: 50px;
        height: 50px;
    }

    .quick-link-icon i {
        font-size: 1.35rem;
    }

    .quick-link-item span {
        font-size: 0.875rem;
    }

    .about-content {
        padding: 1.5rem;
    }

    .about-main-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .about-subtitle {
        font-size: 1.125rem;
        margin: 1.75rem 0 1rem;
    }

    .about-description p,
    .about-features p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .btn-about-primary,
    .btn-about-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 360px) {
    .about-main-title {
        font-size: 1.125rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-description p,
    .about-features p {
        font-size: 0.8125rem;
    }
}
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
    border-color: var(--border-color);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.faq-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-link:hover {
    text-decoration: underline;
}

.faq-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
}

.faq-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem 0;
}

.faq-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-faq-call,
.btn-faq-whatsapp,
.btn-faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-faq-call:hover,
.btn-faq-whatsapp:hover,
.btn-faq-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-faq-whatsapp {
    color: #25d366;
}

.btn-faq-contact {
    color: #4285f4;
}

@media screen and (max-width: 992px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-cta {
        padding: 2.5rem 2rem;
    }

    .faq-cta h3 {
        font-size: 1.75rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .faq-section {
        padding: 2.5rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-wrapper {
        margin-top: 2.5rem;
        gap: 0.875rem;
    }

    .faq-question {
        padding: 1.125rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-question i {
        font-size: 0.875rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.125rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }

    .faq-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .btn-faq-call,
    .btn-faq-whatsapp,
    .btn-faq-contact {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .faq-wrapper {
        margin-top: 2rem;
        gap: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .faq-question span {
        padding-right: 0.5rem;
    }

    .faq-question i {
        font-size: 0.75rem;
        margin-left: 0.5rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.85rem;
    }

    .faq-cta {
        padding: 1.75rem 1.25rem;
        margin-top: 2.5rem;
    }

    .faq-cta h3 {
        font-size: 1.35rem;
    }

    .faq-cta p {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .btn-faq-call,
    .btn-faq-whatsapp,
    .btn-faq-contact {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 360px) {
    .faq-question {
        font-size: 0.8125rem;
        padding: 0.875rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
        padding: 0 0.875rem 0.875rem 0.875rem;
    }
}
.testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f5 100%);
    position: relative;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-avatar i {
    font-size: 1.75rem;
    color: white;
}

.customer-info {
    flex: 1;
}

.customer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.customer-location {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

.customer-rating {
    display: flex;
    gap: 0.25rem;
}

.customer-rating i {
    font-size: 0.875rem;
    color: #fbbf24;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-type i {
    font-size: 0.875rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.testimonial-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
}

.testimonial-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem 0;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: #10b981;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-write-review:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.testimonial-platforms {
    margin-top: 3rem;
    text-align: center;
}

.platforms-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.platform-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.platform-link i {
    font-size: 1.25rem;
}

@media screen and (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .testimonial-section {
        padding: 3rem 0;
    }

    .testimonial-stats {
        margin: 2.5rem 0;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .testimonial-cta {
        padding: 2.5rem 2rem;
    }

    .testimonial-cta h3 {
        font-size: 1.75rem;
    }

    .testimonial-cta p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .testimonial-section {
        padding: 2.5rem 0;
    }

    .testimonial-container {
        padding: 0 1.5rem;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin: 2rem 0;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .testimonial-cta h3 {
        font-size: 1.5rem;
    }

    .testimonial-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-write-review {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .platform-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .testimonial-section {
        padding: 2rem 0;
    }

    .testimonial-container {
        padding: 0 1rem;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .stat-box {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .testimonial-grid {
        gap: 1rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
    }

    .customer-avatar i {
        font-size: 1.5rem;
    }

    .customer-name {
        font-size: 1rem;
    }

    .customer-location {
        font-size: 0.8rem;
    }

    .testimonial-content p {
        font-size: 0.875rem;
    }

    .service-type {
        font-size: 0.8rem;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .testimonial-cta {
        padding: 1.75rem 1.25rem;
        margin-top: 2.5rem;
    }

    .testimonial-cta h3 {
        font-size: 1.35rem;
    }

    .testimonial-cta p {
        font-size: 0.875rem;
    }

    .btn-write-review {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .platforms-title {
        font-size: 1rem;
    }

    .platform-link {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 360px) {
    .stat-number {
        font-size: 1.5rem;
    }

    .customer-name {
        font-size: 0.95rem;
    }

    .testimonial-content p {
        font-size: 0.8125rem;
    }
}
.blog-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.featured-post {
    grid-column: span 3;
    flex-direction: row;
}

.featured-post .blog-image {
    width: 45%;
    height: auto;
}

.featured-post .blog-content {
    width: 55%;
    padding: 2.5rem;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-date i,
.blog-read-time i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 1rem 0;
}

.blog-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-read-more i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.blog-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
}

.blog-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 2rem 0;
}

.btn-view-all-blogs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-view-all-blogs:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .featured-post {
        grid-column: span 2;
    }
}

@media screen and (max-width: 992px) {
    .blog-section {
        padding: 3rem 0;
    }

    .blog-grid {
        margin-top: 2.5rem;
    }

    .featured-post {
        flex-direction: column;
    }

    .featured-post .blog-image {
        width: 100%;
        height: 280px;
    }

    .featured-post .blog-content {
        width: 100%;
        padding: 2rem;
    }

    .blog-cta {
        padding: 2.5rem 2rem;
    }

    .blog-cta h3 {
        font-size: 1.75rem;
    }

    .blog-cta p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .blog-section {
        padding: 2.5rem 0;
    }

    .blog-container {
        padding: 0 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .featured-post {
        grid-column: span 1;
    }

    .featured-post .blog-image {
        height: 240px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .featured-post .blog-content {
        padding: 1.75rem;
    }

    .blog-title {
        font-size: 1.125rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .blog-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .blog-cta h3 {
        font-size: 1.5rem;
    }

    .blog-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-view-all-blogs {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .blog-section {
        padding: 2rem 0;
    }

    .blog-container {
        padding: 0 1rem;
    }

    .blog-grid {
        gap: 1rem;
    }

    .blog-image {
        height: 180px;
    }

    .featured-post .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.25rem;
    }

    .featured-post .blog-content {
        padding: 1.5rem;
    }

    .blog-meta {
        gap: 1rem;
    }

    .blog-date,
    .blog-read-time {
        font-size: 0.8rem;
    }

    .blog-title {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .blog-read-more {
        font-size: 0.875rem;
    }

    .blog-category {
        padding: 0.375rem 0.75rem;
        font-size: 0.7rem;
    }

    .blog-cta {
        padding: 1.75rem 1.25rem;
        margin-top: 2.5rem;
    }

    .blog-cta h3 {
        font-size: 1.35rem;
    }

    .blog-cta p {
        font-size: 0.875rem;
    }

    .btn-view-all-blogs {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 360px) {
    .blog-title {
        font-size: 0.95rem;
    }

    .blog-excerpt {
        font-size: 0.8rem;
    }
}
  .footer-section {
    background: #1a1a1a;
    color: #e5e5e5;
    padding: 4rem 0 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin: 0;
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.footer-stat {
    background: #252525;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #333;
}

.footer-stat h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 0.25rem 0;
}

.footer-stat p {
    font-size: 0.8rem;
    color: #b0b0b0;
    margin: 0;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.footer-office {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.office-address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.office-contact,
.office-support {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.office-support h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0.5rem 0 0.5rem 0;
}

.contact-item,
.support-item {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover,
.support-item:hover {
    color: var(--primary-color);
}

.contact-item i,
.support-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.working-hours {
    background: #252525;
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #333;
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid #333;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row.closed {
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
    padding: 0.625rem 0.5rem;
}

.hours-row .day {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5e5e5;
}

.hours-row .time {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.hours-row.closed .time {
    color: #ef4444;
    font-weight: 700;
}

.live-clock {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.clock-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
}

.clock-time {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.5rem 0;
    font-family: 'Courier New', monospace;
}

.clock-timezone {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

.status-dot.closed {
    background: #ef4444;
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.footer-bottom {
    background: #0f0f0f;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    .footer-section {
        padding: 3rem 0 0;
    }

    .footer-container {
        padding: 0 1.5rem 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .clock-time {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-section {
        padding: 2.5rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-stats {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 0 1rem 2rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .footer-links a,
    .contact-item,
    .support-item {
        font-size: 0.85rem;
    }

    .clock-time {
        font-size: 1.5rem;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
