/* =============================================
   CONTACT PAGE — Premium Editorial Layout
   ============================================= */

.contact-page-wrapper {
    direction: rtl;
    background-color: #faf9f6;
    font-family: 'Inter', 'Outfit', sans-serif;
    color: #1c1917;
    min-height: 100vh;
    padding-bottom: 80px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}

/* ==================
   HERO (Directly copied from Services page)
   ================== */
.services-hero-header {
    position: relative;
    padding: 220px 0 120px;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=85');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.services-hero-header .header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 10, 9, 0.6) 0%, rgba(12, 10, 9, 0.85) 100%);
    z-index: 1;
}
.services-hero-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.services-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 25px;
    opacity: 0.85;
}
.services-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}
.services-breadcrumb a:hover {
    color: #bca374;
}
.services-breadcrumb .sep {
    font-size: 10px;
}
.services-hero-header .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #ffffff;
}
.services-hero-header .page-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #d6d3d1;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
}

/* ==================
   CONTENT GRID
   ================== */
.ct-content-section {
    padding: 100px 5%;
}

.ct-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* ==================
   FORM AREA
   ================== */
.ct-form-area {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #e7e5e4;
}

.ct-form-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1c1917;
    margin-bottom: 8px;
}

.ct-form-subheading {
    font-size: 0.95rem;
    color: #78716c;
    margin-bottom: 40px;
    line-height: 1.6;
}

.ct-premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ct-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.ct-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1c1917;
    text-align: right;
}

.ct-form-group input,
.ct-form-group textarea,
.ct-form-group select {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: #1c1917;
    background-color: #faf9f6;
    border: 1px solid #e7e5e4;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    text-align: right;
}

.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder {
    color: #a8a29e;
    opacity: 0.8;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus,
.ct-form-group select:focus {
    border-color: #bca374;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(188, 163, 116, 0.1);
}

.ct-select-wrapper {
    position: relative;
    width: 100%;
}

.ct-select-wrapper select {
    appearance: none;
    cursor: pointer;
    padding-left: 45px; /* space for arrow on left in RTL */
}

.ct-select-wrapper .select-arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #78716c;
    pointer-events: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.ct-select-wrapper select:focus + .select-arrow {
    color: #bca374;
}

/* Submit Button */
.ct-submit-btn {
    align-self: flex-start;
    margin-top: 10px;
    padding: 16px 35px;
    border-radius: 100px;
    background: #bca374;
    color: #1c1917 !important;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ct-submit-btn:hover {
    background: #d4b886;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(188, 163, 116, 0.25);
}

.ct-submit-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.ct-submit-btn:hover .btn-arrow {
    transform: translateX(-5px);
}

/* ==================
   INFO AREA
   ================== */
.ct-info-area {
    position: sticky;
    top: 120px;
}

.ct-info-card {
    background: #1c1917; /* Dark luxury card */
    padding: 60px 50px;
    border-radius: 24px;
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(28,25,23,0.15);
}

.ct-info-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.ct-contact-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.ct-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ct-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(184,155,114,0.15);
    color: #b89b72;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.ct-contact-item:hover .ct-contact-icon {
    background: #b89b72;
    color: #ffffff;
}

.ct-contact-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ct-contact-details span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ct-contact-details a,
.ct-contact-details p {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.ct-contact-details a:hover {
    color: #b89b72;
}

/* Socials Section */
.ct-social-section {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ct-social-section h4 {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ct-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.ct-social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ct-social-links a:hover {
    background: #b89b72;
    border-color: #b89b72;
    transform: translateY(-4px);
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1100px) {
    .ct-container {
        grid-template-columns: 1fr;
    }
    
    .ct-info-area {
        position: static;
        order: -1; /* Move info above form on mobile */
    }
}

@media (max-width: 768px) {
    .ct-hero-title {
        font-size: 3rem;
    }
    .ct-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ct-form-area {
        padding: 40px 25px;
    }

    .ct-info-card {
        padding: 45px 30px;
    }
}
