/* ========================================
   OUTFIT AI WEBSITE - MAIN STYLES
   ======================================== */

:root {
    /* Colors */
    --primary-color: #7c3aed;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    /* Gradients */
    --gradient-primary: #E0F4FC;
    --gradient-secondary: #E0F4FC;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    
    /* Border Colors */
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    --border-dark: #9ca3af;
    --gray-200: #e5e7eb;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ========================================
   HEADER STYLES - REBUILT
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 20px 2rem;
    background: transparent;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 16px 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.brand {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
}

.nav-link.active {
    color: #534880;
    font-weight: 600;
}

.get-app-button {
    background: #E0F4FC;
    color: #41717A;
    border: 1px solid rgba(224, 244, 252, 0.3);
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Responsive Header */
@media (max-width: 768px) {
    .header {
        padding: 10px 1rem;
    }
    
    .header-container {
        padding: 12px 1rem;
        border-radius: 40px;
    }
    
    .nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .brand {
        font-size: 1.1rem;
    }
    
    .get-app-button {
        padding: 8px 16px;
        font-size: 0.75rem;
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 0.8rem;
        border-radius: 35px;
    }
    
    .nav-link {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .brand {
        font-size: 1rem;
    }
    
    .get-app-button {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 20px;
    }
}

/* Contact Page Specific Styles */
.contact-page .get-app-button {
    background: #524980 !important;
    color: #ffffff !important;
    border: 1px solid rgba(82, 73, 128, 0.3) !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
    padding: 2rem 0 5rem;
    margin-top: 72px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

.gradient-text {
    color: #534880;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.btn-secondary {
    background: var(--white);
    border: 1px solid var(--border-medium);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border: 1px solid var(--border-dark);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 2rem;
}

.phone-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(195, 242, 248, 0.6));
    transition: var(--transition-slow);
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transform-origin: top right;
    animation: float3d 6s ease-in-out infinite;
}

@keyframes float3d {
    0%, 100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px);
    }
    25% {
        transform: perspective(1000px) rotateY(-20deg) rotateX(8deg) translateY(-10px);
    }
    50% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-5px);
    }
    75% {
        transform: perspective(1000px) rotateY(-18deg) rotateX(6deg) translateY(-8px);
    }
}

.phone-img:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(3deg) scale(1.05);
    filter: drop-shadow(0 40px 80px rgba(195, 242, 248, 0.8));
    transition: transform 0.3s ease;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-light);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    40% {
        transform: translateX(-50%) rotate(45deg) translateY(-10px);
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 60px;
        padding: 1rem 0 3rem;
        min-height: calc(100vh - 60px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 20px 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    .phone-mockup {
        justify-content: center;
        align-items: center;
        padding-top: 1rem;
    }
    
    .phone-img {
        width: 200px;
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        transform-origin: center;
        animation: floatMobile 6s ease-in-out infinite;
    }
    
    @keyframes floatMobile {
        0%, 100% {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(0px);
        }
        50% {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
        }
    }
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #FEFAEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #766C12;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.steps-section {
    background: var(--white);
    padding: 6rem 0 6rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.steps-section .section-header {
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.steps-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FEEBEB;
    color: #771212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.review-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star-icon {
    width: 16px;
    height: 16px;
    fill: #ffdd00 !important;
    transition: var(--transition-fast);
}

.star-icon:hover {
    transform: scale(1.1);
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: rgba(224, 244, 252, 0.05);
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #E0F4FC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #41717A;
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: #534880;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: #534880;
}

.contact-value {
    color: #534880;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Download Section */
.download-section {
    background: #524980;
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: none;
    box-shadow: none;
    border: none;
}

.download-btn img {
    height: 60px;
    width: auto;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Sections */
@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .steps-section .section-header {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .features-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .download-btn {
        width: auto;
        max-width: none;
        padding: 0;
    }
    
    .download-btn img {
        height: 50px;
    }
    
    .features-section,
    .reviews-section,
    .contact-section,
    .contact-faq-section,
    .download-section {
        padding: 2rem 0;
    }
    
    .steps-section {
        padding: 4rem 0 4rem;
    }
    
    .feature-card,
    .step-card,
    .review-card,
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon,
    .step-number,
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-normal);
}

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

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-list li {
        margin-bottom: 0.5rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .nav-item {
        padding: 5px 8px;
        font-size: 0.7rem;
        height: 28px;
    }
    
    .brand-logo {
        font-size: 1rem;
    }
    
    .get-app-btn {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
        height: 28px !important;
    }
    
    .phone-img {
        width: 180px;
    }
    
    .feature-card,
    .step-card,
    .review-card,
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .download-btn img {
        height: 45px;
    }
}

/* ========================================
   LEGAL PAGES STYLES
   ======================================== */

.legal-content {
    padding: 8rem 0 4rem;
    background: var(--white);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary-color);
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem;
}

.section-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info {
    background: #524980;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.legal-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.legal-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-hero-section {
    background: linear-gradient(135deg, var(--gradient-primary) 0%, var(--gradient-secondary) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 0;
    padding-top: calc(72px + 8rem);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

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

.form-submit-btn {
    background: #E0F4FC;
    color: #41717A;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: #E0F4FC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #41717A;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-content {
    flex: 1;
}

.contact-method-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-method-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-method-link:hover {
    text-decoration: underline;
}

.contact-method-value {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-faq-section {
    padding: 4rem 0;
    background: rgba(224, 244, 252, 0.05);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-question {
    background: rgba(124, 58, 237, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-hero-section {
        padding-top: calc(44px + 4rem);
        padding-bottom: 2rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-methods {
        gap: 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method-icon {
        align-self: center;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 0.75rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(233, 228, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}