/* Contact Page Styles */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 5rem;
            margin:5%;
            margin-bottom: 3rem;
        }
       
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
       
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
       
        .contact-details {
            margin-bottom: 2rem;
        }
       
        .contact-details p {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
       
        .contact-details i {
            margin-right: 15px;
            font-size: 1.2rem;
            color: var(--primary);
            min-width: 25px;
        }
       
        .contact-form {
            flex: 1;
            min-width: 300px;
            background: rgb(251, 252, 254);
            padding: 5rem;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
       
        .form-group {
            margin-bottom: 1.5rem;
        }
       
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark);
        }
       
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
       
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
        }
       
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
       
        .map {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            margin: 3rem 0;
        }
       
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
         @media(max-width: 768px){ 
        .nav-main{
        display: none;
       }
    }  
        .burger{
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: #312f2f;  /*make sure it's visible*/

       }
    .nav-main.active{
       display: flex;
      flex-direction: column;
    }

   header h1{margin-right: 31%;
    
    }
    /* Footer */

/* footer {
   background: #111; 
   color: white;
   text-align:centre;
   padding:20px;
   margin-top: 40px 
 } */

 /* =========> cookies <==========  */
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 50%;
            width: 90%;
            transform: translateX(-50%);
            max-width: 600px;
            background: rgba(0, 0, 14, 0.85);
            color: #fff;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            padding: 20px;
            z-index: 9999;
            animation: slideUp 0.6s ease;
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }

        .btn-accept {
            background: linear-gradient(45deg, #00c853, #64dd17);
            border: none;
            padding: 10px 18px;
            border-radius: 8px;
            color: white;
            cursor: pointer;
            font-weight: bold;
        }

        .btn-decline {
            background: transparent;
            border: 1px solid #ccc;
            padding: 10px 18px;
            border-radius: 8px;
            color: white;
            cursor: pointer;
        }

        @keyframes slideUp {
            from { transform: translate(-50%, 100%); opacity: 0; }
            to { transform: translate(-50%, 0); opacity: 1; }
        }


            color: #aaa;
        }

       

        .footer-line{
        border: none;
        border-top: 1px solid #cfcece;
        margin: 20px 0;
        }
