

/* Enhanced Contact Page Styles */
:root {
    --primary: #FF7700;
    --primary-light: #ffad00;
    --secondary: #00a8ff;
    --dark: #111;
    --darker: #0a0a0a;
    --light: #f5f5f5;
    --gray: #333;
    --light-gray: #444;
}



body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  color: white;
  display: flex;
  flex-direction: column;
  font-family: "Black Ops One", system-ui;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  z-index: -1;
}

.banner {
  /* min-height: 80vh; 
  display: flex;
  justify-content: center;
  align-items: center; */
  margin-top: 10%;
}

.btn1 {
  color: white;
  padding: 10px 30px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(45deg, #ffad00, #f6d29b, #ff7700);
  transition: 0.4s;
  cursor: pointer;
}

.btn1:hover {
  transform: scale(1.2);
  
}

/* Contact Section */
.contact-section {
    display: flex;
    width: 85%;
    max-width: 1200px;
    margin: 100px auto;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 600px;
    margin-top: 10%;
}

.left, .right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: -115px;
}

.left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

.right {
    background: white;
}

.title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.aurora-text {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.left p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    color: black;
    
}

.left p strong {
    color: var(--primary);
}

.map-container {
    margin-top: 2rem;
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Form Styles */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #000000;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 8px;
    background: white;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #fcf7e7 0%, #fcf3da 100%);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
}

.icon:hover {
    background: rgba(255, 119, 0, 0.2);
    color: var(--primary);
    transform: translateY(-3px);
}

.icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.full-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-section {
        flex-direction: column;
        width: 90%;
        margin: 100px auto 50px;
    }
    
    .left, .right {
        width: 100%;
        padding: 2rem;
    }
    
    .map-container {
        height: 200px;
    }
    
    .title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .menu {
        gap: 1rem;
    }
    
    .btn1 {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-section {
        width: 95%;
        margin: 80px auto 40px;
    }
    
    .left, .right {
        padding: 1.5rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .social-icons {
        gap: 1rem;
    }
    
    .icon {
        padding: 0.5rem;
    }
    
    .full-text {
        display: none;
    }
}