/* Modern Software Company Design - Preska Grain */

/* CSS Variables */
:root {
    /* Modern Color Palette */
    --primary-blue: #0061ff;
    --primary-purple: #6366f1;
    --primary-dark: #0f172a;
    --primary-light: #f8fafc;
    
    /* Backgrounds */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #ffffff;
    --bg-gray: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.1);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-light-gray: #94a3b8;
    
    /* Accent Colors */
    --accent-green: #10b981;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0061ff 0%, #6366f1 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 97, 255, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 97, 255, 0.15);
    --shadow-strong: 0 20px 60px rgba(0, 97, 255, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Modern Navigation */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 97, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.brand-icon.small {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--text-gray) !important;
    font-weight: 500;
    padding: 12px 20px !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(0, 97, 255, 0.05);
}

.contact-btn {
    background: #ededed;
    color: white !important;
    margin-left: 12px;
}

.contact-btn:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    width: 32px;
    height: 32px;
    position: relative;
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-dark);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-modern {
    min-height: 100vh;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: var(--radius-xl);
    opacity: 0.05;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 10%;
    right: -100px;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-purple);
    bottom: 20%;
    left: -50px;
    transform: rotate(30deg);
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-blue);
    top: 60%;
    right: 20%;
    transform: rotate(60deg);
    animation: float 8s ease-in-out infinite;
}

.hero-content-modern {
    animation: slideUp 0.8s ease-out;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 97, 255, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 97, 255, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-modern {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats-modern {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-modern-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-modern-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-modern-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-modern-outline:hover {
    color: white;
    background: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual-modern {
    position: relative;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.code-window {
    background: var(--bg-darker);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    margin-bottom: 40px;
}

.window-header {
    background: #1e293b;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ef4444; }
.window-dots span:nth-child(2) { background: #f59e0b; }
.window-dots span:nth-child(3) { background: #10b981; }

.window-title {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.code-content {
    padding: 24px;
    font-family: 'Monaco', 'Consolas', monospace;
}

.code-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}

.code-number {
    color: var(--text-light-gray);
    font-size: 0.85rem;
    width: 20px;
    text-align: right;
}

.code-text {
    color: #e2e8f0;
    font-size: 0.9rem;
}

.keyword { color: #c084fc; }
.string { color: #34d399; }
.function { color: #60a5fa; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    animation: float 4s ease-in-out infinite;
}

.item-1 {
    top: 20%;
    left: -10%;
    color: #61dafb;
    animation-delay: 0s;
}

.item-2 {
    bottom: 30%;
    right: -5%;
    color: #68a063;
    animation-delay: 2s;
}

.item-3 {
    top: 70%;
    left: -5%;
    color: #306998;
    animation-delay: 4s;
}

/* Services Section */
.services-modern {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 120px 0;
}

.section-header-modern {
    margin-bottom: 80px;
}

.section-header-modern h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header-modern p {
    font-size: 1.2rem;
    color: var(--text-light-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-modern.text-start p {
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card-modern {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(0, 97, 255, 0.3);
}

.service-card-modern.featured {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 97, 255, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 24px;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.service-card-modern h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.service-card-modern p {
    color: var(--text-light-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light-gray);
    font-weight: 500;
}

.service-list i {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 97, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.service-card-modern:hover .service-overlay {
    left: 100%;
}

/* About Section */
.about-modern {
    background: var(--bg-gray);
    padding: 120px 0;
}

.about-content-modern {
    animation: slideUp 0.8s ease-out;
}

.about-features-modern {
    margin-top: 48px;
}

.feature-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-modern:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon-modern {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content-modern h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-content-modern p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

.about-visual-modern {
    animation: slideUp 0.8s ease-out 0.3s both;
}

.tech-stack {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.tech-category {
    margin-bottom: 32px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-item {
    background: rgba(0, 97, 255, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 97, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us-modern {
    background: var(--bg-light);
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.why-card-modern {
    background: var(--bg-light);
    border: 1px solid rgba(0, 97, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.why-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-blue);
}

.why-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
}

.why-card-modern h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.why-card-modern p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-modern {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 120px 0;
}

.contact-card-modern {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.contact-method {
    margin-bottom: 40px;
}

.contact-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
}

.contact-details h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.contact-link-modern {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-link-modern:hover {
    color: var(--primary-purple);
}

.contact-details p {
    color: var(--text-light-gray);
    margin: 12px 0 0 0;
}

/* Footer */
.footer-modern {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 40px 0;
}

.footer-brand-modern {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-modern .brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-white);
}

.footer-text {
    color: var(--text-light-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-stats-modern {
        justify-content: center;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-visual-modern {
        margin-top: 40px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .tech-stack {
        padding: 24px;
    }
    
    .contact-card-modern {
        padding: 32px 24px;
    }
    
    .section-header-modern h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content-modern {
        text-align: center;
    }
    
    .btn-modern-primary,
    .btn-modern-outline {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .service-card-modern,
    .why-card-modern {
        padding: 32px 24px;
    }
    
    .code-window {
        font-size: 0.8rem;
    }
    
    .feature-modern {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Page Styles */
.contact-hero-modern {
    min-height: 100vh;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.contact-hero-content {
    animation: slideUp 0.8s ease-out;
}

.contact-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-hero-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-form-modern {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.contact-form-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-strong);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-light-gray);
    font-size: 1.1rem;
}

.modern-form .form-group-modern {
    position: relative;
    margin-bottom: 32px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 16px 0 8px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group-modern label {
    position: absolute;
    top: 16px;
    left: 0;
    color: var(--text-light-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group-modern.focused label,
.form-group-modern input:focus + label,
.form-group-modern select:focus + label,
.form-group-modern textarea:focus + label {
    top: -8px;
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    border-bottom-color: var(--primary-blue);
}

.form-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.form-group-modern input:focus ~ .form-underline,
.form-group-modern select:focus ~ .form-underline,
.form-group-modern textarea:focus ~ .form-underline {
    width: 100%;
}

.contact-info-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-strong);
    height: fit-content;
    position: sticky;
    top: 140px;
}

.contact-info-header {
    margin-bottom: 32px;
}

.contact-info-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.contact-info-header p {
    color: var(--text-light-gray);
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.method-content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.method-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.method-link:hover {
    color: var(--primary-purple);
}

.method-highlight {
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.method-content p {
    color: var(--text-light-gray);
    margin: 8px 0 0 0;
    font-size: 0.9rem;
}

.contact-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-cta h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.success-message {
    text-align: center;
    padding: 48px 32px;
    animation: slideUp 0.8s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
}

.success-message h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.success-message p {
    color: var(--text-light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-modern {
    background: var(--bg-gray);
    padding: 120px 0;
}

.faq-accordion {
    margin-top: 48px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-blue);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 32px 24px 32px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Contact Page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-info-card {
        position: static;
    }
    
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .contact-hero-stats {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero-modern {
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form-modern {
        padding: 80px 0;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }
    
    .faq-modern {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 576px) {
    .contact-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .contact-hero-stats .stat-box {
        text-align: center;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-page-hero {
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-form-modern-section {
    padding: 120px 0;
}

.contact-form-card-modern {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-strong);
    animation: slideUp 0.8s ease-out;
}

.contact-form-card-modern .form-floating > .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-white);
    padding: 1rem 0.75rem;
    transition: all 0.3s ease;
}

.contact-form-card-modern .form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 97, 255, 0.25);
    color: var(--text-white);
}

.contact-form-card-modern .form-floating > label {
    color: var(--text-light-gray);
}

.contact-form-card-modern .form-floating > .form-control:focus ~ label,
.contact-form-card-modern .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-form-card-modern .btn-modern-primary {
    padding: 16px 48px;
    font-size: 1.1rem;
    font-weight: 600;
}

.success-message-modern {
    text-align: center;
    padding: 48px 32px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: var(--radius-xl);
    animation: slideUp 0.8s ease-out;
}

.success-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
}

.success-message-modern h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.success-message-modern p {
    color: var(--text-light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-form-card-modern {
        padding: 32px 24px;
    }
    
    .contact-page-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .contact-form-modern-section {
        padding: 80px 0;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple);
}