@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #d85c88;
    --text-color: #2b2b2b;
    --text-muted: #6b6b6b;
    --bg-color: #fafafa;
    --white: #ffffff;
    --border-radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Vazirmatn', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1000px;
    background-color: var(--bg-color);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.03);
    position: relative;
    overflow-x: hidden;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    z-index: 10;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c3247;
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-weight: 500;
    font-size: 22px;
}

.header-slogan {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 32px 32px 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 20px;
    text-align: right;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: justify;
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background-color: #f7e6ea;
    color: #b5536b;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 120%;
    background: radial-gradient(circle at center, #fde4e8 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(216, 92, 136, 0.15);
}

/* Main Content */
.main-content {
    padding: 48px 32px;
    position: relative;
    z-index: 2;
    background: var(--bg-color);
}

.cta-header {
    text-align: center;
    margin-bottom: 32px;
}

.cta-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact-card.whatsapp {
    background-color: #fcecf0;
    border: 1px solid rgba(216, 92, 136, 0.15);
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
}

.card-icon svg {
    width: 28px;
    height: 28px;
}

.whatsapp-icon {
    background-color: var(--primary-color);
    color: white;
}

.telegram-icon {
    background-color: #eef2f6;
    color: #5c6b79;
}

.bot-icon {
    background-color: #eef2f6;
    color: #5c6b79;
}

.phone-icon {
    background-color: #eef2f6;
    color: #5c6b79;
}

.card-text {
    flex-grow: 1;
}

.card-text h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.phone-number {
    letter-spacing: 1px;
}

.card-arrow {
    color: #b0b0b0;
    display: flex;
    align-items: center;
}

.card-arrow svg {
    width: 20px;
    height: 20px;
}

/* Testimonials Section */
.testimonials-header {
    text-align: center;
    margin: 48px auto 24px;
    padding: 0 24px;
}

.testimonials-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonials-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 auto 48px;
    max-width: 1000px;
    padding: 0 24px;
}

.testimonial {
    background-color: #fbf5f7;
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(216, 92, 136, 0.1);
    border-color: rgba(216, 92, 136, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.testimonial-content {
    flex-grow: 1;
}

.stars {
    color: #fcd34d;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
    direction: ltr;
    justify-content: flex-start;
}

.quote {
    font-size: 13px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 12px;
    text-align: right;
}

.author {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: left;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}


/* Footer */
.footer {
    padding: 32px;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0,0,0,0.03);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-item span {
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-bottom .logo-container {
    color: #4a4a4a;
}

.footer-bottom .footer-slogan {
    font-size: 13px;
    color: var(--text-muted);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 48px 64px;
    }

    .hero-content {
        width: 50%;
        margin-bottom: 0;
        padding-top: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        width: 45%;
        justify-content: center;
    }
    
    .hero-image-wrapper::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 180%;
        height: 180%;
    }

    .contact-links {
        grid-template-columns: 1fr 1fr;
    }
    

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 48px;
        gap: 24px;
    }
    
    .testimonial {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .quote {
        text-align: center;
    }
    
    .author {
        text-align: center;
    }
    
    .stars {
        justify-content: center;
    }

}

/* Smaller Desktop / Tablets */
@media (max-width: 767px) {
    .features {
        gap: 20px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-item span {
        font-size: 11px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .card-text h3 {
        font-size: 14px;
    }
    
    .header {
        padding: 16px 20px;
    }
    
    .hero, .main-content {
        padding: 24px 20px;
    }
}

.logo-image {
    height: 32px;
    width: auto;
    display: block;
}
