/* ============================================
   RAYKA About & Contact Pages
   ============================================ */

:root {
    --ac-yellow: #FBBF24;
    --ac-orange: #F97316;
    --ac-red: #DC2626;
    --ac-gradient: linear-gradient(135deg, #FBBF24 0%, #F97316 50%, #DC2626 100%);
    --ac-gradient-warm: linear-gradient(135deg, #F97316 0%, #DC2626 100%);
    --ac-gradient-sunset: linear-gradient(135deg, #FBBF24 0%, #F97316 100%);
    
    --ac-white: #FFFFFF;
    --ac-gray-50: #F9FAFB;
    --ac-gray-100: #F3F4F6;
    --ac-gray-200: #E5E7EB;
    --ac-gray-300: #D1D5DB;
    --ac-gray-400: #9CA3AF;
    --ac-gray-500: #6B7280;
    --ac-gray-600: #4B5563;
    --ac-gray-700: #374151;
    --ac-gray-800: #1F2937;
    --ac-gray-900: #111827;
    
    --ac-radius: 12px;
    --ac-radius-lg: 16px;
    --ac-radius-xl: 20px;
    --ac-radius-full: 9999px;
    
    --ac-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --ac-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --ac-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --ac-shadow-brand: 0 10px 30px rgba(249, 115, 22, 0.25);
    
    --ac-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--ac-orange);
    border-radius: var(--ac-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ac-gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--ac-gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.gradient-text {
    background: var(--ac-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   ABOUT HERO
   ============================================ */

.about-hero, .contact-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 50%, #FFEDD5 100%);
    overflow: hidden;
    border-bottom: 1px solid var(--ac-gray-200);
}

.about-hero-bg, .contact-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--ac-yellow);
}

.shape-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--ac-orange);
}

.about-hero-content, .contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-badge, .contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--ac-white);
    color: var(--ac-orange);
    border-radius: var(--ac-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--ac-shadow-md);
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.about-title, .contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--ac-gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-desc, .contact-desc {
    font-size: 1.125rem;
    color: var(--ac-gray-600);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   STORY SECTION
   ============================================ */

.story-section {
    padding: 5rem 0;
    background: var(--ac-white);
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image-box {
    aspect-ratio: 1;
    background: var(--ac-gradient);
    border-radius: var(--ac-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: var(--ac-white);
    box-shadow: var(--ac-shadow-brand);
}

.story-experience {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--ac-white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--ac-radius-lg);
    box-shadow: var(--ac-shadow-lg);
    text-align: center;
    border: 2px solid var(--ac-orange);
}

.story-experience strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ac-orange);
    line-height: 1;
}

.story-experience span {
    font-size: 0.875rem;
    color: var(--ac-gray-600);
    font-weight: 600;
}

.story-content .section-title {
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1rem;
    color: var(--ac-gray-600);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: var(--ac-gray-50);
    border-radius: var(--ac-radius);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ac-gray-700);
}

.story-feature i {
    color: var(--ac-orange);
    font-size: 1.125rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 4rem 0;
    background: var(--ac-gray-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--ac-white);
    border: 1px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--ac-transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--ac-gradient);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ac-shadow-lg);
    border-color: var(--ac-orange);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--ac-gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--ac-white);
    box-shadow: var(--ac-shadow-brand);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ac-gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--ac-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--ac-gray-600);
    font-weight: 600;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: 5rem 0;
    background: var(--ac-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--ac-white);
    border: 2px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition: var(--ac-transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--ac-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ac-shadow-lg);
    border-color: var(--ac-orange);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--ac-gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--ac-white);
    box-shadow: var(--ac-shadow-brand);
    transition: var(--ac-transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ac-gray-900);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.9375rem;
    color: var(--ac-gray-600);
    line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 5rem 0;
    background: var(--ac-gray-50);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--ac-white);
    border: 1px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--ac-transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ac-shadow-lg);
    border-color: var(--ac-orange);
}

.team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.25rem;
    background: var(--ac-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--ac-white);
    box-shadow: var(--ac-shadow-brand);
}

.team-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ac-gray-900);
    margin-bottom: 0.25rem;
}

.team-role {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--ac-orange);
    border-radius: var(--ac-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.team-desc {
    font-size: 0.875rem;
    color: var(--ac-gray-600);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 5rem 0;
    background: var(--ac-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    color: var(--ac-white);
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--ac-radius);
    cursor: pointer;
    transition: var(--ac-transition);
    text-decoration: none;
    white-space: nowrap;
    height: 48px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    height: 52px;
}

.btn-white {
    background: var(--ac-white);
    color: var(--ac-orange);
    box-shadow: var(--ac-shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--ac-shadow-lg);
    color: var(--ac-red);
}

.btn-outline-white {
    background: transparent;
    color: var(--ac-white);
    border-color: var(--ac-white);
}

.btn-outline-white:hover {
    background: var(--ac-white);
    color: var(--ac-orange);
}

.btn-primary {
    background: var(--ac-gradient-warm);
    color: var(--ac-white);
    box-shadow: var(--ac-shadow-brand);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.35);
}

.btn-outline {
    background: var(--ac-white);
    color: var(--ac-gray-700);
    border-color: var(--ac-gray-200);
}

.btn-outline:hover {
    border-color: var(--ac-orange);
    color: var(--ac-orange);
}

/* ============================================
   CONTACT INFO SECTION
   ============================================ */

.contact-info-section {
    padding: 4rem 0;
    background: var(--ac-white);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--ac-white);
    border: 2px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--ac-transition);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--ac-gradient);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ac-shadow-lg);
    border-color: var(--ac-orange);
}

.info-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: var(--ac-gradient-sunset);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--ac-white);
    box-shadow: var(--ac-shadow-brand);
}

.contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ac-gray-900);
    margin-bottom: 0.375rem;
}

.contact-info-card p {
    font-size: 0.875rem;
    color: var(--ac-gray-500);
    margin-bottom: 1rem;
}

.info-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--ac-gray-50);
    color: var(--ac-orange);
    border-radius: var(--ac-radius);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--ac-transition);
}

.info-link:hover {
    background: var(--ac-gradient-warm);
    color: var(--ac-white);
}

.info-text {
    display: inline-block;
    font-size: 0.9375rem;
    color: var(--ac-gray-700);
    font-weight: 600;
}

/* ============================================
   CONTACT MAIN SECTION
   ============================================ */

.contact-main-section {
    padding: 3rem 0 5rem;
    background: var(--ac-gray-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--ac-white);
    border: 1px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--ac-shadow-sm);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--ac-gray-100);
}

.form-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ac-gray-900);
    margin-bottom: 0.5rem;
}

.form-header h2 i {
    color: var(--ac-orange);
}

.form-header p {
    font-size: 0.9375rem;
    color: var(--ac-gray-600);
    margin: 0;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--ac-radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.alert-success {
    background: #D1FAE5;
    color: #059669;
    border: 2px solid #10B981;
}

.alert-danger {
    background: #FEE2E2;
    color: #DC2626;
    border: 2px solid #EF4444;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ac-gray-900);
}

.form-label i {
    color: var(--ac-orange);
    font-size: 0.875rem;
}

.required {
    color: var(--ac-red);
    margin-right: auto;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--ac-gray-200);
    border-radius: var(--ac-radius);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--ac-transition);
    background: var(--ac-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--ac-orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.form-control.is-invalid {
    border-color: var(--ac-red);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23F97316' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
}

.invalid-feedback {
    font-size: 0.8125rem;
    color: var(--ac-red);
    font-weight: 500;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--ac-gray-500);
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ac-gray-100);
    margin-top: 0.5rem;
}

/* Contact Side */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 90px;
}

/* Map */
.map-wrapper {
    background: var(--ac-white);
    border: 1px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    overflow: hidden;
    box-shadow: var(--ac-shadow-sm);
}

.map-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--ac-gray-100);
}

.map-header h3 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ac-gray-900);
    margin: 0;
}

.map-header h3 i {
    color: var(--ac-orange);
}

.map-container {
    padding: 1rem;
}

/* Social */
.social-wrapper {
    background: var(--ac-white);
    border: 1px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--ac-shadow-sm);
}

.social-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ac-gray-900);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ac-gray-100);
}

.social-title i {
    color: var(--ac-orange);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    border-radius: var(--ac-radius);
    text-decoration: none;
    color: var(--ac-white);
    font-size: 0.875rem;
    font-weight: 700;
    transition: var(--ac-transition);
}

.social-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ac-shadow-md);
}

.social-instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.social-telegram { background: linear-gradient(135deg, #0088CC, #00AAFF); }
.social-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.social-linkedin { background: linear-gradient(135deg, #0077B5, #00A0DC); }

.social-card i {
    font-size: 1.25rem;
}

/* FAQ */
.faq-wrapper {
    background: var(--ac-white);
    border: 1px solid var(--ac-gray-200);
    border-radius: var(--ac-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--ac-shadow-sm);
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--ac-gray-900);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ac-gray-100);
}

.faq-title i {
    color: var(--ac-orange);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1rem;
    background: var(--ac-gray-50);
    border-radius: var(--ac-radius);
    border-right: 3px solid var(--ac-orange);
}

.faq-item h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ac-gray-900);
    margin-bottom: 0.375rem;
}

.faq-item p {
    font-size: 0.875rem;
    color: var(--ac-gray-600);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-side {
        position: static;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .about-hero, .contact-hero {
        padding: 3.5rem 0 3rem;
    }
    
    .about-title, .contact-title {
        font-size: 1.75rem;
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .about-title, .contact-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .value-card, .team-card {
        padding: 1.5rem 1rem;
    }
}