/* ========================================
   CONTACT PAGE STYLES
   SlashExperts - Contact Us Page
   ======================================== */

/* ========== CSS VARIABLES (Page-specific additions) ========== */
:root {
    --border-light: rgba(129, 103, 234, 0.12);
    --accent-green: #10b981;
}

/* ========== HERO BACKGROUND ========== */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, #f8f7fc 100%);
    pointer-events: none;
    z-index: 2;
}

.background-gradient-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.background-gradient {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%,
            rgba(200, 170, 255, 0.25) 0%,
            rgba(180, 140, 255, 0.15) 25%,
            rgba(255, 200, 220, 0.12) 45%,
            rgba(255, 200, 150, 0.08) 60%,
            transparent 75%);
    filter: blur(80px);
    animation: gradientFloat 8s ease-in-out infinite;
}

.background-gradient-secondary {
    position: absolute;
    top: 120px;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
        rgba(73, 204, 249, 0.18) 0%,
        rgba(73, 204, 249, 0.1) 40%,
        transparent 65%);
    filter: blur(70px);
    animation: gradientFloatLeft 10s ease-in-out infinite;
}

.background-gradient-tertiary {
    position: absolute;
    top: 150px;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
        rgba(236, 72, 153, 0.15) 0%,
        rgba(219, 39, 119, 0.08) 40%,
        transparent 65%);
    filter: blur(70px);
    animation: gradientFloatRight 12s ease-in-out infinite reverse;
}

.background-gradient-orange {
    position: absolute;
    top: 350px;
    left: 60%;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
        rgba(249, 168, 82, 0.15) 0%,
        rgba(251, 191, 36, 0.08) 40%,
        transparent 65%);
    filter: blur(65px);
    animation: gradientFloatRight 14s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    50% { transform: translateX(-50%) translateY(-20px) scale(1.02); }
}

@keyframes gradientFloatLeft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

@keyframes gradientFloatRight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.background-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.35) 0px,
        rgba(255, 255, 255, 0.35) 1px,
        transparent 1px,
        transparent 48px
    );
    pointer-events: none;
    mask-image: radial-gradient(ellipse 60% 40% at 50% 30%,
        black 0%,
        black 40%,
        transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 40% at 50% 30%,
        black 0%,
        black 40%,
        transparent 100%);
}

/* ========== HERO SECTION ========== */
.contact-hero {
    padding: 140px 48px 60px;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--accent-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.contact-hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== CONTACT OPTIONS GRID ========== */
.contact-options-wrapper {
    background: linear-gradient(180deg, #f8f7fc 0%, #ffffff 100%);
    padding-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 48px 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.contact-option {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 103, 234, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 28px;
}

.contact-option:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 64px rgba(129, 103, 234, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.05);
    border-color: rgba(129, 103, 234, 0.3);
}

.contact-option:hover::before {
    opacity: 1;
}

.contact-option:hover .option-icon {
    transform: scale(1.1) rotate(-5deg);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.option-icon.sales,
.option-icon.support,
.option-icon.partners {
    background: linear-gradient(135deg, #0e0e44 0%, #1a1a5e 100%);
    box-shadow: 0 12px 32px rgba(14, 14, 68, 0.3);
}

.option-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    stroke-width: 1.5;
}

.contact-option h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.contact-option p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.option-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--violet);
    position: relative;
    z-index: 1;
}

.option-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-option:hover .option-cta svg {
    transform: translateX(4px);
}

/* Response time badge */
.response-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-green);
}

.response-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* ========== MAIN CONTACT SECTION ========== */
.main-contact-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 100%);
}

.main-contact {
    padding: 80px 48px 120px;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Left Side - Info */
.contact-info {
    position: sticky;
    top: 120px;
}

.contact-info h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.contact-info > p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 48px;
}

/* Contact Details Cards */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-detail-card:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(129, 103, 234, 0.1);
}

.detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon.email {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
}

.detail-icon.phone {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(52, 211, 153, 0.15) 100%);
}

.detail-icon.location {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-icon.email svg { stroke: var(--violet); }
.detail-icon.phone svg { stroke: var(--accent-green); }
.detail-icon.location svg { stroke: var(--accent-orange); }

.detail-content h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.detail-content p {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
}

.detail-content a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--violet);
}

/* Social Links */
.social-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--violet);
    border-color: var(--violet);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--navy);
    transition: fill 0.3s ease;
}

.social-link:hover svg {
    fill: white;
}

/* Right Side - Form */
.contact-form-wrapper {
    position: relative;
}

.form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 48px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.06),
        0 16px 40px rgba(129, 103, 234, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 1);
}

.form-header {
    margin-bottom: 36px;
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 16px;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(129, 103, 234, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--violet);
    background: white;
    box-shadow: 0 0 0 4px rgba(129, 103, 234, 0.1);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-submit {
    margin-top: 32px;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    color: white;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* Submit button success state */
.btn-submit.success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.form-note {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.form-note svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

/* ========== TRUST INDICATORS ========== */
.trust-section {
    padding: 80px 48px;
    background: linear-gradient(180deg, #f8f7fc 0%, #f3f0ff 50%, #f8f7fc 100%);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.trust-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 48px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-stat {
    text-align: center;
}

.trust-stat-value {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-stat-label {
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}

/* ========== FAQ SECTION ========== */
.faq-wrapper {
    background: #f8f7fc;
}

.faq-section {
    padding: 100px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.faq-header p {
    font-size: 18px;
    color: var(--muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.faq-item.active {
    box-shadow: 0 12px 40px rgba(129, 103, 234, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(129, 103, 234, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--violet);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--violet);
}

.faq-item.active .faq-icon svg {
    stroke: white;
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

/* ========== GLOBE SECTION ========== */
.globe-wrapper-section {
    background: #f8f7fc;
}

.globe-section {
    padding: 100px 48px;
    max-width: 1600px;
    margin: 0 auto;
    overflow: hidden;
}

.globe-header {
    text-align: center;
    margin-bottom: 60px;
}

.globe-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.globe-header p {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.globe-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.globe-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#globeCanvas {
    display: block;
    cursor: grab;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

#globeCanvas:active {
    cursor: grabbing;
}

.globe-wrapper:hover #globeCanvas {
    transform: scale(1.12);
}

/* Globe glow effect */
.globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.15) 35%, rgba(168, 85, 247, 0.08) 55%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(8px);
}

.globe-wrapper:hover .globe-glow {
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.45) 0%, rgba(139, 92, 246, 0.25) 35%, rgba(168, 85, 247, 0.12) 55%, transparent 70%);
    filter: blur(12px);
}

/* Location cards */
.globe-locations {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 420px;
    flex-shrink: 0;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(129, 103, 234, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.location-card.hq {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(168, 85, 247, 0.06) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.location-card.hq:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.18) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.location-marker {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.location-marker.hq {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.5);
}

.location-marker.hq::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: markerPulse 2s ease-out infinite;
}

.location-marker.regular {
    background: rgba(139, 92, 246, 0.12);
}

.location-marker svg {
    width: 22px;
    height: 22px;
}

.location-marker.hq svg {
    stroke: white;
}

.location-marker.regular svg {
    stroke: var(--violet);
}

@keyframes markerPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.location-info {
    flex: 1;
}

.location-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.location-info p {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.location-badge {
    padding: 5px 12px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* More locations indicator */
.more-locations {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
}

.more-locations-dots {
    display: flex;
    gap: 6px;
}

.more-locations-dots span {
    width: 8px;
    height: 8px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
}

.more-locations-dots span:nth-child(1) { animation: dotPulse 1.5s ease-in-out infinite; }
.more-locations-dots span:nth-child(2) { animation: dotPulse 1.5s ease-in-out infinite 0.2s; }
.more-locations-dots span:nth-child(3) { animation: dotPulse 1.5s ease-in-out infinite 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Spinner animation for form */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .globe-container {
        flex-direction: column;
        gap: 40px;
    }

    .globe-wrapper {
        width: 550px;
        height: 550px;
    }

    .globe-glow {
        width: 500px;
        height: 500px;
    }

    .globe-locations {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .main-contact {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        position: relative;
        top: 0;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 140px 24px 60px;
    }

    .contact-hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .contact-options {
        padding: 0 24px;
    }

    .main-contact {
        padding: 60px 24px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .form-card {
        padding: 32px 24px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .trust-section {
        padding: 60px 24px;
    }

    .trust-stats {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .trust-stat-value {
        font-size: 36px;
    }

    .faq-section {
        padding: 60px 24px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .globe-section {
        padding: 60px 24px;
    }

    .globe-header h2 {
        font-size: 32px;
    }

    .globe-wrapper {
        width: 380px;
        height: 380px;
    }

    .globe-glow {
        width: 340px;
        height: 340px;
    }

    .globe-locations {
        max-width: 100%;
    }

    .location-card {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .trust-stats {
        grid-template-columns: 1fr;
    }
}
