/* CONTACT PAGE - LUXURY DESIGN */

/* BASIC RESET */
* {
    box-sizing: border-box;
}

/* LUXURY HERO SECTION */
.luxury-hero.contact-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.luxury-badge {
    display: inline-block;
    background: #DC143C;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 2px solid #FFFFFF;
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: #DC143C;
}

.divider-icon {
    color: #DC143C;
    font-size: 1.2rem;
    margin: 0 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.luxury-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #CCCCCC;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* COMPANY OVERVIEW SECTION */
.company-overview {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
}

.company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(0,0,0,0.01) 100px, rgba(0,0,0,0.01) 102px),
        repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(220,20,60,0.01) 100px, rgba(220,20,60,0.01) 102px);
    pointer-events: none;
}

.company-hero-image {
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
    border: 3px solid #000000;
    border-radius: 0;
}

.company-hero-image img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-hero-image:hover img {
    transform: scale(1.05);
}

.company-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.company-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

/* COMPANY FEATURE CARDS */
.company-feature-card {
    background: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.company-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #DC143C;
    opacity: 0.3;
    z-index: 1;
}

.company-feature-icon {
    width: 80px;
    height: 80px;
    background: #DC143C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #000000;
    position: relative;
    z-index: 2;
}

.company-feature-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    position: relative;
    z-index: 2;
}

.feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #DC143C;
}

/* INFO CARDS */
.info-card {
    background: rgba(248, 248, 248, 0.5);
    padding: 2rem;
    border: 1px solid #E0E0E0;
    position: relative;
    height: 100%;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #DC143C;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.info-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 6rem 0;
    background: #000000;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(220,20,60,0.1) 50px, rgba(220,20,60,0.1) 52px);
    pointer-events: none;
}

.contact-form-card {
    background: #FFFFFF;
    border: 3px solid #DC143C;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    background: #DC143C;
    color: #FFFFFF;
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 4px solid #000000;
    position: relative;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #000000;
}

.form-icon i {
    font-size: 2rem;
    color: #DC143C;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.form-body {
    padding: 3rem;
    background: #FFFFFF;
}

/* LUXURY FORM STYLING */
.luxury-form-group {
    margin-bottom: 2rem;
}

.luxury-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1rem;
}

.luxury-form-control {
    width: 100%;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #FFFFFF;
    color: #000000;
    transition: all 0.3s ease;
}

.luxury-form-control:focus {
    border-color: #DC143C;
    box-shadow: none;
    outline: none;
    background: #FFFFFF;
}

.luxury-textarea {
    min-height: 150px;
    resize: vertical;
}

/* LUXURY BUTTONS */
.luxury-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 2px solid;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.luxury-btn-primary {
    background: #DC143C;
    border-color: #DC143C;
    color: #FFFFFF;
}

.luxury-btn-primary:hover {
    background: #FFFFFF;
    border-color: #DC143C;
    color: #DC143C;
}

/* CONTACT INFO SECTION */
.contact-info-section {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 120px, rgba(0,0,0,0.01) 120px, rgba(0,0,0,0.01) 122px),
        repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(220,20,60,0.01) 120px, rgba(220,20,60,0.01) 122px);
    pointer-events: none;
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.contact-info-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.contact-info-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 2rem;
}

/* CONTACT INFO CARDS */
.contact-info-card {
    background: #000000;
    border: 3px solid #DC143C;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #DC143C;
    opacity: 0.6;
    z-index: 1;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: #DC143C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #FFFFFF;
    position: relative;
    z-index: 2;
}

.contact-info-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.contact-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    z-index: 2;
}

.contact-link {
    color: #DC143C;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
    text-decoration: none;
}

.contact-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #DC143C;
}

/* MAP SECTION */
.map-section {
    padding: 6rem 0;
    background: #F8F8F8;
    position: relative;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.map-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
}

.map-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.luxury-map-container {
    border: 3px solid #000000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .luxury-hero.contact-hero {
        min-height: 50vh;
        padding-top: 4rem;
    }

    .luxury-title {
        font-size: 2.5rem;
    }

    .company-title {
        font-size: 2rem;
    }

    .contact-info-title {
        font-size: 2.2rem;
    }

    .map-title {
        font-size: 2rem;
    }

    .form-body {
        padding: 2rem 1.5rem;
    }

    .form-header {
        padding: 2rem 1.5rem;
    }

    .company-feature-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .feature-number,
    .contact-card-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .luxury-hero.contact-hero {
        min-height: 40vh;
        padding-top: 3rem;
    }

    .luxury-title {
        font-size: 2rem;
    }

    .company-title {
        font-size: 1.8rem;
    }

    .contact-info-title {
        font-size: 1.8rem;
    }

    .map-title {
        font-size: 1.8rem;
    }

    .company-overview,
    .contact-form-section,
    .contact-info-section,
    .map-section {
        padding: 4rem 0;
    }

    .form-body {
        padding: 1.5rem 1rem;
    }

    .form-header {
        padding: 2rem 1rem;
    }

    .company-feature-card,
    .contact-info-card {
        padding: 1.5rem 1rem;
    }

    .feature-number,
    .contact-card-number {
        font-size: 2rem;
    }

    .luxury-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}