html {
  font-size: 14px;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



body {
    margin-bottom: 60px;
    font-family: 'IranYekanX', sans-serif !important;
    
}


/*ayouuuuuub*/


@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 100;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'IranYekanX';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/IranYekanX.woff2') format('woff2'), url('/fonts/IRANYekanX-Regular.ttf') format('truetype');
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IranYekanX', sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Brand Colors */
:root {
    --brand-primary: #825af9;
    --brand-secondary: #7DA506;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-gray: #e5e7eb;
    --bg-light: #f9fafb;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
}

.brand-name {
    display: none;
}

.nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--brand-primary);
    }

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-family: 'IranYekanX', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: white;
}

    .btn-primary:hover {
        background-color: #7347e8;
        transform: translateY(-1px);
    }

.btn-secondary {
    background-color: var(--brand-secondary);
    color: white;
}

    .btn-secondary:hover {
        background-color: #6b8f05;
        transform: translateY(-1px);
    }

/* Main Content */
.main-content {
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #f3f4f6, #ffffff);
    padding: 4rem 1rem;
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.counter-box {
    display: inline-block;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    margin-bottom: 3rem;
}

.counter-text {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.counter-number {
    font-weight: 700;
    color: var(--brand-primary);
    font-variant-numeric: tabular-nums;
}

/* Top Centers Section */
.top-centers-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
}

.province-selector {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .province-selector svg {
        color: var(--brand-primary);
    }

.province-select {
    width: 200px;
    padding: 0.5rem 1rem;
    background-color: white;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: 'IranYekanX', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

    .province-select:focus {
        outline: none;
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 3px rgba(130, 90, 249, 0.1);
    }

.centers-scroll-wrapper {
    position: relative;
}

    .centers-scroll-wrapper:hover .scroll-btn {
        opacity: 1;
    }

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

    .scroll-btn:hover {
        background-color: var(--brand-primary);
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 12px rgba(130, 90, 249, 0.3);
    }

.scroll-btn-right {
    right: 0;
}

.scroll-btn-left {
    left: 0;
}

.scroll-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
}

.centers-scroll {
    position: relative;
}

.centers-list {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

    .centers-list::-webkit-scrollbar {
        display: none;
    }

.center-card {
    flex-shrink: 0;
    width: 320px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
    scroll-snap-align: start;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

    .center-card:hover {
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
        transform: translateY(-4px);
    }

.center-image {
    position: relative;
    height: 192px;
    overflow: hidden;
    background: linear-gradient(to bottom right, #ddd6fe, #e9d5ff);
}

    .center-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.verified-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

    .verified-badge svg {
        color: var(--brand-secondary);
    }

.center-content {
    padding: 1rem;
}

.center-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.center-manager {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.center-location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
}

    .center-location svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .center-location p {
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.center-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-number {
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Why IranDokht Section */
.why-section {
    background-color: white;
    padding: 4rem 1rem;
}

.why-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .why-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: linear-gradient(to bottom, #f9fafb, white);
    border: 2px solid var(--border-gray);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(130, 90, 249, 0.15);
        border-color: var(--brand-primary);
    }

.why-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--brand-primary), #9b7afc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(130, 90, 249, 0.3);
}

    .why-card-icon svg {
        width: 40px;
        height: 40px;
        color: white;
    }

.why-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-card-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Download App Section */
.download-section {
    background: linear-gradient(135deg, #825af9 0%, #9b7afc 50%, #7DA506 100%);
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

    .download-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
        opacity: 0.3;
    }

.download-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .download-container {
        grid-template-columns: 1fr 1fr;
    }
}

.download-content {
    color: white;
    text-align: center;
}

@media (min-width: 1024px) {
    .download-content {
        text-align: right;
    }
}

.download-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.download-title {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .download-title {
        font-size: 3.5rem;
    }
}

.download-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .download-buttons {
        justify-content: flex-start;
    }
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--brand-primary);
    border: none;
    border-radius: 12px;
    font-family: 'IranYekanX', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .download-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

.qr-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (min-width: 1024px) {
    .qr-section {
        justify-content: flex-start;
    }
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .qr-code img {
        width: 100%;
        height: 100%;
        border-radius: 8px;
    }

.qr-text {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.95;
}

.app-screens {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    perspective: 1000px;
}

.phone-mockup {
    flex-shrink: 0;
    width: 200px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s;
    background: white;
}

@media (min-width: 768px) {
    .phone-mockup {
        width: 240px;
    }
}

.phone-mockup:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.phone-mockup:nth-child(1) {
    transform: rotate(-8deg) translateY(20px);
    width: 220px;
}

@media (min-width: 768px) {
    .phone-mockup:nth-child(1) {
        width: 260px;
    }
}

.phone-mockup:nth-child(2) {
    z-index: 2;
    transform: scale(1.15);
    width: 240px;
}

@media (min-width: 768px) {
    .phone-mockup:nth-child(2) {
        width: 300px;
    }
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Management System Section */
.management-section {
    background: linear-gradient(to bottom, white, #f9fafb);
    padding: 5rem 1rem;
}

.management-header {
    text-align: center;
    margin-bottom: 4rem;
}

.management-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .management-title {
        font-size: 3rem;
    }
}

.management-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
}

.management-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .management-content {
        grid-template-columns: 1fr 1fr;
    }
}

.management-image {
    width: 100%;
    height: auto;
}

.management-info {
    text-align: center;
}

@media (min-width: 1024px) {
    .management-info {
        text-align: right;
    }
}

.management-badge {
    display: inline-block;
    background: linear-gradient(to right, var(--brand-primary), #9b7afc);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.management-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .management-heading {
        font-size: 2.25rem;
    }
}

.management-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.management-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .management-features {
        justify-content: flex-start;
    }
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

    .feature-badge svg {
        color: #10B981;
    }

    .feature-badge span {
        color: var(--text-dark);
        font-weight: 500;
    }

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 2px solid var(--border-gray);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

    .pricing-card:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.popular {
        border-color: #F59E0B;
        box-shadow: 0 20px 60px rgba(245, 158, 11, 0.2);
        transform: scale(1.05);
    }

        .pricing-card.popular:hover {
            transform: scale(1.08);
            box-shadow: 0 25px 70px rgba(245, 158, 11, 0.3);
        }

.popular-badge {
    position: absolute;
    top: -1rem;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(to right, #F59E0B, #FBBF24);
    color: white;
    padding: 0.25rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.pricing-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .pricing-icon svg {
        width: 2rem;
        height: 2rem;
        color: white;
    }

.pricing-name {
    font-size: 1.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .pricing-features svg {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-top: 0.125rem;
    }

    .pricing-features span {
        color: var(--text-dark);
        font-size: 0.875rem;
        line-height: 1.6;
    }

.pricing-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-family: 'IranYekanX', sans-serif;
    font-weight: 700;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

    .pricing-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.management-cta {
    text-align: center;
    margin-top: 4rem;
}

    .management-cta p {
        color: var(--text-gray);
        margin-bottom: 1rem;
    }

    .management-cta button {
        background: linear-gradient(to right, var(--brand-primary), #9b7afc);
        color: white;
        padding: 1rem 2rem;
        border: none;
        border-radius: 12px;
        font-family: 'IranYekanX', sans-serif;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
    }

        .management-cta button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(130, 90, 249, 0.3);
        }

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
    border-top: 1px solid var(--border-gray);
    padding: 4rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

    .social-link:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

    .footer-links a:hover {
        color: var(--brand-primary);
        margin-right: 4px;
    }

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-gray);
    padding-top: 2rem;
    text-align: center;
}

    .footer-bottom p {
        color: var(--text-gray);
        line-height: 1.8;
    }

    .footer-bottom .company-name {
        font-weight: 700;
        color: var(--brand-primary);
    }

/* Responsive */
@media (max-width: 768px) {
    .header-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

        .btn svg {
            display: none;
        }
}




