/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-color: #ff0080;
    --secondary-color: #00d4ff;
    --accent-color: #ffd700;
    --dark-bg: #ffffff;
    --dark-secondary: #f5f5f5;
    --dark-tertiary: #eeeeee;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --gradient-primary: linear-gradient(135deg, #ff0080 0%, #ff6b35 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #0080ff 100%);
    --gradient-dark: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background-color: var(--dark-bg); */
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 12px;
}

/* ===================================
   Navbar
   =================================== */
/* =========================
   NAVBAR
========================= */
/* NAVBAR */
/* ================= NAVBAR ================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: transparent;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ================= CONTAINER ================= */
.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= LEFT ================= */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 50px;
}

/* ================= RIGHT (TAGLINE) ================= */
.nav-contact {
    display: flex;
    align-items: center;
    margin-right: 120px;   /* 👈 SIRF HALKA SA LEFT */
}

.contact-item {
    color: #fff;
    font-size: 19px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* ================= ICON ================= */
.contact-item i {
    color: #FFD27D;
}

/* ================= MOBILE ================= */
.mobile-menu-toggle {
    display: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .nav-left {
        gap: 12px;
    }

    .nav-tagline {
        font-size: 14px;
    }

    .nav-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        color: #FFD27D;
        font-size: 22px;
        cursor: pointer;
    }
}


/* HERO */
/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-start; /* Heading starts from top */
  overflow: hidden;
  padding-top: 80px;
  font-family: 'Poppins', sans-serif;
}

/* ---------- BACKGROUND LAYERS ---------- */
.hero-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at 20% 10%, #3a260d, transparent 40%),
    linear-gradient(120deg, #0b0702, #1a1106, #000);
  z-index: 1;
  animation: bgMove 20s linear infinite;
  transition: transform 0.6s ease, filter 0.6s ease;
}

@keyframes bgMove {
  0% { background-position: 0 0, 0 0; }
  50% { background-position: 50% 50%, 50% 50%; }
  100% { background-position: 0 0, 0 0; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.12;
  z-index: 2;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background: radial-gradient(#FFD27D 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.05;
  z-index: 2;
  animation: particlesMove 30s linear infinite;
  transition: transform 0.6s ease;
}

@keyframes particlesMove {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 1000px; }
}

/* ---------- CONTAINER ---------- */
.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: auto;
  padding: 20px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch; /* fill full height */
  gap: 40px;
  transition: all 0.4s ease;
}

/* ---------- LEFT CONTENT ---------- */
/* ---------- HERO TITLE ---------- */
/* HERO TITLE – EXTRA SPACE REMOVE */

.hero-left {
  padding-left: 2px;   /* title ke saath exact align */
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 14px;
}

/* DESCRIPTION ALIGN FIX */
.hero-description {
  max-width: 620px;
  color: #ddd;
  line-height: 1.7;
  margin: 12px 0 30px;
  padding: 0;                 /* ❌ extra padding hatao */
  text-align: left;
  word-break: normal;
}
/* TOP SEASON */
.hero-title .line-one {
  font-size: 60px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 10px;
  line-height: 1;    /* tight */
  white-space: nowrap;
}

/* ENTERTAINMENTS PRIVATE LIMITED – UPPER MOVE */
.hero-title .line-two {
  font-size: 26.5px;
  color: #fff;
  white-space: nowrap;
  /* letter-spacing: 7px; */
  line-height: 1;
  margin-top: -6px; 
   /* letter-spacing: 1px;  */
  /* font-weight: 50;  🔥 ISSE UPAR AAYEGA */
}

/* PRIVATE LIMITED – SAME LINE, NO SPACE */
.hero-title .line-two small {
  all: unset;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}



.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

/* SUBTITLE – EXTRA SPACE REMOVE */
.hero-subtitle {
  margin-top: -7px;   
  margin-bottom: 6px; 
  font-size: 18px;
  line-height: 1.1;
  color: #e6cfa0;
}


/* .hero-subtitle {
  margin: 4px 0 10px; 
  font-size: 20px;
  color: #e6cfa0;
  transition: all 0.4s ease;
} */




/* ---------- FEATURES ---------- */
.hero-features {
  display: flex;
  gap: 22px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.hero-features span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,210,125,0.4);
  padding: 14px 22px;
  border-radius: 14px;
  color: #FFD27D;
  font-size: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.hero-features span:hover {
  transform: translateY(-4px);
  background: rgba(255,210,125,0.15);
  box-shadow: 0 6px 20px rgba(230,168,76,0.4);
}

/* ---------- BUTTONS ---------- */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 15px 42px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg,#FFD27D,#E6A84C,#8A5A12);
  color: #1a1205;
}

.btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(230,168,76,0.5);
}

.btn.outline {
  border: 2px solid #FFD27D;
  color: #FFD27D;
}

.btn.outline:hover {
  background: linear-gradient(135deg,#FFD27D,#E6A84C,#8A5A12);
  color: #1a1205;
  transform: scale(1.05);
}

/* ---------- RIGHT IMAGE (STATIC) ---------- */
.hero-right {
  position: relative;
}

.image-box {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.7);
  transition: none; /* remove hover effects */
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none; /* static image */
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
  transition: none; /* static overlay */
}

/* ---------- FLOATING STATS ---------- */
.stats-floating {
  position: absolute;
  bottom: -30px;
  left: 30px;
  display: flex;
  gap: 22px;
}

.stats-floating div {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,210,125,0.4);
  padding: 18px 24px;
  border-radius: 18px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.stats-floating div:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255,210,125,0.1);
  box-shadow: 0 10px 25px rgba(230,168,76,0.5);
}

.stats-floating h3 {
  color: #FFD27D;
  font-size: 28px;
}

.stats-floating p {
  color: #ccc;
  font-size: 12px;
}

/* ---------- HERO HOVER EFFECTS (EXCEPT IMAGE) ---------- */
.hero:hover .hero-bg {
  filter: brightness(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero:hover .hero-particles {
  transform: translate(-5px, -5px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    padding: 20px 30px;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-title .hero-subtitle-white {
    font-size: 40px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 100%;
  }
  .hero-features span {
    font-size: 12px;
    padding: 10px 16px;
  }
  .btn {
    padding: 12px 32px;
    font-size: 14px;
  }
  .stats-floating {
    bottom: -20px;
    left: 10px;
    gap: 16px;
  }
}


/* RESPONSIVE */
@media(max-width: 992px){
  .hero-container{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    justify-content: flex-start;
  }
  .hero-features,
  .hero-buttons{
    justify-content: center;
  }
  .stats-floating{
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
}

/* Additional responsive adjustments to keep hero readable and aligned */
@media (max-width: 992px) {
  /* keep hero text left-aligned on narrow screens for better readability */
  .hero-container { text-align: left; }
  .hero-left { text-align: left; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding-top: 80px; /* account for fixed navbar */
    align-items: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    align-items: start;
  }

  .hero-left {
    padding-left: 0;
  }

  .hero-title .line-one {
    font-size: 36px;
    letter-spacing: 6px;
  }

  .hero-title .line-two {
    font-size: 16px;
    margin-top: 0;
    letter-spacing: 1px;
  }

  .hero-description {
    font-size: 15px;
    max-width: 100%;
    margin-bottom: 18px;
    color: #ddd;
  }

  /* Make image area a fixed-height card on small screens */
  .hero-right .image-box {
    height: 280px;
    border-radius: 18px;
  }

  .image-box img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* tighten paddings for buttons/feature chips */
  .hero-features span {
    padding: 10px 14px;
    font-size: 12px;
  }

  .btn { padding: 12px 28px; }
}


@keyframes bounce {
    50% { transform: translateY(10px); }
}




@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   Section Header
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.services .section-header {
    margin-bottom: 35px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: -10px;
    color: #1a1a1a;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    color: #fafafa;
    font-size: 15px;
    margin-top: 20px;
}

/* ===================================
   About Section
   =================================== */
/* =========================
   ABOUT SECTION
========================= */
/* =========================
   ABOUT SECTION
========================= */
/* =========================
   ABOUT SECTION
========================= */

.about {
  padding: 40px 0 60px;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

/* Decorative radial gradients */
.about::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230,168,76,0.18), transparent 70%);
}
.about::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230,168,76,0.12), transparent 70%);
}

.about * { position: relative; z-index: 1; }

/* Grid layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.about-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #8A5A12;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.about-left h2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #E6A84C;
}
.about-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
  max-width: 540px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  background: #E6A84C;
  color: #1a1205;
  box-shadow: 0 12px 28px rgba(230,168,76,0.35);
  transition: 0.3s ease;
}
.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(230,168,76,0.55);
}

/* IMAGES */
.about-images { position: relative; }
.img-main {
  width: 100%;
  max-width: 480px;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}
.img-small {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.22);
  border: 5px solid #f8f8f8;
}

/* Decorative shapes */
.shape-triangle {
  position: absolute;
  bottom: 10px;
  left: 50px;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid rgba(230,168,76,0.1);
  z-index: 0;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    margin-top: 40px;
  }

  .small-image {
    display: none;
  }
}


  .about-features {
    grid-template-columns: 1fr;
  }



/* ===================================
   Services Section
   =================================== */
.services {
  padding: 20px 0 60px; /* compact top space */
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Background Image */
.services-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: blur(3px) brightness(0.7);
}

.services-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient Overlay */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,210,125,0.5), rgba(138,90,18,0.5));
  z-index: 1;
  border-radius: 0;
}

/* Ensure content is above the background image/overlay and description is readable */
.services .container {
  position: relative;
  z-index: 2;
}

.services .section-header .section-description {
  color: #ffffff;
  white-space: nowrap;        /* Prevents line breaks */
  overflow: hidden;           /* Hides overflow if too long */
  text-overflow: ellipsis;    /* Adds "..." if it overflows */
  max-width: 100%;            /* Allow full container width */
  margin-top: 12px;
  display: block;
}


/* Content above overlay */
.services .container,
.services .section-header,
.services-grid {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-underline {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FFD27D, #E6A84C, #8A5A12);
  margin: 10px auto 15px;
  border-radius: 2px;
}

.section-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* optional, in case it's too long for very small screens */
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Feature Item */
.feature-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 20px;
  border-radius: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Icon */
.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD27D, #E6A84C, #8A5A12);
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px) rotate(10deg) scale(1.1);
  box-shadow: 0 10px 25px rgba(230,168,76,0.6),
              0 0 20px rgba(255,210,125,0.8);
}

/* Text */
.feature-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #222;
}

.feature-text p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Responsive Typography */
@media (max-width: 768px){
  .section-title {
    font-size: 26px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
  }
}


/* Videos Section */
.videos {
    padding: 0; /* No extra top or bottom space */
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 30px; /* spacing between heading and grid */
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFD27D; /* website theme gold color */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-underline {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #FFD27D, #E6A84C, #8A5A12);
    margin: 10px auto 15px;
    border-radius: 2px;
}

.section-description {
    font-size: 14px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Video Card */
.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(230, 168, 76, 0.4);
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    display: block;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    text-decoration: none;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.08);
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFD27D, #E6A84C, #8A5A12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 10px 25px rgba(230,168,76,0.6),
                0 0 20px rgba(255,210,125,0.6);
}

/* Video Info */
/* ONLY VIDEO TEXT CONTENT REMOVE */
.video-info {
  display: none;
}


.video-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.video-info p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
    .video-info h4 {
        font-size: 16px;
    }
    .video-info p {
        font-size: 12px;
    }
}

/* ===================================
   Footer
   =================================== */
/* =========================
   FOOTER
========================= */

.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo */
.footer-logo img {
    max-width: 200px;
    margin-bottom: 15px;
}

/* Headings */
.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

/* Text */
.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

/* =========================
   IMPPA BADGE
========================= */
/* IMPPA BADGE */
.imppa-badge {
    display: flex;
    align-items: flex-start;   /* multi-line text ke liye */
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #FFD27D, #E6A84C, #8A5A12);
    border: 2px solid rgba(255,210,125,0.7);
    margin-top: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    max-width: 100%;
}

/* MEMBER LABEL */
.imppa-label {
    background: #fff;
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 25px;
    white-space: nowrap;
}

/* IMPPA TEXT – 2 LINES ALLOWED */
.imppa-name {
    font-size: 16px;
    font-weight: 700;
    color: #2b2b2b;
    line-height: 1.3;
    white-space: normal;       /* ✅ wrap allowed */
    word-break: break-word;    /* safe wrap */
}

/* =========================
   CONTACT
========================= */
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: #E6A84C;
}

/* =========================
   SOCIAL LINKS
========================= */
.social-links.vertical {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD27D, #E6A84C, #8A5A12);
    color: #fff;
    font-size: 20px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,0.6);
}

.social-text {
    color: #ddd;
    font-size: 14px;
    word-break: break-word;
}

.social-item:hover .social-icon {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 12px 28px rgba(230,168,76,0.7),
        0 0 20px rgba(255,210,125,0.8);
}

.social-item:hover .social-text {
    color: #FFD27D;
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

.footer-bottom i {
    color: #E6A84C;
}

/* ===================================
   Scroll Animations
=================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .nav-contact {
        gap: 20px;
        font-size: 13px;
    }
    
    .nav-logo img {
      height: 36px;
    }
}

@media (max-width: 768px) {
    .nav-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-logo img {
      height: 32px;
    }

    .hero-title {
        font-size: 32px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
    }
    
    .btn {
        width: 100%;
        display: inline-block;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-box {
        padding: 12px 16px;
        font-size: 12px;
    }
    
    .feature-box i {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .image-placeholder i {
        font-size: 70px;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .small-image {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 100px 15px 50px;
    }
    
    .hero-title {
        font-size: 28px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-description {
        font-size: 13px;
        max-width: 90%;
    }

    .btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 280px;
        margin: 15px auto;
    }

    .section-title {
        font-size: 26px;
    }

    .contact-item span {
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 12px;
    }
    
    .hero-features {
        gap: 10px;
        margin: 25px 0;
    }
    
    .footer-logo img {
      max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 12px;
    }
    
    .hero-content {
        padding: 80px 12px 40px;
    }
    
    .nav-logo img {
      height: 28px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-buttons {
        gap: 10px;
        width: 100%;
        max-width: 250px;
        margin: 15px auto;
    }

    .section-title {
        font-size: 22px;
    }

    .contact-item span {
        font-size: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        padding: 10px;
    }
    
    .feature-item .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .feature-box {
        padding: 10px 12px;
        font-size: 11px;
    }
}
