/* ============================================
   CONTACT_US.CSS - Premium Contact Page
   FULLY RESPONSIVE VERSION
   ============================================ */

/* ---------- DESIGN SYSTEM VARIABLES ---------- */
:root {
    --gold-primary: #e6b800;
    --gold-gradient: linear-gradient(135deg, #e6b800 0%, #ffd966 100%);
    --navy-ultra-deep: #051220;
    --navy-deep: #0a1929;
    --navy-medium: #1a2a3a;
    --white-pure: #ffffff;
    --white-off: #fafbfc;
    --gray-100: #f0f2f4;
    --gray-200: #e2e6ea;
    --gray-300: #cbd0d6;
    --gray-400: #9aa6b5;
    --gray-500: #7c8a9a;
    --gray-600: #5f6c7a;
    --gray-700: #3f4a55;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.03);
    --shadow-md: 0 15px 35px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 35px 70px rgba(0,0,0,0.12);
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-medium: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: 0.2s ease;
}

/* ---------- TYPOGRAPHY PREMIUM ---------- */
.gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.eyebrow-premium {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.eyebrow-premium::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    transform: translateY(-50%);
}

.title-premium {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--navy-deep);
}

.subtitle-premium {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---------- CINEMATIC HERO ---------- */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.contact-hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-media {
    width: 100%;
    height: 100%;
}

.hero-video-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay.multi-layer {
    background: linear-gradient(135deg, rgba(5,18,32,0.95) 0%, rgba(10,25,41,0.85) 70%);
}

.overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(230,184,0,0.02)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    color: var(--white-pure);
    padding: 0 20px;
}

.breadcrumb-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-premium a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb-premium a:hover {
    color: var(--gold-primary);
}

.breadcrumb-premium .separator {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.breadcrumb-premium .current {
    color: var(--white-pure);
    font-weight: 600;
    position: relative;
}

.breadcrumb-premium .current::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
}

.hero-title-group {
    margin-bottom: 40px;
}

.hero-pre-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold-primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-primary);
    padding-bottom: 10px;
}

.hero-title {
    font-size: 5.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 25px;
}

.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 20px rgba(230,184,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-cta .btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 32px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--white-pure);
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
}

.hero-cta .btn-scroll:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.btn-scroll:hover .btn-icon {
    background: var(--navy-deep);
    color: var(--white-pure);
}

.hero-shapes .shape {
    position: absolute;
    background: rgba(230,184,0,0.03);
    border-radius: 50%;
    z-index: 5;
}

.shape-1 {
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
}

.shape-2 {
    bottom: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
}

.shape-3 {
    top: 60%;
    right: 20%;
    width: 150px;
    height: 150px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- ALERT MESSAGES ---------- */
.alert {
    position: relative;
    margin-bottom: 30px;
    border-radius: 12px;
}

.close-message {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.close-message:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- CONTACT OPTIONS PREMIUM (Commented Out) ---------- */
.contact-options-premium {
    padding: 100px 0;
    background: var(--white-pure);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.option-card {
    background: var(--white-pure);
    border: 1px solid var(--gray-100);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.option-card:hover::before {
    transform: scaleX(1);
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.option-card.featured {
    border: 2px solid var(--gold-primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.option-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.option-icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230,184,0,0.2);
    border-radius: 50%;
    filter: blur(15px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.6; }
}

.option-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: var(--gold-primary);
    z-index: 2;
}

.option-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--navy-deep);
    margin-bottom: 15px;
}

.option-desc {
    color: var(--gray-500);
    margin-bottom: 25px;
    line-height: 1.6;
}

.option-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--navy-deep);
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
}

.detail-value:hover {
    color: var(--gold-primary);
}

.option-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.option-availability i {
    color: var(--gold-primary);
}

/* ---------- CONTACT FORM PREMIUM ---------- */
.contact-form-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white-off) 0%, var(--white-pure) 100%);
}

.form-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    background: var(--white-pure);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin: 0 20px;
}

.form-panel {
    padding: 60px;
}

.form-header {
    margin-bottom: 40px;
}

.form-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--navy-deep);
    margin-bottom: 15px;
}

.form-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
}

.premium-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white-pure);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(230,184,0,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload {
    position: relative;
}

.file-upload label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 2px dashed var(--gray-300);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    border-color: var(--gold-primary);
    background: rgba(230,184,0,0.02);
}

.file-upload i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.file-upload span {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.file-hint {
    font-size: 0.8rem !important;
    color: var(--gray-400) !important;
    margin-top: 5px;
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 22px;
    width: 22px;
    background: var(--white-pure);
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--gold-primary);
}

.checkbox-container input:checked ~ .checkmark {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--navy-deep);
    color: var(--white-pure);
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit:hover {
    background: var(--gold-primary);
    color: var(--navy-deep);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(230,184,0,0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: 12px;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.form-footer i {
    color: var(--gold-primary);
}

/* Office Hours Panel */
.office-hours-panel {
    background: var(--navy-deep);
    padding: 60px 40px;
    color: var(--white-pure);
}

.office-hours-header {
    margin-bottom: 40px;
}

.office-hours-header h3 {
    font-size: 2rem;
    font-family: var(--font-display);
    margin-bottom: 15px;
}

.office-hours-header p {
    color: var(--gray-400);
    line-height: 1.6;
}

.timezone-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.timezone-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timezone-item:hover {
    background: rgba(230,184,0,0.1);
    transform: translateX(5px);
}

.timezone-icon {
    width: 50px;
    height: 50px;
    background: rgba(230,184,0,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.timezone-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timezone-info .time {
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.current-time {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white-pure);
    font-family: monospace;
}

.emergency-contact {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(230,184,0,0.1) 0%, rgba(230,184,0,0.05) 100%);
    border-radius: 20px;
    margin-bottom: 30px;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--navy-deep);
    flex-shrink: 0;
}

.emergency-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.emergency-info p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.emergency-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.emergency-phone:hover {
    color: var(--white-pure);
}

.social-connect h4 {
    margin-bottom: 20px;
}

.social-links-premium {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-pure);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.linkedin:hover {
    background: #0077b5;
}
.social-link.twitter:hover {
    background: #000000;
}
.social-link.instagram:hover {
    background: #e4405f;
}
.social-link.youtube:hover {
    background: #ff0000;
}

/* ---------- GLOBAL OFFICES PREMIUM ---------- */
.global-offices-premium {
    padding: 100px 0;
    background: var(--white-pure);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding: 0 20px;
}

.office-card {
    background: var(--white-pure);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.office-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.office-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.office-card:hover .office-image img {
    transform: scale(1.1);
}

.office-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,25,41,0.3) 0%, rgba(10,25,41,0.8) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.office-badge {
    background: var(--gold-primary);
    color: var(--navy-deep);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.office-content {
    padding: 30px 25px;
    position: relative;
}

.office-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-top: -60px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(230,184,0,0.2);
}

.office-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 10px;
}

.office-address {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.office-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
    word-break: break-all;
}

.office-contact a i {
    color: var(--gold-primary);
    width: 20px;
    flex-shrink: 0;
}

.office-contact a:hover {
    color: var(--gold-primary);
}

.office-direction {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.office-direction i {
    transition: transform 0.3s ease;
}

.office-direction:hover {
    color: var(--gold-primary);
}

.office-direction:hover i {
    transform: translateX(5px);
}

/* ---------- INTERACTIVE MAP PREMIUM ---------- */
.interactive-map-premium {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-overlay-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 350px;
}

.map-stats {
    background: rgba(10,25,41,0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    color: var(--white-pure);
    border: 1px solid rgba(230,184,0,0.2);
}

.map-stats h3 {
    font-size: 1.8rem;
    font-family: var(--font-display);
    margin-bottom: 30px;
}

.stat-bar-item {
    margin-bottom: 20px;
}

.bar-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.bar-progress {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.bar-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 4px;
    position: relative;
}

.bar-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.map-image {
    width: 100%;
    height: 100%;
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-attribution {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(10,25,41,0.8);
    color: var(--white-pure);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

/* ---------- FAQ PREMIUM ---------- */
.contact-faq-premium {
    padding: 100px 0;
    background: var(--white-off);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--white-pure);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy-deep);
    margin: 0;
    padding-right: 20px;
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: var(--gray-100);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ---------- CTA PREMIUM ---------- */
.contact-cta-premium {
    padding: 80px 0 120px;
    background: var(--white-off);
}

.cta-premium-card {
    background: linear-gradient(135deg, var(--navy-ultra-deep) 0%, var(--navy-deep) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(230,184,0,0.05) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--white-pure);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cta-primary {
    background: var(--gold-primary);
    color: var(--navy-deep);
}

.btn-cta-primary:hover {
    background: var(--white-pure);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(230,184,0,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white-pure);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-cta-secondary:hover {
    background: var(--white-pure);
    color: var(--navy-deep);
    border-color: var(--white-pure);
    transform: translateY(-3px);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.cta-guarantee i {
    color: var(--gold-primary);
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Extra Large Devices (1400px and down) */
@media (max-width: 1400px) {
    .hero-title { 
        font-size: 4.5rem; 
    }
    
    .title-premium { 
        font-size: 2.8rem; 
    }
    
    .form-panel {
        padding: 50px 40px;
    }
    
    .office-hours-panel {
        padding: 50px 30px;
    }
}

/* Large Devices (1200px and down) */
@media (max-width: 1200px) {
    .options-grid,
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-container {
        grid-template-columns: 1fr;
        margin: 0 15px;
    }
    
    .map-overlay-content {
        left: 5%;
        max-width: 300px;
    }
    
    .map-stats {
        padding: 30px;
    }
    
    .map-stats h3 {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

/* Medium Devices (992px and down) */
@media (max-width: 992px) {
    .hero-title { 
        font-size: 3.8rem; 
    }
    
    .hero-metrics { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px;
    }
    
    .metric-divider { 
        display: none; 
    }
    
    .map-overlay-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        max-width: 100%;
        padding: 40px;
    }
    
    .interactive-map-premium {
        height: auto;
    }
    
    .map-image {
        height: 400px;
    }
    
    .title-premium {
        font-size: 2.4rem;
    }
    
    .subtitle-premium {
        font-size: 1.1rem;
    }
    
    .form-panel {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .office-hours-panel {
        padding: 40px 30px;
    }
    
    .office-hours-header h3 {
        font-size: 1.8rem;
    }
    
    .cta-premium-card {
        padding: 60px 40px;
    }
}

/* Tablets (768px and down) */
@media (max-width: 768px) {
    .hero-title { 
        font-size: 2.8rem; 
    }
    
    .hero-subtitle { 
        font-size: 1.1rem; 
    }
    
    .hero-metrics {
        padding: 20px 0;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .options-grid,
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .option-card.featured {
        transform: scale(1);
    }
    
    .option-card:hover {
        transform: translateY(-5px);
    }
    
    .premium-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-panel {
        padding: 30px 20px;
    }
    
    .office-hours-panel {
        padding: 30px 20px;
    }
    
    .timezone-item {
        padding: 15px;
    }
    
    .emergency-contact {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }
    
    .emergency-phone {
        font-size: 1.2rem;
    }
    
    .social-links-premium {
        justify-content: center;
    }
    
    .office-card:hover {
        transform: translateY(-8px);
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-premium-card {
        padding: 50px 30px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .section-header-centered {
        margin-bottom: 40px;
    }
    
    .contact-form-premium,
    .global-offices-premium,
    .contact-faq-premium {
        padding: 70px 0;
    }
    
    .contact-cta-premium {
        padding: 60px 0 100px;
    }
    
    .breadcrumb-premium {
        margin-bottom: 30px;
        font-size: 0.9rem;
    }
}

/* Small Tablets and Large Phones (576px and down) */
@media (max-width: 576px) {
    .hero-title { 
        font-size: 2.2rem; 
    }
    
    .hero-pre-title {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
    
    .breadcrumb-premium { 
        flex-wrap: wrap; 
        gap: 8px;
    }
    
    .hero-cta .btn-scroll {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .option-card {
        padding: 30px 20px;
    }
    
    .option-card h3 {
        font-size: 1.5rem;
    }
    
    .option-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .option-icon-wrapper i {
        font-size: 2rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .office-hours-panel {
        padding: 30px 20px;
    }
    
    .office-hours-header h3 {
        font-size: 1.5rem;
    }
    
    .timezone-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timezone-icon {
        margin-bottom: 10px;
    }
    
    .emergency-contact {
        padding: 20px;
    }
    
    .emergency-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .emergency-info h4 {
        font-size: 1.1rem;
    }
    
    .emergency-phone {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .office-image {
        height: 180px;
    }
    
    .office-content {
        padding: 25px 20px;
    }
    
    .office-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-top: -50px;
    }
    
    .office-content h3 {
        font-size: 1.2rem;
    }
    
    .office-address {
        font-size: 0.9rem;
    }
    
    .office-contact a {
        font-size: 0.85rem;
    }
    
    .map-stats {
        padding: 25px;
    }
    
    .map-stats h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .map-image {
        height: 300px;
    }
    
    .map-attribution {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .cta-premium-card {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-guarantee {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 18px 15px;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
        padding-right: 10px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .checkbox-container {
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 16px;
        font-size: 1rem;
    }
    
    .form-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .eyebrow-premium {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    
    .title-premium {
        font-size: 2rem;
    }
    
    .subtitle-premium {
        font-size: 1rem;
    }
}

/* Small Phones (375px and down) */
@media (max-width: 375px) {
    .hero-title { 
        font-size: 1.8rem; 
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .breadcrumb-premium {
        font-size: 0.85rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .form-panel {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .office-hours-panel {
        padding: 25px 15px;
    }
    
    .emergency-phone {
        font-size: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
    
    .title-premium {
        font-size: 1.8rem;
    }
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .contact-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-metrics {
        flex-direction: row;
        gap: 20px;
    }
    
    .metric-divider {
        display: block;
    }
    
    .office-image {
        height: 150px;
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
    }
}

/* Print Styles */
@media print {
    .contact-hero,
    .interactive-map-premium,
    .hero-cta,
    .btn-submit,
    .social-links-premium {
        display: none;
    }
    
    .form-container,
    .office-card,
    .faq-item {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .option-card:hover,
    .office-card:hover,
    .timezone-item:hover,
    .social-link:hover,
    .btn-submit:hover,
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover {
        transform: none;
    }
    
    .option-card:active,
    .office-card:active,
    .btn-submit:active,
    .btn-cta-primary:active,
    .btn-cta-secondary:active {
        transform: scale(0.98);
    }
    
    .faq-question {
        -webkit-tap-highlight-color: transparent;
    }
    
    input, 
    select, 
    textarea,
    button {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .gold-gradient {
        background: none;
        color: var(--gold-primary);
    }
    
    .btn-submit,
    .btn-cta-primary {
        border: 2px solid currentColor;
    }
}