/* ===== LUXURY CONTACT PAGE STYLES ===== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0E1A2B 0%, #1a2b42 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(200, 169, 106, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.contact-hero-content {
    color: #fff;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 169, 106, 0.15);
    border: 1px solid rgba(200, 169, 106, 0.3);
    color: #C8A96A;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-hero-title .highlight {
    color: #C8A96A;
    display: block;
}

.contact-hero-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

@media (max-width: 968px) {
    .contact-hero-text {
        max-width: 100%;
    }
}

.contact-hero-stats {
    display: flex;
    gap: 2.5rem;
}

@media (max-width: 968px) {
    .contact-hero-stats {
        justify-content: center;
    }
}

.stat-item {
    text-align: left;
}

@media (max-width: 968px) {
    .stat-item {
        text-align: center;
    }
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C8A96A;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Quick Contact Cards in Hero */
.contact-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.hero-contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 169, 106, 0.3);
    transform: translateX(8px);
}

.hero-contact-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #C8A96A 0%, #D4AF37 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-contact-card .card-icon svg {
    width: 24px;
    height: 24px;
    color: #0E1A2B;
}

.hero-contact-card .card-content h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.hero-contact-card .card-content p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* Main Contact Section */
.contact-main {
    padding: 5rem 0;
    background: #F8F7F4;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

@media (max-width: 968px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0E1A2B;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 0.9375rem;
}

.luxury-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .luxury-form .form-row {
        grid-template-columns: 1fr;
    }
}

.luxury-form .form-group {
    margin-bottom: 1.25rem;
}

.luxury-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0E1A2B;
    margin-bottom: 0.5rem;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    background: #FAFAFA;
    transition: all 0.3s ease;
    font-family: inherit;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    outline: none;
    border-color: #C8A96A;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.1);
}

.luxury-form input::placeholder,
.luxury-form textarea::placeholder {
    color: #999;
}

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

.luxury-form .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.luxury-form .checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #C8A96A;
}

.luxury-form .checkbox-group label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
}

.luxury-form .checkbox-group a {
    color: #C8A96A;
    text-decoration: underline;
}

.btn-luxury-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0E1A2B;
    background: linear-gradient(135deg, #C8A96A 0%, #D4AF37 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-luxury-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 106, 0.4);
}

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

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E8E8E8;
}

.info-card-header .icon-box {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0E1A2B 0%, #1a2b42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-header .icon-box svg {
    width: 22px;
    height: 22px;
    color: #C8A96A;
}

.info-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0E1A2B;
    margin: 0;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item .item-icon {
    width: 40px;
    height: 40px;
    background: #F5F3EF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .item-icon svg {
    width: 18px;
    height: 18px;
    color: #C8A96A;
}

.info-item .item-content h4 {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #999;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item .item-content p {
    font-size: 1rem;
    font-weight: 600;
    color: #0E1A2B;
    margin: 0;
    line-height: 1.5;
}

.info-item .item-content a {
    color: #0E1A2B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item .item-content a:hover {
    color: #C8A96A;
}

/* Working Hours Card */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #F8F7F4;
    border-radius: 10px;
}

.hours-row .day {
    font-weight: 500;
    color: #0E1A2B;
}

.hours-row .time {
    font-weight: 600;
    color: #C8A96A;
}

.hours-row.closed .time {
    color: #999;
}

/* Social Links */
.social-card {
    background: linear-gradient(135deg, #0E1A2B 0%, #1a2b42 100%);
    color: #fff;
}

.social-card h3 {
    color: #fff !important;
}

.social-links-grid {
    display: flex;
    gap: 1rem;
}

.social-link-item {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-item svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.social-link-item:hover {
    background: #C8A96A;
    border-color: #C8A96A;
    transform: translateY(-3px);
}

.social-link-item:hover svg {
    color: #0E1A2B;
}

/* Map Section */
.map-section-luxury {
    padding: 0;
    background: #0E1A2B;
}

.map-header {
    text-align: center;
    padding: 4rem 0 2rem;
}

.map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: rgba(255, 255, 255, 0.6);
}

.map-container {
    height: 400px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 0 3rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-main {
        padding: 3rem 0;
    }
}
