:root {
    --primary-color: #345f52;
    --secondary-color: #2d5246;
    --accent-color: #3d6b5c;
    --text-color: #FFFFFF;
    --white: #FFFFFF;
    --dark-bg: #1a1a2e;
    --card-bg: rgba(255, 255, 255, 0.98);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #345f52 0%, #2d5246 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(52, 95, 82, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.header-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover .header-logo-img {
    transform: scale(1.05);
}

.header-downloads {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--card-bg);
    border: 1px solid rgba(52, 95, 82, 0.15);
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.download-link svg {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.download-link:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 95, 82, 0.15);
}

.download-link:hover svg {
    opacity: 1;
}

.android-link:hover {
    color: #4CAF50;
    border-color: #4CAF50;
}

.ios-link:hover {
    color: #007AFF;
    border-color: #007AFF;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    padding: 4rem 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    width: 100%;
    animation: fadeIn 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    text-align: center;
    width: 100%;
    max-width: 240px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.hero-text {
    margin-top: 1rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Vazirmatn', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.6;
    text-align: center;
}

/* Features Section */
.features-section {
    width: 100%;
}

.section-title {
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Vazirmatn', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    padding: 2rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    animation: fadeIn 0.6s ease both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }
.feature-card:nth-child(7) { animation-delay: 0.7s; }
.feature-card:nth-child(8) { animation-delay: 0.8s; }
.feature-card:nth-child(9) { animation-delay: 0.9s; }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.feature-card-title {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.feature-card-desc {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.8;
}

/* Download Section */
.download-section {
    width: 100%;
    text-align: center;
}

.download-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(30px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 3.5rem 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease;
}

.download-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.download-box-content {
    position: relative;
    z-index: 1;
}

.download-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.download-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.25rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    justify-content: center;
    flex: 1;
}

.store-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

.google-play:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(255, 255, 255, 1));
    border-color: rgba(76, 175, 80, 0.3);
}

.app-store:hover {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(255, 255, 255, 1));
    border-color: rgba(0, 122, 255, 0.3);
}


.store-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    padding: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 95, 82, 0.2);
}

.store-button:hover .store-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px rgba(52, 95, 82, 0.3);
}

.store-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.store-text small {
    font-size: 0.7rem;
    color: #999;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    letter-spacing: 0.2px;
}

.store-text span {
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    color: var(--primary-color);
    letter-spacing: -0.2px;
}

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

/* Services List Section */
.services-list-section {
    width: 100%;
    margin-top: 2rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease both;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-item:hover {
    transform: translateX(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(52, 95, 82, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(52, 95, 82, 0.4);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
    line-height: 1.4;
}

.service-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.8;
    margin: 0;
}

/* Trust Section */
.trust-section {
    width: 100%;
    text-align: center;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.trust-badge img {
    height: 65px;
    width: auto;
    border-radius: 12px;
    background: var(--card-bg);
    padding: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.trust-badge:hover img {
    box-shadow: var(--shadow-hover);
}

/* Footer */
.site-footer {
    background: #f8f9fa;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
    border-top: 3px solid var(--primary-color);
}

.footer-separator {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(52, 95, 82, 0.15);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    flex-shrink: 0;
}

.footer-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
    line-height: 1.3;
}

.footer-subtitle {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
}

.footer-info {
    flex: 1;
}

.info-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0.8;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.info-label {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
}

.info-value {
    color: #555;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.7;
}

.info-phones {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-phones a,
.phone-link {
    color: #555 !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    border-bottom: none !important;
    outline: none;
}

.info-phones a:hover,
.info-phones a:active,
.info-phones a:focus,
.phone-link:hover,
.phone-link:active,
.phone-link:focus {
    color: var(--primary-color) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    transform: translateX(-3px);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid rgba(52, 95, 82, 0.15);
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.footer-download-btn svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-download-btn:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateX(-3px);
    box-shadow: 0 4px 12px rgba(52, 95, 82, 0.15);
}

.footer-download-btn:hover svg {
    opacity: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0 0 0.5rem 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Vazirmatn', sans-serif;
    margin: 0;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-link {
    display: inline-block;
    transition: transform 0.3s ease;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.badge-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.badge-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0.85rem 1.5rem;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .header-logo-img {
        height: 40px;
    }

    .header-downloads {
        width: 100%;
        justify-content: center;
        gap: 0.6rem;
    }

    .download-link {
        flex: 1;
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        min-width: 0;
    }

    .download-link svg {
        width: 16px;
        height: 16px;
    }

    .main-container {
        padding: 2.5rem 1.5rem;
        gap: 4rem;
    }

    .hero-section {
        align-items: center;
        text-align: center;
    }

    .logo-container {
        max-width: 200px;
        margin: 0 auto 1.5rem;
        justify-content: center;
    }

    .hero-text {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-card-title {
        font-size: 1.05rem;
    }

    .feature-card-desc {
        font-size: 0.85rem;
    }

    .download-box {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .download-title {
        font-size: 1.6rem;
    }

    .download-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .download-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 1rem;
    }

    .store-button {
        width: 100%;
        padding: 1.3rem 1.75rem;
        min-width: auto;
    }

    .store-icon {
        width: 44px;
        height: 44px;
    }

    .store-icon svg {
        width: 24px;
        height: 24px;
    }

    .services-list {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .service-item {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem 1.5rem;
        align-items: center;
        text-align: center;
    }

    .service-item:hover {
        transform: translateY(-5px);
    }

    .service-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .service-content {
        align-items: center;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }

    .store-text span {
        font-size: 1rem;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge img {
        height: 55px;
        padding: 10px;
    }

    .site-footer {
        margin-top: 4rem;
    }

    .footer-container {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-container {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        align-items: center !important;
        text-align: center !important;
        width: 100%;
    }

    .footer-logo {
        height: 48px;
        margin: 0 auto 0.5rem;
    }

    .footer-title {
        font-size: 1.4rem;
        text-align: center !important;
        width: 100%;
    }

    .footer-subtitle {
        text-align: center !important;
        width: 100%;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        gap: 0.75rem;
    }

    .info-icon {
        width: 18px;
        height: 18px;
    }

    .info-label {
        font-size: 0.8rem;
    }

    .info-value {
        font-size: 0.85rem;
    }

    .phone-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-badges {
        justify-content: center;
    }

    .badge-img {
        height: 42px;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-trust-img {
        height: 40px;
    }
}
