/* ========================================
   AIGIRI NANDINI - CONTACT PAGE STYLES
   Fully Responsive & Optimized
   ======================================== */

/* CSS VARIABLES */
:root {
  --bg: #0b0b0b;
  --card: #0f1720;
  --accent: #00d166;
  --accent-light: #00ff88;
  --muted: #9aa7a0;
  --glass: rgba(255,255,255,0.03);
  --max-w: 1400px;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, var(--bg), #060606);
  color: #e6efe9;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 20px;
}

/* ========================================
   HERO BANNER
   ======================================== */
.image-banner {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.5) blur(0.5px);
  transition: transform 0.5s ease;
}

.image-banner:hover .banner-image {
  transform: scale(1.02);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,209,102,0.2), rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.video-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.9);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  line-height: 1.1;
}

.video-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: rgba(255,255,255,0.95);
  font-weight: 400;
  max-width: 750px;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease-out 0.2s both;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary,
.btn-secondary {
  padding: 18px 36px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #03110a;
  box-shadow: 0 10px 30px rgba(0,209,102,0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,209,102,0.6);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(15px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-4px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   CONTACT GRID
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 90px;
  align-items: start;
}

.contact-image {
  height: 550px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  position: relative;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.contact-image:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #03110a;
  padding: 14px 24px;
  border-radius: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,209,102,0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.contact-info {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 50px 45px;
  height: fit-content;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  background: rgba(0,209,102,0.08);
  border-radius: 18px;
  padding-left: 20px;
  margin-left: -20px;
  padding-right: 20px;
  margin-right: -20px;
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0,209,102,0.4);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: rotate(10deg) scale(1.1);
}

.phone-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.email-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.location-icon {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.time-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.contact-details h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.contact-details p,
.contact-details a {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 6px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-section {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(25px);
  border-radius: 28px;
  padding: 65px 60px;
  margin-bottom: 90px;
  border: 1px solid rgba(0,209,102,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 45px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,209,102,0.15);
  background: rgba(255,255,255,0.12);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d166' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

.form-group select option {
  background: #0f172a;
  color: #fff;
  padding: 10px;
}

.form-actions {
  text-align: center;
  margin-top: 35px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #03110a;
  padding: 22px 55px;
  font-size: 1.2rem;
  font-weight: 800;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 45px rgba(0,209,102,0.4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 320px;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 65px rgba(0,209,102,0.6);
}

.btn-submit:active {
  transform: translateY(-2px);
}

.form-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note i {
  color: var(--accent);
}

/* ========================================
   SOCIAL CONNECT
   ======================================== */
.social-connect {
  margin-bottom: 90px;
  text-align: center;
}

.social-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.social-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px 25px;
  text-decoration: none;
  color: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-card:hover::before {
  opacity: 1;
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.social-card i {
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.social-card span {
  font-weight: 600;
  font-size: 1.1rem;
}

.facebook {
  border-color: rgba(24,119,242,0.3);
}

.facebook:hover {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
  border-color: #1877f2;
}

.instagram::before {
  background: linear-gradient(135deg, #e4405f, #f77737, #ffdc80);
}

.instagram:hover {
  border-color: #e4405f;
}

.youtube {
  border-color: rgba(255,0,0,0.3);
}

.youtube:hover {
  background: linear-gradient(135deg, #ff0000, #ff5722);
  border-color: #ff0000;
}

.telegram {
  border-color: rgba(0,136,204,0.3);
}

.telegram:hover {
  background: linear-gradient(135deg, #0088cc, #40a9ff);
  border-color: #0088cc;
}

.whatsapp {
  border-color: rgba(37,211,102,0.3);
}

.whatsapp:hover {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-color: #25D366;
}

.linkedin {
  border-color: rgba(10,102,194,0.3);
}

.linkedin:hover {
  background: linear-gradient(135deg, #0a66c2, #0077b5);
  border-color: #0a66c2;
}

/* ========================================
   GOOGLE MAP
   ======================================== */
.map-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.map-wrapper {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  margin-bottom: 90px;
  border: 1px solid rgba(0,209,102,0.2);
}

.google-map {
  width: 100%;
  height: 500px;
  display: block;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.google-map:hover {
  filter: grayscale(0);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  margin-bottom: 90px;
}

.faq-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 25px 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: rgba(0,209,102,0.08);
  border-color: rgba(0,209,102,0.3);
}

.faq-item summary {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablets (≤992px) */
@media (max-width: 992px) {
  .image-banner {
    height: 65vh;
    min-height: 420px;
  }
  
  .contact-grid {
    gap: 50px;
  }
  
  .contact-image {
    height: 480px;
  }
  
  .contact-form-section {
    padding: 55px 50px;
  }
  
  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }
}

/* Mobile & Tablets (≤768px) */
@media (max-width: 768px) {
  .container {
    padding: 16px 16px;
  }
  
  .image-banner {
    height: 55vh;
    min-height: 380px;
    margin-bottom: 50px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }
  
  .contact-image {
    height: 400px;
  }
  
  .contact-info {
    padding: 40px 35px;
  }
  
  .contact-title {
    font-size: 1.9rem;
  }
  
  .contact-item {
    padding: 24px 0;
  }
  
  .contact-icon {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
  
  .contact-form-section {
    padding: 45px 35px;
    margin-bottom: 70px;
  }
  
  .form-title {
    font-size: 2.1rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .btn-submit {
    min-width: 280px;
    padding: 20px 45px;
  }
  
  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  
  .social-card {
    padding: 30px 20px;
  }
  
  .social-card i {
    font-size: 2.2rem;
  }
  
  .map-wrapper {
    margin-bottom: 70px;
  }
  
  .google-map {
    height: 400px;
  }
}

/* Small Mobile (≤600px) */
@media (max-width: 600px) {
  .image-banner {
    height: 50vh;
    min-height: 350px;
  }
  
  .contact-image {
    height: 350px;
  }
  
  .contact-info {
    padding: 35px 28px;
  }
  
  .contact-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
  
  .contact-item {
    padding: 20px 0;
    gap: 16px;
  }
  
  .contact-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }
  
  .contact-details h3 {
    font-size: 1.2rem;
  }
  
  .contact-details p,
  .contact-details a {
    font-size: 0.95rem;
  }
  
  .contact-form-section {
    padding: 38px 25px;
  }
  
  .form-title {
    font-size: 1.9rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .btn-submit {
    min-width: 100%;
    padding: 18px 35px;
    font-size: 1.1rem;
  }
  
  .social-title {
    font-size: 2rem;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .map-title {
    font-size: 2rem;
  }
  
  .google-map {
    height: 350px;
  }
  
  .faq-title {
    font-size: 2rem;
  }
  
  .faq-item {
    padding: 20px 24px;
  }
  
  .faq-item summary {
    font-size: 1.1rem;
  }
}

/* Extra Small Mobile (≤480px) */
@media (max-width: 480px) {
  .image-banner {
    min-height: 320px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 16px 28px;
    font-size: 15px;
  }
  
  .contact-image {
    height: 320px;
  }
  
  .contact-info {
    padding: 30px 22px;
  }
  
  .contact-form-section {
    padding: 32px 20px;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 16px 18px;
  }
  
  .btn-submit {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  .social-card {
    padding: 25px 18px;
  }
  
  .google-map {
    height: 300px;
  }
}