/* ===================================
   CONTACT PAGE - HIGH CONVERSION
   =================================== */

/* Hero Section - Full Screen with Video */
.contact-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.contact-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 1 !important;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.contact-hero .container {
    text-align: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Contact Main Section */
.contact-main {
    padding: 6rem 0 8rem;
    background: var(--off-white);
}

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

/* Form Section */
.form-section {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.form-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--silver);
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-light);
}

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

.form-input[type="tel"],
.form-input[type="email"] {
    font-family: var(--font-sans);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success.active {
    display: block;
}

.form-success svg {
    color: #10B981;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--gray);
    font-size: 1.0625rem;
}

/* Details Section */
.details-section {
    position: sticky;
    top: 120px;
}

.details-heading {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--silver);
}

.contact-detail-item:last-of-type {
    border-bottom: none;
}

.detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    border-radius: 8px;
    flex-shrink: 0;
    color: var(--primary);
}

.detail-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.detail-link {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.detail-link:hover {
    color: var(--primary-dark);
}

/* Business Hours */
.business-hours {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.business-hours h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.hours-item span:first-child {
    color: var(--dark);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--gray);
}

/* WhatsApp Section */
.whatsapp-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--silver);
}

.whatsapp-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.whatsapp-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
}

/* Map Section */
.map-section {
    padding: 8rem 0;
    background: var(--white);
}

.map-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Trust Line */
.trust-line {
    padding: 4rem 0;
    background: var(--off-white);
    text-align: center;
}

.trust-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gray);
    font-style: italic;
}

/* Contact CTA */
.contact-cta {
    padding: 8rem 0;
    background: var(--white);
}

.contact-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-cta .cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.contact-cta .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .details-section {
        position: static;
    }
}

@media (max-width: 968px) {
    /* Hero */
    .contact-hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Main Section */
    .contact-main {
        padding: 4rem 0 6rem;
    }
    
    .contact-grid {
        gap: 3rem;
    }
    
    .form-section {
        padding: 3rem 2rem;
    }
    
    .form-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    /* Details */
    .details-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-detail-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
    }
    
    .detail-content h3 {
        font-size: 0.9375rem;
    }
    
    .detail-content p {
        font-size: 0.875rem;
    }
    
    .business-hours {
        padding: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .business-hours h3 {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .hours-item {
        font-size: 0.875rem;
    }
    
    .whatsapp-section {
        padding: 1.75rem;
    }
    
    .whatsapp-section h3 {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .whatsapp-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Map */
    .map-section {
        padding: 5rem 0;
    }
    
    .map-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    /* Trust Line */
    .trust-line {
        padding: 3rem 0;
    }
    
    .trust-text {
        font-size: 1.25rem;
    }
    
    /* CTA */
    .contact-cta {
        padding: 5rem 0;
    }
    
    .contact-cta .cta-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contact-cta .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    /* Hero */
    .contact-hero {
        padding: 7rem 0 3rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Main Section */
    .contact-main {
        padding: 3rem 0 4rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
    
    .form-section {
        padding: 2.5rem 1.5rem;
    }
    
    .form-heading {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.8125rem;
        margin-bottom: 0.4rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-textarea {
        min-height: 90px;
    }
    
    select.form-input {
        background-position: right 0.875rem center;
        padding-right: 2.5rem;
    }
    
    .btn-full {
        margin-top: 0.75rem;
    }
    
    .form-success {
        padding: 2.5rem 1.5rem;
    }
    
    .form-success svg {
        width: 40px;
        height: 40px;
        margin-bottom: 1.25rem;
    }
    
    .form-success h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .form-success p {
        font-size: 0.9375rem;
    }
    
    /* Details */
    .details-heading {
        font-size: 1.375rem;
        margin-bottom: 1.75rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.75rem;
        padding-bottom: 1.75rem;
    }
    
    .detail-icon {
        width: 36px;
        height: 36px;
    }
    
    .detail-content h3 {
        font-size: 0.875rem;
        margin-bottom: 0.4rem;
    }
    
    .detail-content p {
        font-size: 0.8125rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-link {
        font-size: 0.8125rem;
    }
    
    .business-hours {
        padding: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .business-hours h3 {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .hours-list {
        gap: 0.75rem;
    }
    
    .hours-item {
        font-size: 0.8125rem;
    }
    
    .whatsapp-section {
        padding: 1.5rem;
    }
    
    .whatsapp-section h3 {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .whatsapp-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
    }
    
    .whatsapp-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Map */
    .map-section {
        padding: 4rem 0;
    }
    
    .map-heading {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* Trust Line */
    .trust-line {
        padding: 2.5rem 0;
    }
    
    .trust-text {
        font-size: 1.125rem;
    }
    
    /* CTA */
    .contact-cta {
        padding: 4rem 0;
    }
    
    .contact-cta .cta-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .contact-cta .cta-buttons {
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 2rem 1.25rem;
    }
    
    .form-heading {
        font-size: 1.375rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}
