* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    color: #333;
    background-color: #f7f6f2;
}

/* Header with Hero Image */
.contact-hero {
    position: relative;
    width: 100%;
    height: 110vh;
    margin-top: -40px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.contact-hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-weight: 100;
    letter-spacing: 1px;
}

.contact-hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Common Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-subtitle {
    color: #c19a6b;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 200;
    margin-bottom: 30px;
    color: #222;
    line-height: 1.2;
    text-align: center;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Information Section */
.contact-section {
    background-color: white;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: #f7f6f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 40px 30px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    color: #c19a6b;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 200;
    margin-bottom: 15px;
    color: #222;
}

.contact-details {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.contact-details a {
    color: #c19a6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #a0845a;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #c19a6b;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a0845a;
}

/* Contact Form Section */
.form-section {
    background-color: #f7f6f2;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c19a6b;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 15px 40px;
    background-color: #c19a6b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background-color: #a0845a;
}

/* Map Section */
.map-section {
    background-color: #E3D9D2;
    padding: 80px 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

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

/* Form Messages */
.form-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Error Styles */
.error-text {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.error-field {
    border-color: #c62828 !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading state */
.submit-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .form-wrapper {
        padding: 30px 25px;
        margin: 40px 20px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }