/**
 * Contact Page Stylesheet
 * File: assets/css/contact.css
 */

/* ============================================
   Shared Container
   ============================================ */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Hero
   ============================================ */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(circle at 20% 60%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center !important;
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 0 20px;
}

.contact-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.95);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.contact-hero-content h1 {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.contact-hero-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 560px;
}

/* ============================================
   Quick Contact Strip
   ============================================ */
.quick-contact-section {
    background: #fff;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.quick-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.quick-contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.quick-contact-whatsapp { background: #25d366; color: #fff; }
.quick-contact-phone    { background: #667eea; color: #fff; }
.quick-contact-email    { background: #f7f7fb; color: #2d3748; border-right: 1px solid #e8e8f0; }
.quick-contact-social   { background: #f7f7fb; color: #2d3748; cursor: default; }
.quick-contact-social:hover { transform: none; box-shadow: none; }

.qc-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
}

.quick-contact-email .qc-icon,
.quick-contact-social .qc-icon {
    background: rgba(102,126,234,0.1);
    color: #667eea;
}

.qc-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.qc-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.qc-value {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qc-hint {
    font-size: 12px;
    opacity: 0.75;
}

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ============================================
   Social Icons Row (Quick Contact Card)
   ============================================ */
.social-icons-row {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    align-items: center;
}

.social-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-width: 72px;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Facebook */
.social-icon-fb {
    background: #1877f2;
    color: #fff;
}

.social-icon-fb:hover {
    background: #1464d4;
}

/* Instagram */
.social-icon-ig {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
}

.social-icon-ig:hover {
    opacity: 0.9;
}

/* ============================================
   Social Card — remove old icon wrapper
   ============================================ */
.quick-contact-social .qc-icon {
    display: none;
}

.quick-contact-social .qc-text {
    width: 100%;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .social-icons-row {
        gap: 12px;
    }

    .social-icon-link {
        min-width: 64px;
        padding: 8px 12px;
        font-size: 11px;
    }
}


/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
}

.section-header p {
    font-size: 17px;
    color: #718096;
    margin: 0;
}

/* ============================================
   Enquiry Form
   ============================================ */
.contact-form-section {
    background: #f7f7fb;
    padding: 80px 20px;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px;
}

.contact-form-header p {
    font-size: 16px;
    color: #718096;
    margin: 0;
}

/* Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.form-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

/* Form rows */
.form-row {
    margin-bottom: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.required { color: #ef4444; margin-left: 2px; }
.optional  { color: #9ca3af; font-weight: 400; font-size: 13px; }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.12);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.field-error {
    font-size: 13px;
    color: #ef4444;
    min-height: 18px;
    display: block;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
    align-items: center;
}

.btn-submit-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.btn-whatsapp-form {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

.form-privacy-note {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 16px;
    text-align: center;
}

/* ============================================
   Availability
   ============================================ */
.availability-section {
    background: #fff;
    padding: 80px 20px;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.availability-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: 16px;
    background: #f7f7fb;
    border: 1.5px solid #e8e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.availability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #667eea;
}

.avail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(102,126,234,0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #667eea;
}

.availability-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.avail-highlight {
    font-size: 20px;
    font-weight: 800;
    color: #667eea;
    margin: 0 0 10px;
}

.availability-card p:last-child {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Service Areas
   ============================================ */
.service-area-section {
    background: #f7f7fb;
    padding: 80px 20px;
}

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 28px;
}

.service-area-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1.5px solid #e8e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.sa-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.service-area-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8f0;
}

.service-area-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-area-card ul li {
    font-size: 15px;
    color: #4b5563;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.service-area-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-area-note {
    text-align: center;
    padding: 20px 24px;
    background: rgba(102,126,234,0.07);
    border-radius: 12px;
    border: 1px dashed #667eea;
}

.service-area-note p {
    font-size: 15px;
    color: #374151;
    margin: 0;
}

.service-area-note a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.service-area-note a:hover {
    text-decoration: underline;
}

/* ============================================
   FAQ Teaser
   ============================================ */
.contact-faq-section {
    background: #fff;
    padding: 80px 20px;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-faq-item {
    display: flex;
    gap: 18px;
    padding: 28px;
    border-radius: 14px;
    background: #f7f7fb;
    border: 1.5px solid #e8e8f0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-faq-item:hover {
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(102,126,234,0.1);
}

.cfaq-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.cfaq-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
    line-height: 1.4;
}

.cfaq-content p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   Thank You Page
   ============================================ */
.thankyou-section {
    background: #f7f7fb;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.thankyou-container {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

.thankyou-card {
    background: #fff;
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #059669;
}

.thankyou-card h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 16px;
}

.thankyou-message {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 40px;
}

.thankyou-next-steps {
    text-align: left;
    background: #f7f7fb;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 36px;
}

.thankyou-next-steps h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px;
    text-align: center;
}

.next-steps-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.next-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ns-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.ns-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ns-text strong {
    font-size: 15px;
    color: #1f2937;
}

.ns-text span {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-whatsapp-ty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    justify-content: center;
    max-width: 360px;
}

.btn-whatsapp-ty:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}

.btn-home-ty {
    display: inline-block;
    padding: 12px 32px;
    color: #667eea;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #667eea;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
    text-align: center;
    max-width: 360px;
}

.btn-home-ty:hover {
    background: #667eea;
    color: #fff;
}

/* ============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 0;
    }

    .quick-contact-email {
        border-right: none;
        border-bottom: 1px solid #e8e8f0;
    }

    .availability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-area-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-hero-content h1 {
        font-size: 40px;
    }

    .contact-form-wrapper {
        padding: 40px 36px;
    }
}

/* ============================================
   RESPONSIVE — Mobile (max 768px)
   ============================================ */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 20px 50px;
    }

    .contact-hero-content {
        padding: 30px 15px 20px;
    }

    .contact-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr 1fr;
        box-shadow: none;
    }

    .quick-contact-card {
        padding: 20px 16px;
        gap: 12px;
    }

    .qc-icon {
        width: 44px;
        height: 44px;
    }

    .qc-value {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-submit-form,
    .btn-whatsapp-form {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .availability-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .availability-card {
        padding: 24px 16px;
    }

    .avail-highlight {
        font-size: 17px;
    }

    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-faq-item {
        padding: 20px;
    }

    .thankyou-card {
        padding: 36px 24px;
    }

    .thankyou-card h1 {
        font-size: 28px;
    }

    .thankyou-next-steps {
        padding: 24px 20px;
    }
}

/* ============================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 26px;
    }

    .contact-hero-subtitle {
        font-size: 14px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-email,
    .quick-contact-phone,
    .quick-contact-social {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .availability-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .thankyou-card {
        padding: 28px 16px;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }

    .thankyou-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    /* background: #f7fafc; */
    padding: 5px 20px;
    /* border-bottom: 1px solid #e2e8f0; */
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-item a {
    color: #ececec;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #4b5563;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #d8dc69;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 12px 16px;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
}
