/* --- CORE VARIABLES & RESET --- */
:root {
  --bg-color: #050505;
  --card-bg: #111111;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent: #ffffff; /* Stark White for contrast */
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --whatsapp-green: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}

/* --- UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--accent);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7a0000, #ff0000);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn:hover {
  color: #fff;
  border-color: #ff0000;
  box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.btn:hover::before {
  transform: scaleX(1);
}
.btn:active {
  transform: translateY(-2px) scale(0.97);
}

.btn-filled {
  background: var(--accent);
  color: var(--bg-color);
}
.btn-filled:hover {
  background: transparent;
  color: var(--accent);
}

/* --- HEADER --- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 18px 0;

  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: width 0.6s ease;
}

header:hover::after {
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px; /* Controls size */
  width: auto; /* Maintain aspect ratio */
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  gap: 30px; /* Better spacing between links */
}

.nav-links a {
  font-size: 0.85rem;
  position: relative;
  padding: 5px 0;
  letter-spacing: 1px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #ffffff, #ff0000);
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 25px;
}

.insta-btn {
  font-size: 1.5rem;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s;
}
.insta-btn:hover {
  transform: scale(1.2) rotate(10deg);
}

/* --- HERO SECTION --- */
.hero::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; left:0; right:0; bottom:0 */
  background: rgba(0, 0, 0, 0.65); /* adjust darkness here */
  z-index: 1;
}
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  text-align: left;
}

.hero-animation {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-animation img {
  width: 100%;
  max-width: 500px;
}
.hero-animation {
  position: relative;
}

.hero-animation::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(215, 200, 200, 0.7),
    transparent 70%
  );
  filter: blur(60px);
  z-index: -1;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;

  background: linear-gradient(90deg, #ffffff, #888888, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: gradientMove 6s linear infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
.hero-content {
  animation: floatText 6s ease-in-out infinite;
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-content p {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* --- ABOUT & STATS --- */
.why-choose {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: var(--bg-color);
  border: 1px solid var(--border);
  transition: 0.3s;
}
.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* White animated layer */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover i {
  color: #000;
  transition: color 0.6s ease;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-main);
  transition: 0.4s;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  transition: 0.4s;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: 0.4s;
}

/* --- VIDEO GALLERY --- */
.video-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- PORTFOLIO IMAGES --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.portfolio-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(100%);
}

.portfolio-item:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, #000, transparent);
  padding: 20px;
  opacity: 0;
  transition: 0.3s;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* --- CONTACT --- */
.contact-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-color) 0%, #111 100%);
}

/* --- FLOATING BUTTON --- */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  animation: pulse 2s infinite;
}

.floating-wa:hover {
  transform: translateY(-4px) rotate(10deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
/* --- MOBILE HAMBURGER MENU --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  z-index: 3000;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .logo img {
    height: 38px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    /* Cool Circular Opening Effect */
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    gap: 20px;
  }

  .nav-links.active {
    clip-path: circle(150% at 100% 0%);
  }

  .nav-links a {
    font-size: 2rem !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation for menu items */
  .nav-links.active a:nth-child(1) {
    transition-delay: 0.3s;
  }
  .nav-links.active a:nth-child(2) {
    transition-delay: 0.4s;
  }
  .nav-links.active a:nth-child(3) {
    transition-delay: 0.5s;
  }
  .nav-links.active a:nth-child(4) {
    transition-delay: 0.6s;
  }

  .header-cta .btn-filled {
    display: none;
  } /* Hide "Let's Talk" on mobile header to save space */

  /* Hero Changes */
  .hero-animation img {
    display: none;
  } /* Hide desktop image */

  .hero-inner {
    flex-direction: column-reverse;
  } /* Put content below the Insta feature */
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  /* Simplified for mobile */
  .section-title {
    font-size: 2rem;
  }
  @media (max-width: 768px) {
    .section-title {
      left: 0;
      transform: none;
      text-align: center;
      width: 100%;
    }
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 80px;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cta-group .btn {
    width: 100%;
    text-align: center;
  }

  .hero-content {
    animation: none;
  }
}

/* border btn */

.border-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s ease;
}

.border-btn:hover::before {
  left: 100%;
}

.border-btn:hover {
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }
  .hero-animation::before {
    display: none;
  }
}

.insta-spotlight {
  position: relative;
  padding: 120px 0;
  background: #0b0b0b;
  overflow: hidden;
}

.insta-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  transition: 0.4s ease;
}

.insta-box:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Content Side */

.insta-content {
  flex: 1;
}

.insta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.insta-content p {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 500px;
}

/* Button */

.insta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, #d4d4d4);
  color: #000;
  transition: all 0.4s ease;
}

.insta-button i {
  font-size: 1.3rem;
}

.insta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
}

/* Visual Side */
.insta-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.insta-frame {
  width: 220px;
  height: 220px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(20px);
  transition: 0.5s ease;
}

.insta-frame:hover {
  transform: rotate(-5deg) scale(1.05);
  border-color: #fff;
}

/* Responsive */

@media (max-width: 768px) {
  .insta-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
    gap: 40px;
  }
  .insta-box {
    backdrop-filter: none;
    background: #0b0b0b;
  }

  .insta-content p {
    margin: 0 auto 30px;
  }
}

.section-title::after {
  content: "";
  display: block;
  width: 60%; /* shorter than full width for elegance */
  height: 1px; /* very thin line */
  margin: 10px auto 0; /* spacing + centered */
  background: rgba(255, 255, 255, 0.2); /* faint line */
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3); /* soft glow */
  border-radius: 2px; /* smooth edges */
}
