/*
 * Pages Styles - About & Contact
 * استایل‌های صفحات درباره ما و تماس با ما
 * Version: 1.1 - Complete Rewrite with Hero Fixes
 */

/* ============================================
   About Page Styles
   ============================================ */

/* About Hero - FIXED */
.about-hero {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Title - Proper Alignment FIXED */
.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
    align-items: center;
    gap: 0.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.about-hero-title .title-line {
    display: inline-block;
}

.about-hero-title .title-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.about-hero-title .gradient-word {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.3;
    padding: 0 0.25rem;
    white-space: nowrap;
}

.about-hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-desc strong {
    color: var(--primary);
    font-weight: 700;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.hero-stat-item .stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-item strong {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
}

.hero-stat-item strong span {
    font-size: 1.5rem;
}

.hero-stat-item .stat-content > span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* Our Story */
.our-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.story-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.story-feature-item:hover {
    background: rgba(255, 177, 34, 0.1);
    transform: translateX(-5px);
}

.story-feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.story-feature-item span {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 177, 34, 0.4);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.badge-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
}

.story-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.shape-1 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: -10%;
    right: -10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: -10%;
    left: -10%;
}

/* Core Values */
.core-values {
    padding: 5rem 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-icon svg {
    color: var(--dark);
}

.value-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.value-desc {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Our Team */
.our-team {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-member {
    background: var(--light);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    bottom: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.member-role {
    display: block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.member-bio {
    color: var(--gray-600);
    font-size: 0.8125rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us .title-large {
    color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.reason-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: -1rem;
}

.reason-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    padding-top: 1rem;
}

.reason-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.875rem;
}

/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Hero - FIXED */
.contact-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Hero Title - Proper Alignment FIXED */
.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--white);
    
    align-items: center;
    gap: 0.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.contact-hero-title .title-line {
    display: inline-block;
}

.contact-hero-title .title-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-hero-title .gradient-word {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    line-height: 1.3;
    padding: 0 0.25rem;
    white-space: nowrap;
}

.contact-hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    padding: 5rem 0;
    background: var(--white);
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.method-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.method-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.method-card:hover .method-icon {
    transform: rotateY(360deg);
}

.method-icon svg {
    color: var(--dark);
}

.method-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.method-desc {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.method-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.method-link:hover {
    gap: 0.625rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-desc {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.feature-text strong {
    color: var(--dark);
    font-size: 0.9375rem;
}

.feature-text span {
    color: var(--gray-600);
    font-size: 0.8125rem;
}

.contact-details {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
}

.details-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.details-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.details-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.alert {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.alert-success {
    background: rgba(40, 202, 66, 0.1);
    border: 1px solid rgba(40, 202, 66, 0.3);
    color: #28CA42;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.alert p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--gray-600);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 177, 34, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    padding-top: 1rem;
}

.btn-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 177, 34, 0.4);
}

.btn-icon {
    transition: all 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(3px);
}

/* FAQ */
.contact-faq {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: right;
    cursor: pointer;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 177, 34, 0.05);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.faq-arrow {
    margin-right: auto;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 4rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0;
}

/* Contact Map */
.contact-map {
    padding: 5rem 0;
    background: var(--light);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
}

.map-info-content {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-info-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.map-info-content p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--dark);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 177, 34, 0.4);
}

/* ============================================
   Hero Label & Gradient Orbs (Shared)
   ============================================ */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 177, 34, 0.7); 
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(255, 177, 34, 0); 
    }
}

.label-badge {
    background: var(--primary);
    color: var(--dark);
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    font-size: 0.6875rem;
    font-weight: 700;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -15%;
    right: -10%;
}

.orb-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: -10%;
    left: -5%;
    animation-delay: 7s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    33% { 
        transform: translate(50px, -50px) scale(1.1); 
    }
    66% { 
        transform: translate(-50px, 50px) scale(0.9); 
    }
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Laptop & Large Tablet */
@media (max-width: 1200px) {
    .about-hero-title,
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Tablet Portrait */
@media (max-width: 992px) {
    .about-hero,
    .contact-hero {
        padding: 5rem 0 3rem;
        min-height: auto;
    }
    
    .about-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-desc,
    .contact-hero-desc {
        font-size: 1rem;
    }
    
    .about-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stat-item {
        padding: 1.5rem 1rem;
    }
    
    .hero-stat-item .stat-icon {
        font-size: 2.25rem;
    }
    
    .hero-stat-item strong {
        font-size: 1.75rem;
    }
}

/* Tablet Portrait & Mobile Landscape */
@media (max-width: 768px) {
    .about-hero,
    .contact-hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .about-hero-title,
    .contact-hero-title {
        font-size: 2rem;
        gap: 0.375rem;
    }
    
    .about-hero-title .title-gradient,
    .contact-hero-title .title-gradient {
        gap: 0.375rem;
    }
    
    .about-hero-title .gradient-word,
    .contact-hero-title .gradient-word {
        white-space: normal;
    }
    
    .about-hero-desc,
    .contact-hero-desc {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
    }
    
    .about-hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-stat-item {
        padding: 1.25rem 1rem;
    }
    
    .hero-stat-item .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stat-item strong {
        font-size: 1.5rem;
    }
    
    .hero-stat-item strong span {
        font-size: 1.25rem;
    }
    
    .hero-stat-item .stat-content > span {
        font-size: 0.8125rem;
    }
    
    /* Hide gradient orbs on mobile */
    .gradient-orb {
        display: none;
    }
    
    .values-grid,
    .team-grid,
    .reasons-grid,
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-info {
        position: static;
        margin-top: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .about-hero,
    .contact-hero {
        padding: 3rem 0 2rem;
    }
    
    .about-hero-title,
    .contact-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-desc,
    .contact-hero-desc {
        font-size: 0.875rem;
    }
    
    .hero-stat-item {
        padding: 1rem 0.875rem;
    }
    
    .hero-stat-item .stat-icon {
        font-size: 1.75rem;
    }
    
    .hero-stat-item strong {
        font-size: 1.375rem;
    }
    
    .hero-stat-item strong span {
        font-size: 1.125rem;
    }
    
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .form-input {
        padding: 0.75rem 0.875rem 0.75rem 2.75rem;
        font-size: 0.875rem;
    }
    
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .about-hero-title,
    .contact-hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero-desc,
    .contact-hero-desc {
        font-size: 0.8125rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .about-hero,
    .contact-hero {
        min-height: auto;
        padding: 2rem 0;
        background: none;
    }
    
    .about-hero-bg,
    .contact-hero-bg,
    .gradient-orb,
    .hero-grid-pattern,
    .pulse-dot {
        display: none;
    }
    
    .about-hero-title,
    .contact-hero-title,
    .about-hero-desc,
    .contact-hero-desc {
        color: var(--dark);
    }
    
    .hero-stat-item {
        background: var(--light);
        border: 1px solid var(--gray-300);
    }
}

