/* Reset & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tanha&display=swap');

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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f1f5f9;
    --bg-color: #ffffff;
    --text-color: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: rgba(37, 99, 235, 0.1);
    --transition: all 0.3s ease;
}

/* فونت عناوین - بازنویسی کامل */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    margin: 0;
}

.hero-title,
.section-title,
.about-text h3,
.contact-info h3,
.contact-form h3,
.footer-col h4,
.modal-content h2,
.gift-cards-title,
.gift-cards-brands-title h2,
.service-card h3,
.currency-info h3,
.info-item h4,
.testimonial-info h4,
.consultation-text h3,
.footer-support h4 {
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: iran sans, 'Vazirmatn', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure all buttons, inputs, and form elements use iran sans */
button,
.btn,
input,
textarea,
select,
label,
a {
    font-family: iran sans, 'Vazirmatn', sans-serif;
}

body.dark-mode {
    --bg-color: #0f172a;
    --text-color: #f1f5f9;
    --text-light: #94a3b8;
    --white: #1e293b;
    --light-color: #1e293b;
    --border-color: #334155;
    --shadow: rgba(0, 0, 0, 0.5);
}

/* Hero colors in dark mode */
body.dark-mode .hero-content {
    color: #ffffff !important;
}

body.dark-mode .hero-title {
    color: #ffffff !important;
}

/* Dark mode for section titles */
body.dark-mode .section-title {
    color: #ffffff;
}

body.dark-mode .section-subtitle {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(59, 130, 246, 0.2));
}

body.dark-mode .hero-subtitle {
    color: #ffffff !important;
}

body.dark-mode .stat-value,
body.dark-mode .stat-label {
    color: #ffffff !important;
}

/* Footer colors in dark mode */
body.dark-mode .footer {
    color: #f1f5f9 !important;
}

body.dark-mode .footer-col p,
body.dark-mode .footer-col ul li a,
body.dark-mode .footer-bottom p {
    color: #f1f5f9 !important;
}

body.dark-mode .footer-col h4 {
    color: #ffffff !important;
}

/* Dark mode for dropdown menu */
body.dark-mode .dropdown-menu {
    background: #1e293b;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.3);
}

body.dark-mode .mega-menu-column {
    border-left-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .mega-menu-links a,
body.dark-mode .dropdown-links a {
    color: #f1f5f9;
}

body.dark-mode .mega-menu-links a:hover,
body.dark-mode .dropdown-links a:hover {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
}

body.dark-mode .dropdown-section {
    border-left-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .mega-menu-title,
body.dark-mode .dropdown-title {
    color: #f1f5f9;
}

body.dark-mode .dropdown-item {
    color: #f1f5f9;
}

body.dark-mode .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.2);
}

@media (max-width: 968px) {
    body.dark-mode .dropdown-menu {
        background: rgba(0, 0, 0, 0.1);
    }
    
    body.dark-mode .mega-menu-column,
    body.dark-mode .dropdown-section {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    body.dark-mode .nav-item-header {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    overflow: visible;
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    overflow: visible;
}

.navbar .container {
    max-width: 1400px;
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 30px var(--shadow);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.logo i {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
    margin-right: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav-item {
    position: relative;
    height: 100%;
    z-index: 1002;
}

.nav-item.dropdown {
    padding-bottom: 10px;
}

.nav-item-header {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 10px 0;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-item-header span {
    display: block;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-item:hover .nav-item-header {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.07);
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, height 0.2s ease-in-out;
    z-index: 1001;
    margin-top: 0;
    pointer-events: none;
    min-width: 250px;
    max-width: calc(100vw - 40px);
    direction: rtl;
    text-align: right;
}

.dropdown-menu * {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

/* Create invisible bridge area before dropdown to prevent closing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -20px;
    left: -20px;
    height: 15px;
    background: transparent;
    z-index: 1002;
    pointer-events: auto;
}

.nav-item:hover .dropdown-menu,
.nav-item .dropdown-menu:hover,
.nav-item:hover .dropdown-menu::before {
    opacity: 1;
    visibility: visible;
    height: auto;
    pointer-events: auto;
    overflow: visible;
}

.nav-item:hover .dropdown-menu *,
.nav-item .dropdown-menu:hover * {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* Mega Menu */
.mega-menu {
    width: calc(100vw - 80px);
    max-width: 1300px;
    right: 0;
    left: auto;
    transform: none;
    padding: 0;
    position: absolute;
    direction: rtl;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    pointer-events: none;
}

.mega-menu * {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
}

.nav-item:hover .mega-menu * {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

@media (max-width: 1440px) {
    .mega-menu {
        width: calc(100vw - 40px);
        right: 20px;
    }
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    padding: 12px 6px 10px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 5px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.mega-menu-column:first-child {
    border-right: none;
}

.mega-menu-title {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 12px;
    padding: 8px 12px;
    padding-bottom: 10px;
    direction: rtl;
    text-align: right;
    justify-content: flex-start;
}

.mega-menu-title i {
    font-size: 14px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    flex-shrink: 0;
}

.mega-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 350px;
    overflow-y: auto;
}

.mega-menu-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
    display: block;
}

.mega-menu-links a:hover {
    padding-right: 16px;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
}

/* Regular Dropdown Menu */
.dropdown-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 16px 24px 20px;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 12px;
}

.dropdown-section:firsst-child {
    border-right: none !important;
}

.dropdown-title {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 8px;
    padding: 8px 12px;
    direction: rtl;
    text-align: right;
    justify-content: flex-start;
}

.dropdown-title i {
    font-size: 18px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 400;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    direction: rtl;
    text-align: right;
    display: block;
}

.dropdown-links a:hover {
    padding-right: 16px;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary-color);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    direction: rtl;
    text-align: right;
    justify-content: flex-start;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
}

.dropdown-item i {
    font-size: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Small Menu */
.small-menu {
    width: 250px;
    right: 0;
}

.small-menu .dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}

.small-menu .dropdown-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s ease;
    direction: rtl;
    text-align: right;
    justify-content: flex-start;
}

.small-menu .dropdown-links a:hover {
    background: rgba(37, 99, 235, 0.1);
}

.small-menu .dropdown-links a i {
    font-size: 14px;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
}

/* Scrollbar for mega menu */
.mega-menu-links::-webkit-scrollbar {
    width: 4px;
}

.mega-menu-links::-webkit-scrollbar-track {
    background: transparent;
}

.mega-menu-links::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.mega-menu-links::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-swiper {
    padding: 80px 0 100px;
    overflow: visible;
    background: transparent;
}

.testimonials-swiper .swiper-wrapper {
    padding: 30px 0;
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonials-swiper .swiper-slide > * {
    height: 100%;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    line-height: 1.4;
}

.testimonial-info span {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    flex: 1;
    position: relative;
    padding-right: 15px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 10px;
    margin-top: auto;
}

.testimonial-service i {
    color: var(--primary-color);
    font-size: 16px;
}

.testimonial-service span {
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
}

/* Swiper Navigation */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-top: -25px;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-prev {
    right: auto;
    left: 20px;
}

.testimonials-swiper .swiper-button-next {
    left: auto;
    right: 20px;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
    bottom: 20px;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Dark mode for testimonials */
body.dark-mode .testimonials {
    background: var(--bg-color);
}

body.dark-mode .testimonial-card {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body.dark-mode .testimonial-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .testimonial-info h4 {
    color: var(--text-color);
}

body.dark-mode .testimonial-text {
    color: var(--text-color);
}

body.dark-mode .testimonial-service {
    background: rgba(37, 99, 235, 0.15);
}

body.dark-mode .testimonials-swiper .swiper-button-next,
body.dark-mode .testimonials-swiper .swiper-button-prev {
    background: var(--white);
    color: var(--primary-color);
}

body.dark-mode .testimonials-swiper .swiper-button-next:hover,
body.dark-mode .testimonials-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

/* Gift Cards Section */
.gift-cards {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gift-cards::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.gift-cards .container {
    position: relative;
    z-index: 1;
}

.gift-cards-hero {
    margin-bottom: 80px;
}

.gift-cards-content {
    text-align: center;
}

.gift-cards-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    line-height: 1.3;
}

.gift-cards-subtitle {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 600;
}

.gift-cards-description {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    text-align: right;
}

.gift-cards-image {
    position: relative;
}

.gift-cards-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gift-cards-main-image:hover {
    transform: translateY(-10px);
}

.gift-cards-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gift-cards-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: justify;
}

.gift-cards-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.gift-cards-brands {
    margin-top: 60px;
}

.gift-cards-brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gift-cards-brands-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    line-height: 1.4;
}

.gift-cards-brands-title span {
    font-size: 16px;
    color: var(--text-light);
    display: block;
}

.gift-cards-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.gift-cards-swiper {
    padding: 80px 0 100px;
    overflow: hidden;
    background: transparent;
    width: 100%;
}

.gift-cards-swiper .swiper-wrapper {
    padding: 30px 0;
    display: flex;
    align-items: stretch;
}

.gift-cards-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
}

.gift-brand-card {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.gift-cards-swiper .swiper-slide {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.gift-brand-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gift-brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}


/* Swiper Navigation for Gift Cards */
.gift-cards-swiper .swiper-button-next,
.gift-cards-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
    top: 50%;
    margin-top: -25px;
}

.gift-cards-swiper .swiper-button-next::after,
.gift-cards-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.gift-cards-swiper .swiper-button-next:hover,
.gift-cards-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.gift-cards-swiper .swiper-button-prev {
    right: auto;
    left: 20px;
}

.gift-cards-swiper .swiper-button-next {
    left: auto;
    right: 20px;
}

.gift-cards-swiper .swiper-pagination {
    bottom: 20px;
}

.gift-cards-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.gift-cards-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Dark mode for gift cards */
body.dark-mode .gift-cards {
    background: var(--bg-color);
}

body.dark-mode .gift-cards-title {
    color: var(--text-color);
}

body.dark-mode .gift-cards-text p {
    color: var(--text-color);
}

body.dark-mode .gift-cards-brands-title h2 {
    color: var(--text-color);
}

body.dark-mode .gift-cards-swiper .swiper-button-next,
body.dark-mode .gift-cards-swiper .swiper-button-prev {
    background: var(--white);
    color: var(--primary-color);
}

body.dark-mode .gift-cards-swiper .swiper-button-next:hover,
body.dark-mode .gift-cards-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    margin-right: 0;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: iran sans, sans-serif;
}

.btn-login:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.theme-toggle,
.mobile-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary-color);
    transform: rotate(20deg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
    border-radius: 3px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Hero Section */
/* Three.js Container */
#threejs-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

#threejs-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/bg/Group_138_3_3f22c28302.webp') center center/cover no-repeat;
    opacity: 0.2;
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(30, 64, 175, 0.85));
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    animation-delay: 0.2s;
    line-height: 1.3;
    color: var(--white) !important;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
    font-weight: 300;
    opacity: 0.95;
    animation-delay: 0.4s;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation-delay: 0.6s;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: iran sans, 'Vazirmatn', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    color: var(--white);
    font-size: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    font-family: iran sans, 'Vazirmatn', sans-serif;
    line-height: 1.4;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-color);
    margin: 20px 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    letter-spacing: -0.5px;
}


.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
}

.section-divider::before {
    right: -15px;
}

.section-divider::after {
    left: -15px;
}

/* Rates Section */
.rates {
    background: var(--light-color);
}

.rates-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: iran sans, sans-serif;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    display: none;
}

.rates-grid.active {
    display: grid;
}

.rate-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow);
}

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

.currency-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.currency-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.currency-icon-fallback {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary-color);
}

.currency-info h3 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 3px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.currency-info span {
    font-size: 14px;
    color: var(--text-light);
}

.trend-up {
    color: var(--success-color);
    font-size: 20px;
}

.trend-down {
    color: var(--danger-color);
    font-size: 20px;
}

.rate-price {
    margin-bottom: 15px;
}

.price-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.price-change {
    font-size: 14px;
    font-weight: 600;
}

.price-change.positive {
    color: var(--success-color);
}

.price-change.negative {
    color: var(--danger-color);
}

.rate-footer {
    font-size: 14px;
    color: var(--text-light);
}

/* Exchange Section */
.exchange {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.exchange::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.exchange::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(37, 99, 235, 0.05) 90deg, transparent 180deg);
    border-radius: 50%;
    z-index: 0;
}

.exchange .container {
    position: relative;
    z-index: 1;
}

.exchange-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.exchange-box {
    background: var(--light-color);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 50px var(--shadow);
}

.exchange-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--text-color);
}

.btn-swap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: iran sans, 'Vazirmatn', sans-serif;
}

.btn-swap:hover {
    background: var(--secondary-color);
    transform: rotate(180deg);
}

.exchange-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

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

.input-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.currency-selector {
    position: relative;
    min-width: 150px;
}

.currency-btn {
    width: 100%;
    padding: 15px 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-family: iran sans, sans-serif;
    font-weight: 600;
}

.currency-btn:hover {
    border-color: var(--primary-color);
}

.currency-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
    z-index: 100;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.currency-dropdown.active {
    display: block;
}

.search-currency {
    width: 100%;
    padding: 15px;
    border: none;
    border-bottom: 2px solid var(--border-color);
    border-radius: 15px 15px 0 0;
    font-family: iran sans, sans-serif;
}

.currency-list {
    padding: 10px;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.currency-option:hover {
    background: var(--light-color);
}

.currency-option img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.currency-option i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    font-family: iran sans, sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-group input[readonly] {
    background: var(--light-color);
    cursor: not-allowed;
}

.exchange-rate {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--text-light);
}

.service-type-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.service-type-option {
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-type-option i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-type-option span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.service-type-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.service-type-option.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.service-type-option.active i,
.service-type-option.active span {
    color: var(--white);
}

.exchange-actions {
    display: flex;
    gap: 15px;
}

/* Services Section */
.services {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-card.popular {
    position: relative;
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    color: var(--text-color);
    font-size: 14px;
    padding-right: 20px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.btn-service {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    font-family: iran sans, 'Vazirmatn', sans-serif;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.service-price .price-usd {
    color: var(--primary-color);
    font-size: 18px;
}

.service-price .price-irt {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

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

.about-text h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.about-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

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

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

.about-stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    pointer-events: none;
}

/* Contact Section */
.contact {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: iran sans, 'Vazirmatn', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Center align phone input */
#phone-input {
    text-align: center;
    direction: ltr;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #f1f5f9;
    padding: 0;
}

/* Footer Top Banner */
.footer-top-banner {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.footer-top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.footer-phone i {
    font-size: 20px;
}

.footer-chat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: iran sans, 'Vazirmatn', sans-serif;
    font-weight: 600;
}

.footer-chat-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.footer-banner-right {
    display: flex;
    align-items: center;
}

.footer-consultation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.consultation-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.consultation-text h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    line-height: 1.4;
}

.consultation-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

/* Footer Main Content */
.footer-main {
    background: #0f172a;
    padding: 60px 0;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e1;
    text-align: justify;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-map {
    width: 100%;
    height: 200px;
    background: #1e293b;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 16px;
}

.map-placeholder i {
    font-size: 40px;
}

.footer-address-btn {
    padding: 8px 16px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: iran sans, 'Vazirmatn', sans-serif;
    font-weight: 600;
}

.footer-address-btn:hover {
    background: #334155;
}

.footer-address-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Bottom Section */
.footer-bottom-section {
    background: #0f172a;
    padding: 40px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-app {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #fbbf24;
    color: #1e293b;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: iran sans, 'Vazirmatn', sans-serif;
}

.footer-app-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

.footer-app-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
}

.footer-app-text i {
    font-size: 18px;
}

.footer-support {
    text-align: center;
}

.footer-support h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    line-height: 1.4;
}

.footer-support-phones {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-support-phones a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-support-phones a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: 24px;
    padding: 45px 35px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.modal-close:hover {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 26px;
    color: var(--text-color);
    margin-bottom: 35px;
    margin-top: 10px;
    text-align: center;
    font-family: 'Vazirmatn', 'Tanha', iran sans, sans-serif;
    font-weight: 700;
    line-height: 1.4;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    top: 20%;
    right: 10%;
    animation-delay: 6s;
}

.shape-5 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    bottom: 20%;
    right: 20%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

body.dark-mode .bg-shape {
    opacity: 0.15;
}

/* OTP Input Styles */
.form-hint {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    font-family: iran sans, 'Vazirmatn', sans-serif;
}

.form-hint a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.form-hint a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
    direction: ltr;
}

.otp-digit {
    width: 56px;
    height: 56px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    background: var(--white);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: iran sans, 'Vazirmatn', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    direction: ltr;
}

.otp-digit:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(37, 99, 235, 0.2);
    transform: scale(1.08);
}

.otp-digit:invalid:not(:placeholder-shown) {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.otp-digit:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
    font-family: iran sans, 'Vazirmatn', sans-serif;
}

/* Dark Mode Styles for Modal */
body.dark-mode .modal-content {
    background: var(--bg-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

body.dark-mode .modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

body.dark-mode .modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-color);
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: var(--light-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

body.dark-mode .otp-digit {
    background: var(--light-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

body.dark-mode .otp-digit:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25), 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .mega-menu-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .navbar {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .navbar .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-wrapper {
        padding: 15px 0;
        gap: 15px;
        overflow-x: hidden;
        width: 100%;
    }
    
    .nav-icons {
        margin-left: 0;
        margin-right: auto;
    }
    
    .nav-item {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .nav-item-header {
        width: 100%;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 14px;
        justify-content: space-between;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-item-header span {
        flex: 1;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        height: auto;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 0;
        width: 100%;
        max-width: 100%;
        right: 0;
        transform: none;
        max-height: none;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .mega-menu {
        width: 100%;
        max-width: 100%;
        right: 0;
        transform: none;
        position: static;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mega-menu-column {
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }
    
    .mega-menu-title {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .mega-menu-links {
        padding: 0;
    }
    
    .mega-menu-links a {
        padding: 8px 0;
        font-size: 12px;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .dropdown-section {
        border-left: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .dropdown-section:last-child {
        border-bottom: none;
    }
    
    .dropdown-title {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .dropdown-links {
        padding: 0;
    }
    
    .dropdown-links a {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .dropdown-item {
        padding: 8px 0;
        font-size: 12px;
    }

    .small-menu {
        width: 100%;
        max-width: 100%;
        right: 0;
        position: static;
        box-sizing: border-box;
    }
    
    .small-menu .dropdown-links {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .small-menu .dropdown-links a {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
    }
    
    .mega-menu-links,
    .dropdown-links {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .mega-menu-links a,
    .dropdown-links a {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        width: 100vw;
        max-width: 100vw;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 30px var(--shadow);
        padding: 20px 0;
        overflow-y: auto;
        overflow-x: hidden;
        height: calc(100vh - 80px);
        z-index: 999;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        margin: 0;
        left: 0;
    }

    .nav-menu.active {
        right: 0;
    }
    
    /* Scrollbar styling for mobile menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: var(--light-color);
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-color);
    }

    .mobile-toggle {
        display: flex;
    }

    .btn-login span {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        gap: 30px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .exchange-box {
        padding: 30px 20px;
    }

    .input-group {
        flex-direction: column;
    }

    .currency-selector {
        width: 100%;
    }

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

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-swiper {
        padding: 20px 0 40px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        display: none;
    }

    .gift-cards {
        padding: 60px 0;
    }

    .gift-cards-title {
        font-size: 36px;
    }

    .gift-cards-description {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gift-cards-brands-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .gift-cards-swiper .swiper-button-next,
    .gift-cards-swiper .swiper-button-prev {
        display: none;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        padding: 40px 0;
    }
    
    .modal-content {
        padding: 35px 25px;
        max-width: 95%;
        border-radius: 20px;
    }
    
    .modal-content h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .otp-inputs {
        gap: 8px;
    }
    
    .otp-digit {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Prevent body scroll when mobile menu is open */
@media (max-width: 968px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        padding: 15px 0;
    }
    
    .nav-item-header {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .mega-menu-column,
    .dropdown-section {
        padding: 10px 15px;
    }
    
    .mega-menu-title,
    .dropdown-title {
        font-size: 12px;
    }
    
    .mega-menu-links a,
    .dropdown-links a,
    .dropdown-item {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .small-menu .dropdown-links a {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .modal-content {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .otp-inputs {
        gap: 6px;
    }
    
    .otp-digit {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .btn-block {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-stats {
        gap: 15px;
    }
    .stat-value {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 5px;
    }
}
