/* Contact Page Styles */
:root {
    --primary-color: #0B1C3F;
    --accent-color: #D1A15F;
    --background-color: #FFFFFF;
    --light-gray: #F4F4F4;
    --text-color: #2E2E2E;
    --success-color: #4CAF50;
    --error-color: #f44336;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(11, 28, 63, 0.7), rgba(11, 28, 63, 0.7)), url('../images/heroservice.svg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--background-color);
    padding: 80px 0;
    margin-top: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-container {
    background: var(--background-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 1s ease forwards;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid transparent;
    border-radius: 5px;
    background-color: var(--light-gray);
    transition: all 0.3s ease;
}

.input-wrapper textarea {
    height: 150px;
    padding-top: 15px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    background-color: var(--background-color);
}

.privacy-notice {
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #B88B4A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(209, 161, 95, 0.3);
}

/* Contact Info Section */
.contact-info {
    opacity: 0;
    transform: translateX(20px);
    animation: slideIn 1s ease forwards 0.3s;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: var(--background-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.info-header h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.info-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.info-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-secondary {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.info-item.primary {
    background: var(--primary-color);
    color: var(--background-color);
    position: relative;
    overflow: hidden;
}

.info-item.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(209, 161, 95, 0.1), transparent);
    pointer-events: none;
}

.info-item.primary h4,
.info-item.primary p,
.info-item.primary a {
    color: var(--background-color);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-item.primary .icon-wrapper {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(209, 161, 95, 0.3);
}

.info-item.primary:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(209, 161, 95, 0.4);
}

.info-item.consultation {
    background: linear-gradient(135deg, var(--primary-color), #1a2c4f);
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(209, 161, 95, 0.2);
}

.consultation-btn i {
    transition: transform 0.3s ease;
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209, 161, 95, 0.3);
}

.consultation-btn:hover i {
    transform: translateX(5px);
}

.icon-wrapper {
    background: var(--accent-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(209, 161, 95, 0.2);
}

.info-details {
    flex-grow: 1;
}

.info-details h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-details p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 10px;
}

.info-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--accent-color);
}

.direction-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color) !important;
    font-weight: 600;
    margin-top: 10px;
}

.direction-link i {
    transition: transform 0.3s ease;
}

.direction-link:hover i {
    transform: translateX(5px);
}

.availability {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    background: var(--primary-color);
    color: var(--background-color);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

/* Google Form Section */
.google-form-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.form-intro p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map-section {
    padding: 40px 0 80px 0;
    background-color: var(--light-gray);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-container,
    .contact-info {
        max-width: 700px;
        margin: 0 auto;
    }

    .info-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 30vh;
        padding: 60px 0;
    }

    .form-container,
    .info-card {
        padding: 30px;
    }

    .google-form-container {
        padding: 20px;
    }

    .map-container {
        padding: 0 15px;
    }

    .info-card {
        padding: 30px;
    }
    
    .info-header h3 {
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .form-container,
    .info-card {
        padding: 20px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 10px 15px 10px 40px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .info-card {
        padding: 20px;
    }
    
    .info-header h3 {
        font-size: 1.5rem;
    }
    
    .info-header p {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

.info-item.primary .icon-wrapper i,
.info-item.consultation .icon-wrapper i {
    color: #fff !important;
    font-size: 1.7em;
}

/* Optionally, ensure all .icon-wrapper uses flex to center icons */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item .icon-wrapper i {
    color: #fff !important;
    font-size: 1.7em;
} 