/* ========================================
   CONTACT PAGE — DRAMATIC DARK/LIGHT
   ======================================== */

.contact-page * { box-sizing: border-box; }
.contact-page { background: #f0f9fc; }

.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1;
}

/* ========================================
   SHARED
   ======================================== */

.ct-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(127,199,217,0.15);
    border: 1px solid rgba(127,199,217,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7FC7D9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.ct-badge-dot {
    width: 7px; height: 7px;
    background: #7FC7D9;
    border-radius: 50%;
    animation: heroPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(127,199,217,0.5);
}

.ct-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ct-section-title span {
    background: linear-gradient(135deg, #7FC7D9 0%, #a8e0eb 50%, #7FC7D9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGradient 4s ease-in-out infinite;
}

/* ========================================
   HERO — DARK
   ======================================== */

.ct-hero {
    position: relative;
    padding: 120px 24px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 30%, #154d62 60%, #0c3547 100%);
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(127,199,217,0.06) 0%, transparent 60%);
}

.ct-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}
.ct-hero-orb-1 { width: 400px; height: 400px; background: rgba(127,199,217,0.12); top: -100px; right: -80px; animation: orbFloat 12s ease-in-out infinite; }
.ct-hero-orb-2 { width: 300px; height: 300px; background: rgba(58,155,181,0.1); bottom: -60px; left: -60px; animation: orbFloat 16s ease-in-out infinite reverse; }

.ct-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
}

.ct-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    font-size: 13px;
}

.ct-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.ct-breadcrumb a:hover { color: #7FC7D9; }
.ct-breadcrumb svg { width: 14px; height: 14px; color: rgba(255,255,255,0.3); }
.ct-breadcrumb span { color: rgba(255,255,255,0.8); }

.ct-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(127,199,217,0.12);
    border: 1px solid rgba(127,199,217,0.25);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #7FC7D9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.ct-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.ct-hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Quick pills */
.ct-hero-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ct-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.ct-pill:hover {
    background: rgba(127,199,217,0.2);
    border-color: rgba(127,199,217,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    color: #ffffff;
}

.ct-pill svg { width: 18px; height: 18px; color: #7FC7D9; }

/* ========================================
   MAIN CONTENT — LIGHT
   ======================================== */

.ct-main {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f9fc 0%, #e6f4f9 50%, #dceef5 100%);
}

.ct-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 10%, #7FC7D9 30%, #3A9BB5 50%, #7FC7D9 70%, transparent 90%);
    opacity: 0.5;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Info Cards */
.ct-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-card {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(127,199,217,0.12);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
}

.ct-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.ct-card:nth-child(1)::before { background: linear-gradient(to bottom, #3B82F6, #2563EB); }
.ct-card:nth-child(2)::before { background: linear-gradient(to bottom, #10B981, #059669); }
.ct-card:nth-child(3)::before { background: linear-gradient(to bottom, #8B5CF6, #7C3AED); }
.ct-card:nth-child(4)::before { background: linear-gradient(to bottom, #F59E0B, #D97706); }

.ct-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 40px rgba(127,199,217,0.12);
    border-color: rgba(127,199,217,0.25);
}

.ct-card:hover::before { transform: scaleY(1); }

.ct-card-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.ct-card-icon svg { width: 24px; height: 24px; color: white; }

.ct-card-icon-blue { background: linear-gradient(135deg, #3B82F6, #2563EB); box-shadow: 0 4px 16px rgba(59,130,246,0.25); }
.ct-card-icon-green { background: linear-gradient(135deg, #10B981, #059669); box-shadow: 0 4px 16px rgba(16,185,129,0.25); }
.ct-card-icon-purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); box-shadow: 0 4px 16px rgba(139,92,246,0.25); }
.ct-card-icon-amber { background: linear-gradient(135deg, #F59E0B, #D97706); box-shadow: 0 4px 16px rgba(245,158,11,0.25); }

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

.ct-card-body h3 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 6px;
}

.ct-card-body p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.ct-card-body a {
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.ct-card-body a:hover { color: #3A9BB5; }

.ct-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #3A9BB5 !important;
}

.ct-card-link svg { width: 14px; height: 14px; }

/* Toll free */
.ct-toll-free {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.ct-toll-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.ct-toll-free a {
    font-size: 16px;
    font-weight: 700;
    color: #1F2937 !important;
}

.ct-response-time {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: #9CA3AF;
}

.ct-response-time svg { width: 14px; height: 14px; }

/* Hours */
.ct-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}

.ct-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.ct-hours-day { color: #6B7280; }
.ct-hours-time { font-weight: 600; color: #1F2937; }
.ct-closed .ct-hours-time { color: #EF4444; font-weight: 700; }

/* ========================================
   FORM — LIGHT
   ======================================== */

.ct-form-wrap {
    position: sticky;
    top: 100px;
}

.ct-form-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    padding: 36px;
    border: 1px solid rgba(127,199,217,0.1);
}

.ct-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.ct-form-badge {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(127,199,217,0.3);
}

.ct-form-badge svg { width: 24px; height: 24px; color: white; }

.ct-form-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.ct-form-header p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.ct-form .ct-form-row { margin-bottom: 18px; }

.ct-form-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.ct-form-half .ct-form-group { margin-bottom: 0; }

.ct-form label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.ct-form input[type="text"],
.ct-form input[type="email"],
.ct-form input[type="tel"],
.ct-form select,
.ct-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: #1F2937;
    transition: all 0.3s ease;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: #7FC7D9;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(127,199,217,0.1);
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
    color: #9CA3AF;
}

.ct-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 44px;
}

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

/* Checkbox */
.ct-checkbox { margin: 20px 0 24px !important; }

.ct-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400 !important;
    cursor: pointer;
}

.ct-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #7FC7D9;
    margin-top: 1px;
    flex-shrink: 0;
}

.ct-checkbox span {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.5;
}

.ct-checkbox a {
    color: #3A9BB5;
    font-weight: 600;
    text-decoration: none;
}

.ct-checkbox a:hover { text-decoration: underline; }

/* Submit */
.ct-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 32px;
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 6px 24px rgba(127,199,217,0.35);
    position: relative;
    overflow: hidden;
}

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

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

.ct-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(127,199,217,0.5);
}

.ct-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ct-submit svg { width: 18px; height: 18px; }

/* Form Message */
.ct-form-message {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 500;
}

.ct-form-message svg { width: 20px; height: 20px; flex-shrink: 0; }
.ct-form-message.success { background: #D1FAE5; color: #065F46; }
.ct-form-message.error { background: #FEE2E2; color: #991B1B; }

/* ========================================
   MAP — DARK
   ======================================== */

.ct-map {
    position: relative;
    background: linear-gradient(160deg, #0a2f3f 0%, #0c3547 100%);
}

.ct-map-header {
    padding: 60px 0 40px;
    text-align: center;
}

.ct-map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.ct-map-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.8) contrast(1.1);
}

/* ========================================
   FAQ — DARK
   ======================================== */

.ct-faq {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(160deg, #0c3547 0%, #154d62 40%, #1a5c72 70%, #145468 100%);
    overflow: hidden;
}

.ct-faq-orb-1 {
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(127,199,217,0.08);
    border-radius: 50%;
    filter: blur(80px);
    top: -150px; right: -100px;
    animation: orbFloat 14s ease-in-out infinite;
    pointer-events: none;
}

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

.ct-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-faq-item {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}

.ct-faq-item:hover {
    border-color: rgba(127,199,217,0.25);
    background: rgba(255,255,255,0.08);
}

.ct-faq-item.open {
    border-color: rgba(127,199,217,0.4);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.ct-faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s;
}

.ct-faq-q-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(127,199,217,0.2), rgba(127,199,217,0.1));
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.ct-faq-q-icon svg { width: 20px; height: 20px; color: #7FC7D9; }

.ct-faq-item.open .ct-faq-q-icon {
    background: linear-gradient(135deg, #7FC7D9, #3A9BB5);
}

.ct-faq-item.open .ct-faq-q-icon svg { color: white; }

.ct-faq-q-text {
    flex: 1;
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.ct-faq-toggle {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.ct-faq-toggle svg { width: 18px; height: 18px; color: rgba(255,255,255,0.4); }

.ct-faq-item.open .ct-faq-toggle {
    transform: rotate(45deg);
}

.ct-faq-item.open .ct-faq-toggle svg { color: #7FC7D9; }

.ct-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23,1,0.32,1), padding 0.4s ease;
    padding: 0 24px 0 78px;
}

.ct-faq-item.open .ct-faq-answer {
    max-height: 300px;
    padding: 0 24px 24px 78px;
}

.ct-faq-answer p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin: 0;
}

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

@media (max-width: 968px) {
    .ct-container { padding: 0 24px; }
    
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ct-form-wrap { position: static; }
    
    .ct-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .ct-hero { padding: 100px 20px 60px; }
    
    .ct-main { padding: 60px 0; }
    
    .ct-info {
        grid-template-columns: 1fr;
    }
    
    .ct-card { padding: 20px; }
    
    .ct-form-card { padding: 24px; }
    
    .ct-form-half {
        grid-template-columns: 1fr;
    }
    
    .ct-hero-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .ct-map-container { height: 300px; }
    
    .ct-faq { padding: 60px 0 80px; }
    
    .ct-faq-question { padding: 16px 18px; gap: 10px; }
    .ct-faq-answer { padding-left: 58px; }
    .ct-faq-item.open .ct-faq-answer { padding-left: 58px; }
    
    .ct-faq-q-icon { width: 34px; height: 34px; }
    .ct-faq-q-text { font-size: 14px; }
}