/* ==========================================
   SHARED STYLES - Index + Produto
   ========================================== */

/* Global Styles */
:root {
    --primary-color: #461BFF;
    --primary-hover: #3700b3;
    --text-color: #333;
    --text-secondary: #666;
    --background-light: #f9f9fc;
    --white: #ffffff;
    --border-radius: 10px;
    --transition-speed: 0.3s;
    /* Accent color, overridden per-domain by main.js */
    --site-color: #256652;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
}

.header-logos-container {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.header-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1428A4;
    max-width: 166px;
    flex-shrink: 0;
    line-height: 1.1;
}

.logo-global-opsi {
    height: 68px;
    width: auto;
}

@media (max-width: 768px) {
    .header-logos-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo-global-opsi {
        order: 2;
        height: 58px;
    }

    .header-title {
        order: 1;
        font-size: 1.3rem;
    }

    .header-logo {
        align-items: flex-start;
        /* Align to top/left on mobile */
    }
}

.header-contact {
    flex: 0 0 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.header-contact .label {
    display: block;
    font-weight: bold;
    color: #16203a;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.header-contact .phones {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    gap: 20px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.phone-icon {
    width: 22px;
    height: 22px;
    fill: #2f4fd0;
}

@media (max-width: 768px) {
    .header-contact .phones {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
}

/* Hero Section */
.hero-pro {
    position: relative;
    padding: 40px 0 0;
    overflow: hidden;
    background-color: #dbdbdb;
    /* First layer (the photo) is swapped per-domain by main.js via --hero-image */
    background-image:
        var(--hero-image, url('assets/Contadores.webp')),
        url('assets/shadow.svg');
    background-repeat: no-repeat, no-repeat;
    background-position: center bottom, center center;
    background-size: auto 92%, 100% 100%;
}

.hero-pro-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 330px;
    column-gap: 40px;
    align-items: end;
}

.hero-pro-text {
    padding-bottom: 60px;
    align-self: center;
}

.hero-pro-title {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.15;
    color: #16203a;
    margin: 0;
}

.hero-pro-divider {
    display: block;
    width: 56px;
    height: 5px;
    margin: 20px 0 24px;
    background: #2f8f6f;
    border-radius: 2px;
}

.hero-pro-lead {
    font-size: 1.25rem;
    line-height: 1.35;
    color: #2b3242;
    margin: 0 0 14px;
}

.hero-pro-lead strong {
    color: #16203a;
}

.hero-pro-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 28px;
}

.hero-pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 16px 0 16px 0;
    transition: border-radius 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}

.hero-pro-btn:hover {
    border-radius: 0 16px 0 16px;
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.hero-pro-btn--green {
    background: #2e7d5f;
}

.hero-pro-btn--whatsapp {
    background: #3fb168;
}

.hero-pro-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.hero-pro-image {
    min-height: 540px;
}

.hero-pro-image-mobile {
    display: none;
}

.hero-pro-card {
    background: #1e6350;
    border-radius: 16px;
    padding: 22px 20px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    align-self: baseline;
}

.hero-pro-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #fff;
}

.hero-pro-card-subtitle {
    font-size: 0.9rem;
    margin: 0 0 16px;
    opacity: 0.92;
}

.hero-pro-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-pro-input {
    width: 100%;
    box-sizing: border-box;
    padding: 9px 13px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-family: inherit;
    font-size: 0.85rem;
    line-height: 1.5;
}

.hero-pro-input::placeholder {
    color: #8a8a8a;
}

textarea.hero-pro-input {
    resize: vertical;
    min-height: 64px;
}

.hero-pro-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.hero-pro-submit {
    margin-top: 4px;
    padding: 11px 18px;
    border: none;
    border-radius: 8px;
    background: #3f63e8;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-pro-submit:hover {
    background: #2f4fd0;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .hero-pro {
        background-image: url('assets/shadow.svg');
        background-position: center center;
        background-size: cover;
    }

    .hero-pro-inner {
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
        align-items: center;
    }

    .hero-pro-image {
        display: none;
    }

    .hero-pro-image-mobile {
        display: block;
        height: 260px;
        margin: 20px 0 0;
        background-image: var(--hero-image, url('assets/Contadores.webp'));
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
    }

    .hero-pro-image-mobile + .hero-pro-actions {
        margin-top: 0;
    }

    .hero-pro-text {
        padding-bottom: 40px;
    }

    .hero-pro-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 680px) {
    .hero-pro {
        padding: 32px 0 0;
    }

    .hero-pro-inner {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .hero-pro-text {
        padding-bottom: 0;
    }

    .hero-pro-title {
        font-size: 2.1rem;
    }

    .hero-pro-lead {
        font-size: 1.1rem;
    }

    .hero-pro-actions {
        align-items: stretch;
    }

    .hero-pro-btn {
        justify-content: center;
    }

    .hero-pro-card {
        margin-bottom: 32px;
    }
}

/* Produtos Section */
.produtos-section {
    padding: 48px 20px 8px;
    background-color: var(--background-light);
}

.produtos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.produtos-group {
    scroll-margin-top: 20px;
}

.produtos-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #16203a;
    margin: 0 0 12px;
}

.produtos-divider {
    display: block;
    width: 80px;
    height: 4px;
    margin: 0 auto 28px;
    background: var(--site-color);
    border-radius: 2px;
}

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

.produto-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--site-color);
}

.produto-card-media {
    display: block;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: #eef1f4;
}

.produto-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.produto-card:hover .produto-card-media img {
    transform: scale(1.05);
}

.produto-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    flex: 1;
}

.produto-card-nome {
    font-size: 1rem;
    font-weight: 600;
    color: #16203a;
    line-height: 1.3;
}

.produto-card-desc {
    font-size: 0.9rem;
    color: #55607a;
    line-height: 1.45;
    margin: 0;
    flex: 1;
}

.produto-card-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 11px 22px;
    background: var(--site-color);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: 16px 0 16px 0;
    transition: border-radius 0.3s ease, transform 0.2s ease, filter 0.2s ease;
}

.produto-card-btn:hover {
    border-radius: 0 16px 0 16px;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .produtos-section {
        padding: 32px 16px 4px;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .produtos-heading {
        font-size: 1.6rem;
    }

    .produto-card-nome {
        font-size: 0.92rem;
    }

    .produto-card-body {
        padding: 18px;
    }
}

/* Modal Overlay Base */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalAppear 0.3s ease-out;
}

#wizardModal .modal-content {
    max-height: 800px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    #wizardModal .modal-content {
        max-height: 85dvh;
        border-radius: 10px;
        margin: 0;
        padding: 20px;
        overflow-y: scroll;
    }

    #wizardModal.modal-overlay {
        padding: 0;
        align-items: center;
    }

    #wizard_data_nascimento {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #461BFF;
    margin: 0;
    font-size: 1.4rem;
}

.modal-subtitle {
    margin: -8px 0 4px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

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

.modal-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #461BFF;
    box-shadow: 0 0 0 3px rgba(70, 27, 255, 0.1);
}

.modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-submit {
    background: linear-gradient(135deg, #461BFF 0%, #6B4EFF 100%);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(70, 27, 255, 0.3);
}

.modal-btn-secondary {
    background: #f3f4f6;
    color: #4b5563;
    padding: 14px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.modal-btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
    transform: translateY(-2px);
}

.modal-footer-text {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Result Modals (Success/Error) */
.result-modal .modal-content {
    padding: 0;
    overflow: hidden;
}

.result-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    color: white;
}

.result-modal-header.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.result-modal-header.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.result-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.result-modal-header .modal-close {
    color: white;
    opacity: 0.9;
}

.result-modal-header .modal-close:hover {
    opacity: 1;
    color: white;
}

.result-modal-body {
    padding: 30px 25px;
    text-align: center;
}

.result-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-modal-icon.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.result-modal-icon.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
}

.result-modal-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.result-modal-body p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.result-modal-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.result-modal-action.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.result-modal-action.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.result-modal-action img {
    width: 22px;
    height: 22px;
}

/* FAQ Section */
.faq-section {
    padding: 36px 20px;
    background-color: var(--background-light);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1428A4;
    margin: 0 0 12px;
}

.faq-divider {
    display: block;
    width: 80px;
    height: 4px;
    margin: 0 auto 24px;
    background: #4EAB94;
    border-radius: 2px;
}

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

.faq-item {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: box-shadow var(--transition-speed), border-color var(--transition-speed);
}

.faq-item[open] {
    border-color: #4EAB94;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    user-select: none;
}

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

.faq-question:hover .faq-question-text {
    color: #1428A4;
}

.faq-question-text {
    flex: 1;
    transition: color var(--transition-speed);
}

/* Plus / minus icon (left of text visually via order) */
.faq-icon {
    order: -1;
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2.5px;
    background: #4EAB94;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform var(--transition-speed);
}

/* vertical bar of the plus */
.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* when open, hide the vertical bar -> becomes a minus */
.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 18px 14px;
    color: var(--text-secondary);
    animation: faqFade var(--transition-speed) ease;
}

.faq-answer p {
    margin: 0;
}

.faq-answer ul {
    margin: 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-color);
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 28px 16px;
    }

    .faq-heading {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 11px 14px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 14px 12px;
    }
}

/* Footer Styles */
footer {
    background: #3C6197;
    padding: 40px 0 0;
    color: white;
}

.footer-content {
    max-width: 100%;
}

.footer-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: white;
}

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

.footer-card {
    background: white;
    color: #333;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

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

.footer-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    object-fit: contain;
}

.footer-card h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
    line-height: 1.3;
    min-height: 40px;
    color: #333;
}

.footer-card-btn {
    background: #4EAB94;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.footer-card-btn:hover {
    background: #3d8975;
}

.footer-info {
    background: #1A2C64;
    padding: 40px 0 0;
    margin-top: 40px;
}

.footer-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-logo {
    width: 180px;
    margin-bottom: 10px;
}

.company-info h3 {
    font-size: 24px;
    margin: 0;
    color: white;
}

.company-info p {
    opacity: 0.9;
}

.legal-text-full {
    position: relative;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
    padding: 30px 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.legal-text-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.phone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.phone-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

/* Payment Tabs */
.payment-tab.active {
    border-color: #461BFF !important;
    color: white !important;
    background-color: #461BFF !important;
}

.boleto-option-item.selected {
    border-color: #461BFF !important;
    background-color: #f0f4ff !important;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    opacity: 0.8;
    background: #1428A4;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link svg {
    width: 20px;
    height: 20px;
    fill: #7AC1FF;
    flex-shrink: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 72px;
    height: 72px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {
    .footer-cards {
        grid-template-columns: 1fr;
    }

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

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