/* Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

    main {
        margin-top: 80px;
        padding: 2rem 5%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    body a{
        font-family: serif;
    }

    /* Hero Section */
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1596178060810-72f53ce9a65c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-size: cover;
        background-position: center;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--pure-white);
        margin-top: 80px;
        font-family: serif;
    }
    
    .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
        color: var(--pure-white);
        animation: fadeIn 1s ease-out;
    }
    
    .hero-content p {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 30px;
        animation: fadeIn 1.2s ease-out;
    }

    /* Contact Section Styles */
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    /* Map Section */
    .map-section {
        background-color: var(--pure-white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateX(-50px);
        animation: slide-in 1s forwards;
    }

    @keyframes slide-in {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

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

    .location-details {
        padding: 2rem;
    }

    .location-details h3 {
        font-family: var(--font-secondary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--cocoa-brown);
    }

    .location-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .location-icon {
        color: var(--shea-butter);
        font-size: 1.2rem;
        margin-right: 1rem;
        margin-top: 0.2rem;
    }

    .location-text h4 {
        font-weight: 600;
        margin-bottom: 0.3rem;
    }

    .location-text p {
        color: var(--cocoa-brown);
        opacity: 0.8;
    }

    .working-hours {
        margin-top: 2rem;
    }

    .working-hours h3 {
        font-family: var(--font-secondary);
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--cocoa-brown);
    }

    .hours-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .day {
        font-weight: 600;
    }

    .time {
        color: var(--cocoa-brown);
        opacity: 0.8;
    }

    /* Form Section */
    .form-section {
        background-color: var(--pure-white);
        border-radius: 10px;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .form-section h3 {
        font-family: var(--font-secondary);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--cocoa-brown);
    }

    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }

    .contact-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--cocoa-brown);
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 0.8rem 1rem;
        border: 1px solid #e0e0e0;
        border-radius: 5px;
        font-family: var(--font-primary);
        font-size: 1rem;
        color: var(--cocoa-brown);
        transition: all 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
        border-color: var(--shea-butter);
        box-shadow: 0 0 0 2px rgba(214, 123, 93, 0.2);
        transform: scale(1.01);
        outline: none;
    }

    .contact-form textarea {
        min-height: 150px;
        resize: vertical;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .submit-btn {
        background-color: var(--shea-butter);
        color: var(--pure-white);
        border: none;
        padding: 0.8rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .submit-btn:hover {
        background-color: #c06a4e;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(214, 123, 93, 0.3);
    }

    /* WhatsApp CTA */
    .whatsapp-cta {
        background: linear-gradient(135deg, var(--olive-green), #3a5a3c);
        border-radius: 10px;
        padding: 2rem;
        color: var(--pure-white);
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 4rem;
    }

    .whatsapp-text h3 {
        font-family: var(--font-secondary);
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .whatsapp-text p {
        opacity: 0.9;
        max-width: 500px;
    }

    .whatsapp-btn {
        background-color: #25D366;
        color: var(--pure-white);
        text-decoration: none;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .whatsapp-btn i {
        margin-right: 0.5rem;
        font-size: 1.2rem;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }

    .whatsapp-btn:hover {
        background-color: #1da851;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }

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

        .footer-top {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .hero {
            height: 60vh;
        }

        .hero-content{
            padding: 3px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .whatsapp-cta {
            flex-direction: column;
            text-align: center;
        }

        .whatsapp-text {
            margin-bottom: 1.5rem;
        }

        .footer-top {
            grid-template-columns: 1fr;
        }
    }