:root {
    --primary: #31699B;
    --primary-dark: #265278;
    --primary-light: #e8f1f8;
    --secondary: #E5A324;
    --secondary-dark: #b37d1c;
    --secondary-light: #fdf3e2;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    margin-top: 80px;
}

.hero-section h1 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    color: #666;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Form Section */
.form-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Form field spacing */
.form-card .form-label {
    margin-bottom: 0.5rem;
    display: block;
}

.form-card .form-control,
.form-card .form-select {
    margin-bottom: 1.5rem;
}

/* Specific adjustment for name row */
.form-card .row:first-of-type {
    margin-bottom: 0.5rem;
}

.form-card .row {
    margin-bottom: 1.5rem;
}

.form-card .row .col-md-6 {
    margin-bottom: 0;  /* Remove bottom margin from name fields */
}

.form-card textarea.form-control {
    margin-bottom: 2rem;
}

.form-card button[type="submit"] {
    margin-top: 1rem;
}

.form-card .text-muted.text-center {
    margin-top: 1.5rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Information */
.contact-info-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.service-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    aspect-ratio: 5/4; /* Maintains a 5:4 aspect ratio */
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.faq-section .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.faq-section .section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.faq-question h4 {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-icon {
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-card.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    margin-top: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.cta-section .section-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-section .btn-light {
    background-color: white;
    color: var(--primary);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-card {
        padding: 20px;
    }
    
    .map-container {
        aspect-ratio: 4/3; /* Slightly different aspect ratio for mobile */
    }
    
    .cta-section {
        padding: 60px 0;
    }
} 