/* ========================================
   GLOBAL RESET & ALIGNMENT
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Ensure all containers align */
section {
    width: 100%;
    box-sizing: border-box;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #f97316 100%);
    z-index: 9999;
    transition: width 0.1s linear;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

/* Consistent inner container - UPDATED TO 1600px */
.contact-hero-container,
.contact-content,
.contact-info-section .contact-info-container,
.contact-cta .cta-container {
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
}

/* HERO SECTION - Ultra Attractive Modern Light Design */
.contact-hero {
    min-height: 60vh;
    background: linear-gradient(180deg, #ffffff 0%, #fef3f2 30%, #fff7ed 60%, #fef3f2 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Floating Decorative Elements */
.contact-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 25s ease-in-out infinite;
    z-index: 0;
}

.contact-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    animation: float 20s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
    }
}

.contact-hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #bfdbfe;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12), 0 2px 8px rgba(59, 130, 246, 0.08);
    animation: fadeInUp 1s ease 0.2s both;
    backdrop-filter: blur(10px);
}

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

.badge-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.85;
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 400;
}

/* CONTACT SECTION - Two Column Layout */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:nth-child(2)::before {
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
}

.info-card:nth-child(3)::before {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12), 0 8px 24px rgba(59, 130, 246, 0.06);
    border-color: #dbeafe;
}

.info-card:nth-child(2):hover {
    box-shadow: 0 16px 48px rgba(249, 115, 22, 0.12), 0 8px 24px rgba(249, 115, 22, 0.06);
    border-color: #fed7aa;
}

.info-card:nth-child(3):hover {
    box-shadow: 0 16px 48px rgba(16, 185, 129, 0.12), 0 8px 24px rgba(16, 185, 129, 0.06);
    border-color: #d1fae5;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
}

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

.info-card:nth-child(2) .info-icon {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.info-card:nth-child(3) .info-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.info-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
}

.info-card-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.info-card-content p:last-child {
    margin-bottom: 0;
}

.info-card-content a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-content a:hover {
    color: #3b82f6;
    gap: 0.8rem;
}

/* ========================================
   APPOINTMENT SCHEDULER - NEW SECTION
   ======================================== */

.appointment-scheduler {
    background: linear-gradient(135deg, #fef3f2 0%, #fff7ed 100%);
    border: 2px solid #fed7aa;
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.scheduler-header {
    text-align: center;
    margin-bottom: 2rem;
}

.scheduler-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.scheduler-subtitle {
    color: #64748b;
    font-size: 1rem;
}

/* Calendar */
.calendar-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid #f1f5f9;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-month {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day-header {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    padding: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid transparent;
}

.calendar-day:not(.disabled):not(.other-month):hover {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: #cbd5e1;
    cursor: default;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-color: #1e40af;
}

.calendar-day.today {
    border-color: #f97316;
    color: #f97316;
    font-weight: 800;
}

/* Time Slots */
.time-slots-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px solid #f1f5f9;
}

.time-slots-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.time-slot {
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    background: white;
}

.time-slot:hover:not(.disabled) {
    border-color: #3b82f6;
    background: #eff6ff;
    transform: translateY(-2px);
}

.time-slot.disabled {
    background: #f8fafc;
    color: #cbd5e1;
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot.selected {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-color: #1e40af;
}

.selected-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.5rem;
    display: none;
}

.selected-info.show {
    display: block;
}

.selected-info-text {
    color: #1e40af;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.8rem;
}

.form-label span {
    color: #ef4444;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-file-wrapper {
    position: relative;
}

.form-file-input {
    display: none;
}

.form-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border: 2px dashed #cbd5e1;
    border-radius: 14px;
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-file-label:hover {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25), 0 4px 12px rgba(30, 64, 175, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.form-submit-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: left 0.6s ease;
}

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

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(30, 64, 175, 0.35), 0 8px 20px rgba(30, 64, 175, 0.2);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: none;
    align-items: center;
    gap: 1rem;
}

.success-message.show {
    display: flex;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    font-size: 2rem;
}

.success-text {
    color: #166534;
    font-weight: 600;
}

/* Social Links Section */
.social-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.social-content {
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #bfdbfe;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-link {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.social-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(59, 130, 246, 0.15), 0 8px 24px rgba(59, 130, 246, 0.08);
    border-color: #dbeafe;
}

.social-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.social-link:hover .social-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.25);
}

.social-link:nth-child(2) .social-icon {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.15);
}

.social-link:nth-child(2):hover .social-icon {
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.25);
}

.social-link:nth-child(3) .social-icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.social-link:nth-child(3):hover .social-icon {
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.25);
}

.social-link:nth-child(4) .social-icon {
    background: linear-gradient(135deg, #fef3f2 0%, #fecaca 100%);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
}

.social-link:nth-child(4):hover .social-icon {
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.25);
}

.social-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.social-username {
    font-size: 0.95rem;
    color: #64748b;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.faq-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #dbeafe;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1e40af;
}

.faq-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.8rem 2rem;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.8;
}

/* CTA Section */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #fef3f2 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-cta .cta-container {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    padding: 5rem 4rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.04);
    border: 2px solid #f1f5f9;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-title .gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.cta-stat:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-stat:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        position: static;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .social-links {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .time-slots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-hero,
    .contact-section,
    .social-section,
    .faq-section,
    .contact-cta {
        padding: 3rem 0;
    }

    .contact-cta .cta-container {
        padding: 3rem 2rem;
    }
    
    .appointment-scheduler {
        padding: 1.5rem;
    }
}
/* ── COMPREHENSIVE MOBILE RESPONSIVE ADDITIONS ── */

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    .hero-title {
        font-size: 1.65rem;
        line-height: 1.3;
    }
    .hero-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .contact-section,
    .social-section,
    .faq-section,
    .contact-cta {
        padding: 2.5rem 0;
    }
    .info-card {
        padding: 1.5rem 1.2rem;
        border-radius: 18px;
    }
    .info-card-title {
        font-size: 1.1rem;
    }
    .info-card-content p {
        font-size: 0.95rem;
    }
    .contact-form-wrapper {
        padding: 1.5rem 1.2rem;
        border-radius: 20px;
    }
    .form-title {
        font-size: 1.5rem;
    }
    .form-input, .form-textarea, .form-select {
        padding: 0.85rem 1.1rem;
        font-size: 0.95rem;
    }
    .form-submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .appointment-scheduler {
        padding: 1.2rem;
        border-radius: 18px;
    }
    .scheduler-title {
        font-size: 1.4rem;
    }
    .calendar-day-header {
        font-size: 0.72rem;
        padding: 0.3rem;
    }
    .time-slot {
        padding: 0.65rem 0.4rem;
        font-size: 0.82rem;
    }
    .social-links {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .social-link {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    .social-name {
        font-size: 0.9rem;
    }
    .social-username {
        font-size: 0.8rem;
    }
    .faq-question {
        padding: 1.2rem 1.3rem;
        font-size: 1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.3rem 1.4rem 1.3rem;
    }
    .contact-cta .cta-container {
        padding: 2.5rem 1.2rem;
        border-radius: 20px;
    }
    .cta-title {
        font-size: 1.5rem;
    }
    .cta-text {
        font-size: 0.95rem;
    }
    .cta-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.4rem; }
    .social-links { grid-template-columns: 1fr; }
    .cta-stats { grid-template-columns: 1fr; }
}
