        /* Background and Overlay Styles */
        .background-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: linear-gradient(rgba(253, 250, 242, 0.71), rgba(253, 250, 242, 0.767)), 
                            url('./assets/camelride2.jpeg');
          background-size: cover;
          background-position: center;
          z-index: -2;
          opacity: 0.5;
      }
  
 
        
        :root {
    --primary-color: #d4770b;
    --secondary-color: #f5a524;
    --text-color: #333;
}

/* Base Responsive Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

@keyframes desert-sand-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 15px 25px rgba(212,119,11,0.2); }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.contacts-container {
    width: 90%;
    max-width: 1200px;
    margin: 8rem auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    animation: desert-sand-float 5s ease-in-out infinite;
}

.contacts-info, .contacts-form {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 1rem;
    transition: all 0.3s ease;
    animation: subtle-glow 3s infinite;
}

.contacts-info:hover, .contacts-form:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contacts-info {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.contacts-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        rgba(245, 165, 36, 0.05),
        rgba(245, 165, 36, 0.05) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: rotate 20s linear infinite;
}

.contacts-info h2 {
    margin-bottom: 1.5rem;
    color: white;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
}

.contacts-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contacts-info-item:hover {
    transform: translateX(10px);
}

.contacts-info-item i {
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contacts-info-item:hover i {
    transform: rotate(360deg);
}

.contacts-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    font-size: 1.5rem;
}

.contacts-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.contacts-form h2:hover::after {
    width: 100px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212,119,11,0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.submit-btn:hover::before {
    left: 100%;
}

.social-link {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.social-link a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-link a:hover {
    color: var(--secondary-color);
    transform: scale(1.3) rotate(360deg);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .contacts-container {
        width: 95%;
        padding: 1rem;
        margin-top:10rem;
    }

    .contacts-info, .contacts-form {
        flex-basis: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .contacts-container {
        flex-direction: column;
        width: 100%;
        padding: 0.5rem;
        margin-top: 10rem;
    }

    .contacts-info, .contacts-form {
        margin: 0.5rem;
        padding: 1rem;
        min-width: auto;
    }

    .contacts-info h2, 
    .contacts-form h2 {
        font-size: 1.2rem;
    }

    .contacts-info-item i {
        font-size: 1.2rem;
    }

    .form-group input, 
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contacts-container {
        padding: 0.25rem;
        margin-top: 12rem;
    }

    .contacts-info, .contacts-form {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .social-link a {
        font-size: 1.2rem;
    }
}

/* Responsive Map Section Styles */
.map-section {
    width: 100%;
    padding: 2rem 1rem;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    padding-bottom: 1rem;
}

.map-container h2 {
    text-align: center;
    margin: 1rem 0;
    color: var(--primary-color);
        font-size: 2rem;
    font-weight: 600;
}

.map-location-info {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 1rem;
    padding: 0 1rem;
    font-size: 0.9rem;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    /* border-radius: 16px; */
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Breakpoints */
@media screen and (max-width: 768px) {
    .map-container h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .map-section {
        padding: 1rem 0.5rem;
    }

    .map-container h2 {
        font-size: 1.3rem;
        
    }
}
