
/* Quick Contact Section */
.quick-contact {
    padding: 60px;
    max-width: 1600px;
    margin: 60px;
    background-color: #0a0909;
    border-radius: 20px;
}

.quick-contact h2 {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.quick-contact-subtitle {
    font-size: 13px;
    color: #FFFFFF;
    margin-bottom: 50px;
    line-height: 1.6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

input, select, textarea {
    background-color: #141313;
    border: 1px solid #222;
    color: #ccccccec;
    padding: 16px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, background-color 0.3s;
}

input::placeholder, textarea::placeholder {
    color: #666;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #444;
    background-color: #111;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: linear-gradient(90deg, #621eb9, #a92a83, #db4659);
    color: #fff;
    padding: 17px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 43, 106, 0.35);
}

.map-container {
    background-color: #0a0a0a;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
    position: relative;
    border: 1px solid #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e5e3df;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-content {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: 
        repeating-linear-gradient(0deg, #d4d2ce 0px, #d4d2ce 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, #d4d2ce 0px, #d4d2ce 1px, transparent 1px, transparent 40px);
}

.map-marker {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -35px;
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: #ec4899;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.marker-center {
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Locations Section */
.locations {
    background: #000;
    padding: 0 0 80px 0;
    color: #fff;
    border-bottom: 1px solid #222;
  }
  
  .locations h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .locations-subtitle {
    color: #aaa;
    max-width: 600px;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  /* Tabs */
  .location-tabs {
    display: flex;
    gap: 24px;
    margin: 32px 0;
  }
  
  .tab {
    background: none;
    border: none;
    color: #aaa;
    font-size: 16px;
    padding-bottom: 6px;
    cursor: pointer;
    position: relative;
  }
  
  .tab.active {
    color: #fff;
  }
  
  .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  
  /* Cards Grid */
  .location-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  /* Card */
  .location-card {
    background: #111;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .location-card:hover {
    transform: translateY(-6px);
  }
  
  .location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .location-info {
    padding: 20px;
  }
  
  .location-info h3 {
    margin-bottom: 12px;
  }
  
  .location-info p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .location-cards {
      grid-template-columns: 1fr;
    }
  }
  

/* Responsive Design */
@media (max-width: 1200px) {
    nav, .hero, .quick-contact, .locations {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 1024px) {
    nav, .hero, .quick-contact, .locations {
        padding-left: 30px;
        padding-right: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px;
    }

    .location-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
  

    .quick-contact, .locations {
        padding: 50px 20px;
        margin:0px;
        border-radius: 0%;
    }

    .quick-contact h2, .locations h2 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .location-tabs {
        gap: 30px;
    }

    .tab {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .quick-contact h2, .locations h2 {
        font-size: 26px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}