﻿/* ==================== CONTACT US HERO SECTION ==================== */
.contact-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .contact-hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
        z-index: 2;
    }

    .contact-hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.75);
    }

.contact-breadcrumb-nav {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

    .contact-breadcrumb-link:hover,
    .contact-breadcrumb-link.active {
        color: #ffffff;
    }

.contact-breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 1100px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: contactFadeInUp 0.8s ease-out;
}

.contact-hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 750px;
    line-height: 1.5;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: contactFadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero-description {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    line-height: 1.7;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: contactFadeInUp 0.8s ease-out 0.4s both;
}

@keyframes contactFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .contact-hero-title {
        font-size: 48px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-hero-description {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .contact-breadcrumb-nav {
        left: 40px;
    }

    .contact-hero-content {
        padding: 0 40px;
    }

    .contact-hero-title {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .contact-hero-subtitle {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .contact-hero-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 500px;
    }

    .contact-breadcrumb-nav {
        left: 20px;
        font-size: 10px;
    }

    .contact-breadcrumb-separator {
        font-size: 13px;
    }

    .contact-hero-content {
        padding: 0 20px;
    }

    .contact-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .contact-hero-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .contact-hero-description {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* ==================== REACH US ANYTIME SECTION ==================== */
.contact-reach-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.contact-reach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-reach-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-reach-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-reach-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.contact-card {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

.contact-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

    .contact-card-icon svg {
        width: 40px;
        height: 40px;
    }

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.contact-card-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

    .contact-card-link:hover {
        color: #ffffff;
        text-decoration: underline;
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-reach-section {
        padding: 60px 20px;
    }

    .contact-reach-header {
        margin-bottom: 40px;
    }

    .contact-reach-title {
        font-size: 32px;
    }

    .contact-reach-subtitle {
        font-size: 15px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-card-title {
        font-size: 16px;
    }

    .contact-card-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-reach-title {
        font-size: 28px;
    }

    .contact-reach-subtitle {
        font-size: 14px;
    }

    .contact-card {
        padding: 20px 16px;
        gap: 16px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

        .contact-card-icon svg {
            width: 32px;
            height: 32px;
        }
}

/* ==================== CONTACT FORM SECTION ==================== */
.contact-form-section {
    padding: 80px 20px;
    background-color: #2a2a2a;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-form-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Left Side - Image */
.contact-form-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

    .contact-form-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Right Side - Form Card */
.contact-form-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: #2d2d2d;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        background-color: #333333;
        border-color: #d4a255;
        box-shadow: 0 0 0 3px rgba(212, 162, 85, 0.1);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #e6b960 0%, #d4a255 100%);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-transform: capitalize;
}

    .form-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(212, 162, 85, 0.4);
        background: linear-gradient(135deg, #f0c570 0%, #e0b265 100%);
    }

    .form-submit-btn:active {
        transform: translateY(0);
    }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        gap: 30px;
    }

    .contact-form-card {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-form-header {
        margin-bottom: 40px;
    }

    .contact-form-title {
        font-size: 32px;
    }

    .contact-form-subtitle {
        font-size: 15px;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-image {
        min-height: 350px;
        order: 1;
    }

    .contact-form-card {
        padding: 35px 28px;
        order: 2;
    }

    .form-group {
        gap: 8px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        padding: 14px 18px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 16px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 50px 15px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-subtitle {
        font-size: 14px;
    }

    .contact-form-image {
        min-height: 300px;
        border-radius: 15px;
    }

    .contact-form-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 13px 16px;
    }

    .form-submit-btn {
        padding: 15px 24px;
    }
}
