<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Contact Page Specific Styles */
:root {
    --primary-color: #041125;
    --gold-color: #D4AF37;
    --white-color: #ffffff;
    --light-bg: #f8f9fa;
    --text-on-dark: #ffffff;
    --text-on-light: #333333;
    --border-color: #e0e0e0;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--light-bg);
}

main {
    min-height: 80vh;
    padding: 2rem 5%;
}

/* Section Headers - Same as other pages for consistency */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--gold-color);
    margin: 0 auto 1.5rem;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--gold-color);
    border-radius: 50%;
    top: -2px;
}

.section-divider::before {
    left: -4px;
}

.section-divider::after {
    right: -4px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section Styles */
.contact-section {
    padding: 4rem 0;
    margin-bottom: 3rem;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gold-color);
}

.contact-info p, 
.method-details p,
.form-group input,
.form-group textarea {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-icon i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

.method-details h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.method-details p {
    margin-bottom: 0.3rem;
    color: #555;
    font-size: 0.95rem;
    word-break: normal;
    hyphens: none;
}

.method-details {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding-right: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-form h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--gold-color);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-status {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.form-status.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.form-status.loading {
    display: block;
    background-color: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    color: #0d6efd;
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    margin-bottom: 3rem;
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    background-color: var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
}

.faq-toggle {
    color: var(--gold-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.8rem;
    }

    .form-group input, .form-group textarea {
        width: 90%;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .method-details {
        flex: 1;
        min-width: 0;
    }

    .contact-method {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }
    
    .contact-section, .faq-section {
        padding: 3rem 0;
    }
    
    .contact-container {
        padding: 0 0.5rem;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .contact-info {
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }
    
    .contact-info p,
    .method-details p {
        font-size: 0.9rem;
        word-break: normal;
        overflow-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .method-details h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        max-width: 100%;
        white-space: normal;
        word-break: normal;
        height: auto;
        padding: 0.8rem 1rem;
    }
}

/* Contact Hero Background Animation */
.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.15;
    z-index: 1;
}

.contact-shape-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--gold-color);
    top: 15%;
    left: 10%;
    animation: float 15s ease-in-out infinite, rotate 30s linear infinite;
}

.contact-shape-square {
    width: 100px;
    height: 100px;
    border: 3px solid var(--gold-color);
    top: 60%;
    right: 15%;
    animation: float 18s ease-in-out infinite reverse, rotate 40s linear infinite reverse;
}

.contact-shape-triangle {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid var(--gold-color);
    opacity: 0.1;
    top: 30%;
    right: 10%;
    animation: float 20s ease-in-out infinite, rotate 35s linear infinite;
}

.contact-shape-plus {
    font-size: 80px;
    color: var(--gold-color);
    top: 70%;
    left: 15%;
    animation: float 17s ease-in-out infinite reverse, rotate 25s linear infinite;
}

.contact-shape-plus::before {
    content: '+';
}

.contact-shape-dots {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--gold-color) 3px, transparent 4px) repeat;
    background-size: 30px 30px;
    top: 20%;
    right: 30%;
    animation: float 22s ease-in-out infinite, rotate 45s linear infinite reverse;
}

.contact-shape-wave {
    width: 200px;
    height: 100px;
    background: linear-gradient(to right, transparent 0%, var(--gold-color) 50%, transparent 100%);
    opacity: 0.1;
    top: 50%;
    left: 30%;
    animation: wave 15s ease-in-out infinite, float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes wave {
    0%, 100% {
        opacity: 0.1;
        width: 200px;
    }
    50% {
        opacity: 0.2;
        width: 300px;
    }
}

/* Quick Contact Options */
.quick-contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.quick-contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.quick-contact-option:hover {
    transform: translateY(-5px);
    color: var(--gold-color);
}

.quick-contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: background-color 0.3s ease;
}

.quick-contact-option:hover .quick-contact-icon {
    background-color: rgba(212, 175, 55, 0.4);
}

.quick-contact-icon i {
    font-size: 1.5rem;
}

.quick-contact-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-contact-options {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .quick-contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .quick-contact-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .quick-contact-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-contact-option {
        flex-direction: row;
        gap: 1rem;
    }
    
    .quick-contact-icon {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
    }
}
</pre></body></html>