/* Contact Page Styles - Professional Publishing Edition */

.contact-hero { 
    padding: 80px 0 60px; 
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    text-align: center;
    border-bottom: 2px solid #d4af37;
}

.contact-hero h1 { 
    margin-bottom: 12px;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #d4af37;
    font-style: italic;
    margin: 0;
}

.contact-section { 
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Information Sidebar */
.contact-info-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.contact-info-sidebar h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
}

.contact-detail {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.contact-detail::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.8;
}

.contact-detail strong {
    display: block;
    font-size: 1.1rem;
    color: #2d2d2d;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-detail p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

.contact-detail a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #b8941f;
    text-decoration: underline;
}

/* Contact Form Main Area */
.contact-form-main {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.contact-form-main h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 35px;
    text-align: center;
}

/* Forms */
.form-row { 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group { 
    display: flex;
    flex-direction: column;
}

.form-group.full { 
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #2d2d2d;
    font-weight: 500;
    font-family: "Georgia", "Times New Roman", serif;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Avenir Next", "Montserrat", "Helvetica Neue", sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Georgia", "Times New Roman", serif;
}

.btn-primary {
    background: #d4af37;
    color: #000000;
    width: 100%;
    margin-top: 10px;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Subscription Section */
.subscribe-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

.subscribe-container {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-section h2 {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.subscribe-section p {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.subscribe-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.subscribe-form .form-group {
    flex: 1;
    max-width: 350px;
}

.subscribe-form input {
    background: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 14px 28px;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000000;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .contact-info-sidebar,
    .contact-form-main {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .contact-info-sidebar,
    .contact-form-main {
        padding: 25px 20px;
    }
    
    .contact-detail {
        padding-left: 25px;
    }
}