
/* Fade-in Animation - EXACT same classes */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section - EXACT same classes */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 8rem 8%;
    background: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    max-width: 480px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 600;
}

/* Contact Section - EXACT same classes */
.contact-section {
    background: #f4f6f8;
    padding: 4rem 8%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    border-top: 1px solid #e1e4e8;
}

.contact-left {
    flex: 1 1 45%;
    margin-bottom: 2rem;
}

.contact-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-left p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-left a {
    color: #0a2441;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.contact-right {
    flex: 1 1 45%;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Form Styles - EXACT same classes */
form input,
form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

form input:focus,
form textarea:focus {
    border-color: #0a2441;
}

form button {
    display: block;
    width: 100%;
    background: #0a2441;
    color: #fff;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #0056b3;
}

/* Form Message Styles - EXACT same classes */
.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}

/* Contact Details Section - EXACT same classes */
.contact-details-section {
    background: #fff;
    padding: 4rem 8%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.detail-icon {
    font-size: 1.8rem;
    color: #1f2b42;
    min-width: 40px;
    text-align: center;
}

.detail-content h3 {
    margin: 0;
    font-weight: 600;
}

.detail-content p {
    margin: 0.3rem 0 0;
}

.detail-content a {
    color: inherit;
    text-decoration: none;
}

.detail-content a:hover {
    color: #0c7b93;
    text-decoration: underline;
}

.map-container {
    flex: 1 1 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 400px;
}

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

/* Responsive Styles - EXACT same classes */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 6%;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .contact-section {
        flex-direction: column;
    }
    .contact-left,
    .contact-right {
        flex: 1 1 100%;
    }
    .contact-details-section {
        flex-direction: column;
    }
    .contact-info,
    .map-container {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .fade-section {
        text-align: center;
    }
    
    .hero {
        text-align: left;
        padding: 6rem 6%;
        margin-top: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
    .contact-details {
        text-align: left;
    }
    .contact-section {
        padding: 3rem 6%;
    }

    .contact-details-section {
        padding: 10px 10px 10px 48px;
    }

    form button {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.95rem;
    }
    .contact-left h2 {
        font-size: 1.6rem;
    }
    .contact-info h2 {
        font-size: 1.6rem;
    }
    form input,
    form textarea {
        font-size: 0.9rem;
    }
}