/* Contact Page Styles - PEG Security */

/* ========================================
   VARIABLES & ANIMATIONS
========================================== */

:root {
    --gold: #D0B96D;
    --gold-light: #e6c980;
    --gold-dark: #b8a05d;
    --dark: #292B2B;
    --dark-light: #3a3c3c;
    --dark-darker: #1a1c1c;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --grey: #404040;
    --light-grey: #5A5A5A;
    --success: #27AE60;
    --danger: #E74C3C;
    --warning: #F39C12;
    --info: #3498DB;
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(208, 185, 109, 0.3);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-emergency {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.4);
    }
    50% { 
        box-shadow: 0 0 40px rgba(231, 76, 60, 0.7);
    }
}

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

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

/* Page Loading States */
body {
    opacity: 1;
    animation: fadeInUp 1s ease-out forwards;
}

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

.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-darker) 100%);
    overflow: hidden;
    padding: 100px 0 80px 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(208, 185, 109, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero .hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(231, 76, 60, 0.15);
    border: 2px solid rgba(231, 76, 60, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #E74C3C;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-emergency 3s ease-in-out infinite;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: #E74C3C;
    border-radius: 50%;
    animation: pulse-emergency 2s ease-in-out infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.text-gold {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(208, 185, 109, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(208, 185, 109, 0.1);
    border-color: rgba(208, 185, 109, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   CONTACT METHODS SECTION
========================================== */

.contact-methods {
    padding: 80px 0;
    background: var(--off-white);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: var(--transition-smooth);
}

.contact-card.emergency::before {
    background: linear-gradient(90deg, #E74C3C, #C0392B);
}

.contact-card.consultation::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.contact-card.support::before {
    background: linear-gradient(90deg, var(--info), #2980B9);
}

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

.contact-card.emergency:hover {
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-bounce);
    animation: float 3s ease-in-out infinite;
}

.contact-card.emergency .card-icon {
    background: #E74C3C;
    animation-delay: 0.2s;
}

.contact-card.support .card-icon {
    background: var(--info);
    animation-delay: 0.4s;
}

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

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: inherit;
    min-width: 200px;
    justify-content: center;
}

.contact-btn.primary {
    background: var(--gold);
    color: var(--white);
}

.contact-btn.primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.4);
}

.contact-btn.secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.contact-btn.secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-card.emergency .contact-btn.primary {
    background: #E74C3C;
}

.contact-card.emergency .contact-btn.primary:hover {
    background: #C0392B;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.response-time {
    font-size: 0.85rem;
    color: var(--dark);
    font-style: italic;
    font-weight: 600;
    opacity: 0.8;
}

/* ========================================
   OFFICE INFO & MAP SECTION
========================================== */

.office-info {
    padding: 80px 0;
    background: var(--white);
}

.office-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.office-details .section-tag {
    display: inline-block;
    background: rgba(208, 185, 109, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: var(--gold);
}

.office-cards {
    display: grid;
    gap: 25px;
}

.info-card {
    background: var(--off-white);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
    transition: var(--transition-smooth);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transform: translateX(5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.card-header i {
    color: var(--gold);
    font-size: 1.2rem;
}

.card-header h4 {
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.card-content p {
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 500;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.map-link:hover {
    color: var(--gold-dark);
    transform: translateX(3px);
}

.hours-list, .phone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item, .phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--dark);
    font-weight: 500;
}

.hours-item:last-child, .phone-item:last-child {
    border-bottom: none;
}

.hours-item .emergency {
    color: #E74C3C;
    font-weight: 600;
}

.phone-item a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.phone-item a:hover {
    color: var(--gold-dark);
}

/* Map Section */
.office-map {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.google-map {
    width: 100%;
    height: 400px;
    background: var(--off-white);
    position: relative;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 40px 20px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.map-placeholder h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.map-btn {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(208, 185, 109, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.map-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

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

.map-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(208, 185, 109, 0.5);
}

.map-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(208, 185, 109, 0.4);
}

.map-btn i {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.map-btn:hover i {
    transform: scale(1.1);
}

.map-info {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.location-badge {
    background: rgba(41, 43, 43, 0.9);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.location-badge i {
    color: var(--gold);
}

/* ========================================
   HQ EXECUTIVE CONTACT FORM SECTION
========================================== */

.hq-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-darker) 100%);
    position: relative;
    overflow: hidden;
}

.hq-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(208, 185, 109, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(208, 185, 109, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hq-contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   CONTACT INFORMATION PANEL
========================================== */

.contact-info-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-large);
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.panel-header {
    text-align: center;
    margin-bottom: 40px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(208, 185, 109, 0.2);
    border: 1px solid rgba(208, 185, 109, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.panel-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.panel-header p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 500;
}

.contact-channels {
    margin-bottom: 40px;
}

.channel-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.channel-item:last-child {
    border-bottom: none;
}

.channel-item.priority {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    padding: 20px;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
    margin-bottom: 10px;
}

.channel-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.channel-item.priority .channel-icon {
    background: #E74C3C;
}

.channel-info {
    flex: 1;
}

.channel-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.channel-item.priority .channel-label {
    color: #E74C3C;
}

.channel-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 5px;
    transition: var(--transition-smooth);
}

.channel-value:hover {
    color: var(--gold);
}

.channel-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.certifications h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 18px;
    transition: var(--transition-smooth);
    min-height: 50px;
}

.cert-badge:hover {
    background: rgba(208, 185, 109, 0.1);
    border-color: rgba(208, 185, 109, 0.3);
}

.cert-badge i {
    color: var(--gold);
    font-size: 1rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========================================
   HQ FORM PANEL
========================================== */

.hq-form-panel {
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.hq-form-panel .form-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 30px 40px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.hq-form-panel .form-header h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hq-form-panel .form-header p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.hq-contact-form {
    padding: 40px;
}

/* Priority Selector */
.priority-selector {
    margin-bottom: 40px;
}

.priority-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.priority-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.priority-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.priority-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 100%;
}

.priority-option label:hover {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.2);
}

.priority-option input[type="radio"]:checked + label {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.3);
}

.priority-option label i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.priority-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.priority-desc {
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 500;
}

/* Form Sections */
.form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section .section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

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

.form-field {
    position: relative;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(208, 185, 109, 0.2);
    background: var(--white);
}

.form-field i {
    position: absolute;
    left: 18px;
    bottom: 15px;
    color: var(--gold);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.form-field:has(textarea) i {
    bottom: auto;
    top: 45px;
}

.form-field input::placeholder,
.form-field select::placeholder,
.form-field textarea::placeholder {
    color: var(--dark);
    font-weight: 500;
    opacity: 0.7;
}

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

/* Confidentiality Notice */
.confidentiality-notice {
    background: rgba(52, 152, 219, 0.05);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.notice-header i {
    color: var(--info);
    font-size: 1.2rem;
}

.notice-header span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.confidentiality-notice p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
    font-weight: 500;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--grey);
    border-radius: 4px;
    background: var(--white);
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container:hover .checkmark {
    border-color: var(--gold);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
}

/* Form Actions */
.hq-contact-form .form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-submit,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 220px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(208, 185, 109, 0.4);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(208, 185, 109, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Response Indicator */
.response-indicator {
    margin-top: 30px;
    background: rgba(208, 185, 109, 0.1);
    border: 1px solid rgba(208, 185, 109, 0.3);
    border-radius: var(--border-radius);
    padding: 20px;
}

.indicator-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.indicator-content i {
    color: var(--gold);
    font-size: 1.3rem;
}

.indicator-text strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.indicator-text span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   LEGACY CONTACT FORM (HIDDEN)
========================================== */

.contact-form-section {
    display: none; /* Hide the old form */
    padding: 80px 0;
    background: var(--off-white);
}

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

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header .section-tag {
    display: inline-block;
    background: rgba(208, 185, 109, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.form-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--dark);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

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

.form-group {
    position: relative;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(208, 185, 109, 0.2);
}

.form-group i {
    position: absolute;
    left: 18px;
    bottom: 15px;
    color: var(--gold);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--dark);
    font-weight: 500;
    opacity: 0.7;
}

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

.form-group:has(textarea) i {
    bottom: auto;
    top: 45px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ========================================
   BOOKING MODAL SYSTEM
========================================== */

.booking-modal, .success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.booking-modal.active, .success-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-large);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 2px solid var(--off-white);
}

.modal-header h3 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--grey);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--off-white);
    color: var(--dark);
}

/* Booking Progress */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: var(--off-white);
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 80px;
    right: 80px;
    height: 2px;
    background: #E0E0E0;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    background: var(--off-white);
    padding: 0 15px;
    transition: var(--transition-smooth);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E0E0E0;
    color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.progress-step.active .step-number {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 600;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--gold);
    font-weight: 600;
}

/* Booking Form */
.booking-form {
    padding: 0 30px 30px;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInUp 0.4s ease forwards;
}

.booking-step h4 {
    color: var(--dark);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    position: relative;
    cursor: pointer;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-option:hover .option-content {
    background: var(--white);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.service-option input[type="radio"]:checked + .option-content {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(208, 185, 109, 0.3);
}

.option-content i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.option-content h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.option-content p {
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.duration {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Schedule Options */
.schedule-options .form-group {
    margin-bottom: 25px;
}

.time-slots {
    margin-bottom: 25px;
}

.time-slots label {
    display: block;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 15px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-option {
    position: relative;
    cursor: pointer;
}

.time-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.time-option span {
    display: block;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition-smooth);
}

.time-option:hover span {
    background: var(--white);
    border-color: var(--gold);
}

.time-option input[type="radio"]:checked + span {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.booking-note {
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.booking-note i {
    color: var(--info);
    font-size: 1.2rem;
    margin-top: 2px;
}

.booking-note p {
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

/* Booking Summary */
.booking-summary {
    background: var(--off-white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 25px;
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    color: var(--dark);
    font-weight: 600;
}

.summary-item .value {
    color: var(--dark);
    font-weight: 600;
}

/* Terms Agreement */
.terms-agreement {
    margin-bottom: 30px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
    font-weight: 500;
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--grey);
    border-radius: 4px;
    background: var(--white);
    position: relative;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-wrapper:hover .checkbox-custom {
    border-color: var(--gold);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Booking Navigation */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid var(--off-white);
}

.booking-navigation .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Success Modal */
.success-modal .modal-content {
    max-width: 500px;
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(39, 174, 96, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(39, 174, 96, 0.5);
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.success-modal h3 {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-modal p {
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BACK TO TOP BUTTON
========================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-elevated);
}

/* ========================================
   RESPONSIVE DESIGN
========================================== */

@media (max-width: 1024px) {
    .office-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* HQ Form Responsive */
    .hq-contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-panel {
        position: relative;
        top: auto;
    }
    
    .priority-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .priority-option label {
        padding: 15px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hq-contact-form .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-submit,
    .btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: calc(100vh - 70px);
        padding: 40px 0;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-progress {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .booking-progress::before {
        display: none;
    }
    
    .time-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: calc(100vh - 60px);
        padding: 30px 0;
    }
    
    .contact-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .modal-header,
    .booking-form {
        padding-left: 20px;
        padding-right: 20px;
    }
}