/* ================================
   CONTACT PAGE STYLES (Chirag Films)
   ================================ */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(0, 195, 255, 0.1) 0%, rgba(255, 0, 255, 0.05) 100%);;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.contact-page {
  background-color: #000;
  min-height: 100vh;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
  pointer-events: none;
  /* Disables click events on the element */
  -webkit-user-drag: none;
  /* Prevents dragging in WebKit browsers */
  user-drag: none;
}

video {
  -webkit-touch-callout: none; /* Disable long-press context menu on iOS */
  -webkit-user-select: none;
  user-select: none;
}


/* -------------------------------
   HERO SECTION
--------------------------------- */
.hero {
  display: flex;
  text-align: center;
  min-height: 100vh;
  align-items: center;
  position: relative;
}

.hero-title {
  max-width: 800px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #00ffff;
}

.hero-description {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------------
   BUTTONS
--------------------------------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #00ffff;
  color: #000;
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}

.btn--primary:hover {
  background: #00e6e6;
  transform: translateY(-2px);
}

.btn--outline {
  border: 2px solid #00ffff;
  color: #00ffff;
  background: transparent;
}

.btn--outline:hover {
  background: #00ffff;
  color: #000;
}

.btn--lg {
  padding: 14px 36px;
  font-size: 1.1rem;
}

.btn--full-width {
  width: 100%;
  text-align: center;
}

/* -------------------------------
   SECTION HEADERS
--------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  color: #00ffff;
  margin-bottom: 12px;
  font-size: 2rem;
}

/* -------------------------------
   CARDS (Glassmorphism)
--------------------------------- */
.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 10px;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
}

.card__body {
  padding: 24px;
}

/* -------------------------------
   SERVICES
--------------------------------- */
.about-services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-highlight {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: rgba(0, 255, 255, 0.05);
}

.service-highlight h3 {
  color: #00ffff;
  margin-bottom: 10px;
}

/* -------------------------------
   CONNECT SECTION
--------------------------------- */
.connect-section {
  padding: 80px 0;
}

.connect-section h1 {
  color: #00ffff;
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.connect-card h3 {
  color: #00ffff;
  margin-bottom: 18px;
}

.text-secondary {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* -------------------------------
   SERVICES DETAIL
--------------------------------- */
.services-detail {
  padding: 80px 0;
}

.services-detail h2{
    margin-bottom: 16px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card h3 {
  color: #00ffff;
  margin-bottom: 20px;
}

.service-features {
  margin-top: 12px;
  padding-left: 20px;
}

.service-features li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* -------------------------------
   CONTACT FORM
--------------------------------- */
.contact-form-section {
  padding: 80px 0;
}

.form-container {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.contact-form h2 {
  color: #00ffff;
  margin-bottom: 16px;
}

.contact-form p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-label {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: #00ffff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* -------------------------------
   FAQ SECTION
--------------------------------- */
.faq-section {
  padding: 80px 0;
}

.faq-section h1 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #444;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active {
  color: #00ffff; /* 🔹 active state color */
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
  color: #ccc;
}

.faq-answer p {
  padding: 10px 0;
}

.faq-question.active + .faq-answer {
  max-height: 200px; /* adjust based on content */
}



/* -------------------------------
   PORTFOLIO SECTION
--------------------------------- */
.portfolio-section {
  padding: 80px 300px;
  text-align: center;
}

.portfolio-section h1 {
  color: #00ffff;
  margin-bottom: 20px;
}

.portfolio-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 50px 0;
}

.portfolio-stats h3 {
  font-size: 2rem;
  color: #00ffff;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 80px 20px;
  }
}


/* -------------------------------
   FINAL CTA
--------------------------------- */
.final-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.05));
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
}

.final-cta h2 {
  color: #00ffff;
  margin-bottom: 16px;
}

.final-cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.social-links p {
  margin-bottom: 10px;
}

.social-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  border: 1px solid #00ffff;
  padding: 8px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: #00ffff;
  color: #000;
}

.social-buttons a img {
  width: 24px;
  height: auto;
  margin-right: 8px;
}

/* -------------------------------
   RESPONSIVE
--------------------------------- */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }
}


/* Footer */
.footer-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 22px 22px 0 0;
}

.site-footer { 
    background-color: #00000088;
  backdrop-filter: blur(88px);
  border-radius: 22px 22px 0 0;
  margin: 10px auto 0 auto;
  position: relative;
  padding-top: 56px;
  padding-bottom: 10px;
}

.footer-grid {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 0;
  justify-content: space-between;
  padding: 0 18px 0 18px;
  position: relative;
  align-items: stretch;
}

.footer-col {
  flex: 1 1 210px;
  min-width: 210px;
  margin: 0 8px 0 8px;
  padding: 36px 18px 38px 18px;
  color: #e3eaff;
  position: relative;
  z-index: 1;
}

.footer-divider {
  width: 2px;
  margin: 36px 0 38px 0;
  background: linear-gradient(180deg,#11e9ff37 0%,#009fff00 100%);
  border-radius: 2px;
  align-self: stretch;
  display: block;
}

.footer-col h2, .footer-col h3 {
  color: #e5f9ff;
  font-size: 1.35em;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 1px 4px #00ffff22;
}

.footer-col p, .footer-col ul li {
  color: #b4daec;
  font-size: 1.06em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  position: relative;
  border: 1px solid #00eeee;
  border-radius: 6px;
  padding: 5px;
  transition: color 0.23s;
}

.footer-col ul li:hover {
  color: #00eeee;
  background-color: #00000088;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 14px;
  transition: transform 0.22s, filter 0.22s;

}

.footer-social img {
  width: 27px;
  height: auto;
  filter: grayscale(1) brightness(1.11) drop-shadow(0px 1px 10px #00bfbf27);
  border-radius: 22%;
  background: #2a4048;
  padding: 3px;
  
  transition: filter 0.22s, background 0.22s, transform 0.22s;
}

.footer-social img:hover {
  filter: brightness(1.35) drop-shadow(0 0 11px #00ffc288);
  background: #112934;
  transform: scale(1.16) rotate(-8deg);
}

.footer-bottom {
  text-align: center;
  color: #8eb6be;
  padding: 20px 0 8px 0;
  font-size: 1em;
  letter-spacing: 1.7px;
}

.footer-logo-col {
   grid-column: 1 / -1; /* spans across full grid */
  text-align: center;
}

.footer-logo {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 3px 12px #00fff740, 0 0px 0px #000;
  border: 1px solid #00fff7;
  padding: 8px;
  filter: drop-shadow(0 0 16px #00fff755);
  transition: transform 0.22s, box-shadow 0.22s;
}
.footer-logo:hover {
  box-shadow: 0 8px 36px #00ffee77;
}


@media (max-width: 1050px) {
  .footer-grid {
    flex-direction: column;
  }
  .footer-divider {
    display: none;
  }
  .footer-col {
    margin-bottom: 5px;
    padding: 22px 11px 24px 11px;
    border-radius: 11px;
  }
  #services-footer {
    display: none;
  }

  .footer-social img{
    filter: unset;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 100%;
  height: auto;
  }
}

/* Glow Animation */
@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  }
  to {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
  }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 20px; /* ✅ Stick 20px below the top */
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 70px;
  margin: 0px 50px 0px 50px;
  border-radius: 50px;
  background-color: #ffffff45;
  backdrop-filter: blur(10px);
  transition: top 0.3s ease;
}

.navbar .logo {
  width: 70px;
  background-color: #000;
  border-radius: 50%;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 0px;
  position: relative;
  z-index: 10;

}

.navbar .nav-links li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 7px 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar .nav-links li a:hover {
  color: #000000;
  background-color: #a4a4a4;
  padding: 7px 20px;
  border-radius: 10px;
}

.nav-links li {
  position: relative;
  padding: 0 5px;
}

.nav-links li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.4); /* or #00ffff if you want cyan */
}

.navbar .nav-links li a.active {
  color: #000000;                
  background-color: #00ffff;     
  border-radius: 10px;          
  padding: 7px 20px;             
  font-weight: 600;           
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #00000092;
  border-radius: 10px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 150px;
  z-index: 999;
  list-style: none;   /* ✅ Fixes the square bullets */
  margin: 0;
}


.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu li {
  padding: 8px 20px;
  
}

.dropdown-menu li a {
  color: white;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: #00ffff;
  color: black;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
    margin: 10px 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* Always hide mobile nav on desktop */
.mobile-nav {
  display: none;
}

@media screen and (max-width:2480px) {
  .menu-toggle {
    display: none;
  }
}

/* Show menu on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    color: #00ffff;
    z-index: 1001;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .nav-links li:not(:last-child)::after{
    width: 120px;
    height: 1px;
    top: 35px;
    left: 20px;
  }

  .mobile-nav.show {
    left: -25px;
    top: -25px;
  }

  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    margin-bottom: 20px;
  }

  .mobile-nav .logo {
    width: 60px;
    border-radius: 50%;
    background: #000;
  }

  .mobile-nav .close-btn {
    font-size: 30px;
    color: #00ffff;
    cursor: pointer;
  }

  .mobile-nav .nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 0;
    margin-top: 40px;
    align-items: flex-start;
  }

  .mobile-nav .nav-links li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  .mobile-nav .dropdown-menu {
    display: none;
    padding-left: 15px;
  }

  .mobile-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
}
