* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
 background:linear-gradient(to bottom, #3b2f2f, #4e342e);
  color: #fff;
}
section {
  background:  transparent;
}
/*
/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #e3f2fd, #90caf9, #1a237e);
  color: white;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1000;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
  border-radius: 6px;
}

/* ===== Nav Links ===== */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #ffeb3b;
}

/* ===== Dropdown ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  list-style: none;
  min-width: 150px;
  border-radius: 6px;
  background-color: #111;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
.dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
}
.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #fff;
}

.dropdown-menu li a:hover {
  background: #333;
}

/* ===== Dropdown Hover ===== */

/* ===== Dropdown Hover (Improved Stability) ===== */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

/* ===== Login Button ===== */
.login-btn {
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.login-btn:hover {
  background: #1e40af;
  transform: scale(1.05);
}

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
     position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100;
  }
  
  .navbar {
    position: relative;
    padding-right: 50px; /* add space for the icon */
  }
.logo {
    position: relative;
    z-index: 1000;
    margin-left: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #1a237e;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    text-align: center;
    padding: 20px 0;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #111;
    width: 100%;
  }

  .dropdown-menu li a {
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
/* section 1*/
/* Hero Section */
.contact-hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,202,21,0.1) 0%, transparent 70%);
  animation: rotateBG 20s linear infinite;
  z-index: 0;
}

@keyframes rotateBG {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  color: #facc15;
  text-shadow: 0 0 20px #facc15, 0 0 40px #facc15;
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-content p {
  font-size: 1.2rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #facc15, 0 0 20px #facc15; }
  to { text-shadow: 0 0 25px #facc15, 0 0 50px #facc15; }
}

/* Form Section */
.contact-form-section {
  padding: 80px 20px;
  display: flex;
  
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.form-header h2 {
  font-size: 2.5rem;
  color: #facc15;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #facc15;
}

.form-header p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 40px;
  max-width: 600px;
}

/* Form Card */
.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 40px 25px;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 20px rgba(250, 202, 21, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(250, 202, 21, 0.6);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid #facc15;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 10px #facc15;
}

.contact-form button {
  padding: 12px 25px;
  border-radius: 12px;
  border: 2px solid #facc15;
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #facc15;
  color: #000;
  transform: scale(1.05);
}

#form-msg {
  margin-top: 10px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-form-section {
    padding: 60px 20px;
  }
}
/*map section*/

/* Studio Location Section */
.studio-location {
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.location-header h2 {
  font-size: 2.5rem;
  color: #facc15;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #facc15;
}

.location-header p {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 40px;
}

/* Map and Address Container */
.location-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

/* Map Card */
/* Studio Map Fullscreen Section */
.studio-map {
  height: 100vh; /* full viewport height */
  width: 100%;
  overflow: hidden;
  position: relative;
}

.studio-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0; /* full width, no border radius */
  filter: brightness(0.9) contrast(1.05); /* cinematic slightly dark effect */
  transition: transform 0.3s ease;
}

.studio-map iframe:hover {
  transform: scale(1.02); /* subtle zoom on hover */
}

/* Optional overlay for cinematic effect */
.studio-map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25); /* dark overlay for cinematic look */
  pointer-events: none;
}


/* Responsive */
@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    align-items: center;
  }

  .map-card iframe,
  .address-card {
    width: 100%;
  }
}

.tv-footer {
  /*background: linear-gradient(180deg, #2c1b0f, #3e2723);*/
  color: #f1e3c0;
  padding: 50px 20px 0;
  font-family: "Poppins", sans-serif;
}

/* MAIN GRID LAYOUT */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  /* equal, tighter spacing */
  padding: 30px 60px;
  align-items: start;
}

/* HEADINGS */
.footer-section h3 {
  color: #fdd835;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEXT STYLES */
.footer-section p {
  color: #e0d3b8;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* LOGO */
.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* LINKS LIST */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #f1e3c0;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}



.footer-section ul li a:hover {
  color: #ffcc00;
}

/* Move Quick Links slightly right */
.footer-section.links {
  padding-left: 40px;
}

/* APP DOWNLOAD AREA */
.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}

.app-store {
  display: inline-flex;
  align-items: center;
  background: #b8860b;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.app-store i {
  margin-right: 8px;
}

.app-store:hover {
  background: #ffcc00;
  color: #2c1b0f;
}

.qr-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #e0d3b8;
}

.qr-image {
  width: 90px;
  margin-top: 10px;
  border: 2px solid #fdd835;
  border-radius: 6px;
}

/* STAY CONNECTED */
.footer-connect {
  text-align: center;
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-connect h3 {
  color: #fdd835;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.footer-connect p {
  color: #e0d3b8;
  font-size: 1rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 240px;
  max-width: 300px;
  padding: 10px 14px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.newsletter-form button {
  background: #b8860b;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #ffcc00;
  color: #2c1b0f;
}

.social-icons {
  margin-top: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}

.social-icons img.social-icon {
  width: 28px;
  height: 28px;
  transition: 0.3s;
}

.social-icons img.social-icon:hover {
  transform: scale(1.2);
  cursor: pointer;
}


/* BOTTOM FOOTER */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #fdd835;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-content {
    gap: 25px;
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .footer-section.links {
    padding-left: 0;
  }

  .app-buttons {
    align-items: center;
  }

  .qr-image {
    margin: 0 auto;
  }

  .social-icons a {
    font-size: 1.4rem;
  }
}