/* Contact Hero Section */
.contactHeroSection {
    padding: 140px 0 100px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .contactHeroSection {
    background: transparent;
}

.contactHeroGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contactHeroContent {
    max-width: 600px;
}

.heroBadge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 60px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .heroBadge {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.85), rgba(7, 15, 32, 0.9));
    border: 1px solid rgba(30, 58, 138, 0.4);
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.12);
}

.companyLogo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logoIcon {
    width: 36px;
    height: 36px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.logoText {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text);
}

.companyTagline {
    font-size: 13px;
    color: var(--color-text-secondary);
    font-weight: 600;
    padding-left: 16px;
    border-left: 2px solid var(--color-border);
}

.badgeIcon {
    font-size: 20px;
    line-height: 1;
}

.badgeText {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .badgeText {
    color: var(--color-text);
}

.contactHeroTitle {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: var(--color-text);
}

[data-theme="dark"] .contactHeroTitle {
    color: #f1f5f9;
}

.contactHeroIntro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 16px;
}

[data-theme="dark"] .contactHeroIntro {
    color: #e2e8f0;
}

.contactHeroDescription {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

[data-theme="dark"] .contactHeroDescription {
    color: #cbd5e1;
}

/* Hero Stats */
.heroStats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.heroStat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .heroStat {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.15));
    border-color: rgba(30, 58, 138, 0.3);
}

.heroStat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(30, 58, 138, 0.2);
    border-color: rgba(30, 58, 138, 0.4);
}

[data-theme="dark"] .heroStat:hover {
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
}

.statIcon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.statInfo {
    flex: 1;
}

.statLabel {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .statLabel {
    color: #94a3b8;
}

.statValue {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .statValue {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Visual - Quick Contact Cards */
.contactHeroVisual {
    position: relative;
}

.heroContactCard {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

[data-theme="dark"] .heroContactCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.7), rgba(7, 15, 32, 0.9));
    border-color: rgba(30, 58, 138, 0.4);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
}

.quickContactCard {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(30, 58, 138, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .quickContactCard {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(30, 58, 138, 0.3);
}

.quickContactCard:hover {
    transform: translateX(-8px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.25);
    border-color: rgba(30, 58, 138, 0.5);
}

[data-theme="dark"] .quickContactCard:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.quickContactIcon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1e3a8a;
}

[data-theme="dark"] .quickContactIcon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(59, 130, 246, 0.3));
    color: #60a5fa;
}

.quickContactIcon svg {
    width: 28px;
    height: 28px;
}

.quickContactContent {
    flex: 1;
}

.quickContactTitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .quickContactTitle {
    color: #94a3b8;
}

.quickContactLink {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

[data-theme="dark"] .quickContactLink {
    color: #60a5fa;
}

.quickContactLink:hover {
    color: #3b82f6;
}

[data-theme="dark"] .quickContactLink:hover {
    color: #93c5fd;
}

.quickContactText {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

[data-theme="dark"] .quickContactText {
    color: #e2e8f0;
}

/* Hero Social Icons */
.heroSocialIcons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.heroSocialIcon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

[data-theme="dark"] .heroSocialIcon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
    color: #60a5fa;
}

.heroSocialIcon svg {
    width: 20px;
    height: 20px;
}

.heroSocialIcon:hover {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(30, 58, 138, 0.3);
}

[data-theme="dark"] .heroSocialIcon:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}

.heroVisualGradient {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

[data-theme="dark"] .heroVisualGradient {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Contact Form Section */
.contactFormSection {
    background: transparent;
    padding: 60px 0;
}

[data-theme="dark"] .contactFormSection {
    background: transparent;
}

.contactFormWrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(92, 23, 243, 0.15);
    border-radius: 24px;
    padding: 48px 56px;
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.15);
}

[data-theme="dark"] .contactFormWrapper {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.6), rgba(7, 15, 32, 0.8));
    border-color: rgba(92, 23, 243, 0.3);
    box-shadow: 0 20px 60px rgba(92, 23, 243, 0.3);
}

.contactFormTitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    text-align: center;
}

[data-theme="dark"] .contactFormTitle {
    color: #f1f5f9;
}

.contactFormSubtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    text-align: center;
}

[data-theme="dark"] .contactFormSubtitle {
    color: #cbd5e1;
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.formRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.formGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.formLabel {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

[data-theme="dark"] .formLabel {
    color: #f1f5f9;
}

.formInput,
.formTextarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(92, 23, 243, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
    color: var(--color-text);
}

[data-theme="dark"] .formInput,
[data-theme="dark"] .formTextarea {
    background: rgba(15, 23, 42, 0.5);
    color: #f1f5f9;
    border-color: rgba(92, 23, 243, 0.3);
}

.formInput:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(92, 23, 243, 0.1);
}

[data-theme="dark"] .formInput:focus,
[data-theme="dark"] .formTextarea:focus {
    border-color: #a78bfa;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.1);
}

.formTextarea {
    resize: vertical;
    min-height: 150px;
}

.formHelpText {
    font-size: 13px;
    color: var(--color-text-muted);
}

[data-theme="dark"] .formHelpText {
    color: #94a3b8;
}

.btnSubmit {
    margin-top: 8px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

.btnSubmit svg {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

/* Success State */
.contactSuccess {
    text-align: center;
    padding: 48px 24px;
}

.successIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.successIcon svg {
    width: 48px;
    height: 48px;
    color: white;
}

.successTitle {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .successTitle {
    color: #f1f5f9;
}

.successMessage {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

[data-theme="dark"] .successMessage {
    color: #cbd5e1;
}

/* Contact Info Section */
.contactInfoSection {
    background: transparent;
    padding: 60px 0 80px;
}

[data-theme="dark"] .contactInfoSection {
    background: transparent;
}

/* Address Card - Full Width, Prominent */
.contactAddressCard {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(92, 23, 243, 0.2);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(92, 23, 243, 0.12);
}

[data-theme="dark"] .contactAddressCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.7), rgba(7, 15, 32, 0.9));
    border-color: rgba(92, 23, 243, 0.35);
    box-shadow: 0 12px 40px rgba(92, 23, 243, 0.25);
}

.contactAddressCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(92, 23, 243, 0.25);
    border-color: rgba(92, 23, 243, 0.6);
}

[data-theme="dark"] .contactAddressCard:hover {
    box-shadow: 0 16px 48px rgba(92, 23, 243, 0.4);
}

.contactAddressIcon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.15), rgba(157, 78, 221, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

[data-theme="dark"] .contactAddressIcon {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.35), rgba(157, 78, 221, 0.25));
    color: #a78bfa;
}

.contactAddressIcon svg {
    width: 36px;
    height: 36px;
}

.contactAddressContent {
    flex: 1;
}

.contactAddressTitle {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .contactAddressTitle {
    color: #f1f5f9;
}

.contactAddressText {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin: 0;
}

[data-theme="dark"] .contactAddressText {
    color: #cbd5e1;
}

/* Info Cards Grid - 4 Blocks */
.contactInfoGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contactInfoCard {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(92, 23, 243, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .contactInfoCard {
    background: linear-gradient(135deg, rgba(14, 31, 64, 0.6), rgba(7, 15, 32, 0.8));
    border-color: rgba(92, 23, 243, 0.3);
}

.contactInfoCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(92, 23, 243, 0.2);
    border-color: rgba(92, 23, 243, 0.5);
}

[data-theme="dark"] .contactInfoCard:hover {
    box-shadow: 0 12px 32px rgba(92, 23, 243, 0.4);
}

.contactInfoIcon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.1), rgba(157, 78, 221, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

[data-theme="dark"] .contactInfoIcon {
    background: linear-gradient(135deg, rgba(92, 23, 243, 0.3), rgba(157, 78, 221, 0.2));
    color: #a78bfa;
}

.contactInfoIcon svg {
    width: 32px;
    height: 32px;
}

.contactInfoContent {
    flex: 1;
    width: 100%;
}

.contactInfoCardTitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

[data-theme="dark"] .contactInfoCardTitle {
    color: #f1f5f9;
}

.contactInfoCardText {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

[data-theme="dark"] .contactInfoCardText {
    color: #cbd5e1;
}

.contactInfoCardLink {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

[data-theme="dark"] .contactInfoCardLink {
    color: #a78bfa;
}

.contactInfoCardLink:hover {
    color: var(--color-primary-dark);
}

[data-theme="dark"] .contactInfoCardLink:hover {
    color: #c4b5fd;
}

/* Social Icons */
.contactSocialIcons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.contactSocialIcon {
    width: 44px;
    height: 44px;
    background: rgba(92, 23, 243, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

[data-theme="dark"] .contactSocialIcon {
    background: rgba(92, 23, 243, 0.2);
    color: #a78bfa;
}

.contactSocialIcon svg {
    width: 22px;
    height: 22px;
}

.contactSocialIcon:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(92, 23, 243, 0.3);
}

[data-theme="dark"] .contactSocialIcon:hover {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    color: white;
}

/* Full Width Map Section */
.contactMapSection {
    padding: 0;
    margin: 0;
    position: relative;
}

.contactMapContainer {
    width: 100%;
    height: 500px;
    position: relative;
}

.contactMapContainer iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .contactHeroGrid {
        gap: 60px;
    }

    .contactInfoGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contactHeroSection {
        padding: 100px 0 60px;
    }

    .contactHeroGrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contactHeroContent {
        max-width: 100%;
    }

    .contactHeroTitle {
        font-size: 36px;
    }

    .contactHeroIntro {
        font-size: 16px;
    }

    .contactHeroDescription {
        font-size: 15px;
    }

    .heroStats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .heroContactCard {
        padding: 24px;
        gap: 16px;
    }

    .quickContactCard {
        padding: 20px;
        gap: 16px;
    }

    .quickContactIcon {
        width: 48px;
        height: 48px;
    }

    .quickContactIcon svg {
        width: 24px;
        height: 24px;
    }

    .quickContactTitle {
        font-size: 13px;
    }

    .quickContactLink {
        font-size: 15px;
    }

    .contactFormWrapper {
        padding: 32px 24px;
    }

    .contactFormTitle {
        font-size: 26px;
    }

    .formRow {
        grid-template-columns: 1fr;
    }

    .contactAddressCard {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .contactInfoGrid {
        grid-template-columns: 1fr;
    }

    .contactMapContainer {
        height: 400px;
    }
}
