/* ==================================================
   GLOBAL STYLES
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #111;
  padding-top: 60px; /* header offset */
}

/* GLOBAL FIX */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* GRID FIX */
.contact-layout > * {
  min-width: 0;
}


/* ==================================================
   HEADER
================================================== */

.top-bar {
  background: #111;
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  z-index: 999;
}

.header-content {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  height: 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navigation */


.navigation a {
  padding: 5px 10px;
  margin-left: 20px;

  font-size: 14px;
  color: white;
  text-decoration: none;

  transition: 0.3s ease;
}

.navigation a:hover {
  color: #f9c976;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}


/* ==================================================
   MOBILE NAV
================================================== */

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navigation {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    text-align: center;
    z-index: 1000;
  }

  .navigation.active {
    display: flex;
  }

  .navigation a {
    margin: 12px 0;
    font-size: 15px;
  }

}


/* ==================================================
   HERO
================================================== */

.h1-section {
  padding: 120px 20px 50px;
  text-align: center;
  background: #fff;
}

.h1-section h1 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 20px;
}


/* ==================================================
   HERO SECTION (INDEX MAIN)
================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  box-shadow: 0 10px 40px #f9c976;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 10px;

  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-overlay p {
  font-size: clamp(14px, 2.5vw, 20px);
  margin-bottom: 30px;
  color: #f9c976;
  max-width: 700px;
  line-height: 1.6;
  letter-spacing: 1px;
}


/* ==================================================
   BUTTON
================================================== */

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

.btn-primary {
  background: #C0C0C0;
  color: #111;

  padding: 14px 30px;

  box-shadow: 0 10px 40px #f9c976;

  text-decoration: none;
  border: none;
  border-radius: 30px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #333;
  color: #f9c976;
}

/* ==================================================
   HERO MOBILE IMPROVEMENT
================================================== */

@media (max-width: 768px) {

  .hero {
    min-height: auto;
  }

  .hero-image {
    height: 400px;
  }

  .hero-overlay {
    position: absolute;
    justify-content: center;
    padding: 40px 20px;
  }

  .hero-buttons {
  flex-direction: column;
  align-items: center;
}

}
/* ==================================================
   MOBILE OPTIMIZATION
================================================== */

@media (max-width: 480px) {

  .h1-section {
    padding: 90px 15px 40px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    margin: 5px;
  }
}

/* ==================================================
   METAL PAGE HEADER
   Used on inner pages (gallery, about, services etc)
================================================== */

.page-header {
  padding: 50px 20px 60px;
  text-align: center;

  background: linear-gradient(
    135deg,
    #2e2e2e 0%,
    #444 50%,
    #2e2e2e 100%
  );

  background-size: 300% 300%;
  animation: metalShift 18s ease infinite;

  box-shadow: 0 10px 40px #f9c976;
  color: #eee;
}

.page-header h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: #fff;
}

.page-header p {
  font-size: clamp(14px, 2vw, 18px);
  color: #f9c976;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ==================================================
   UNIVERSAL PAGE WRAPPER
================================================== */

.page-wrapper {
  width: 95%;
  max-width: 1400px;

  margin: 60px auto;
  padding: 60px 40px;

  border-radius: 30px;

  background: linear-gradient(
    135deg,
    #4d4d4d 0%,
    #7a7a7a 25%,
    #5a5a5a 50%,
    #8a8a8a 75%,
    #4d4d4d 100%
  );

  background-size: 250% 250%;
  animation: metalShift 12s linear infinite;

  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Text inside wrapper */
.page-wrapper,
.page-wrapper h1,
.page-wrapper h2,
.page-wrapper h3,
.page-wrapper p,
.page-wrapper a {
  color: #eee;
}


/* ==================================================
   INDEX INTRO SECTION
================================================== */

.intro-section {
  padding: 0;
  text-align: left;
}

.intro-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.intro-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #f9c976;
}

.intro-inner p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: #f6e5c8;
  padding-top: 25px;
}


/* ==================================================
   RESPONSIVE ADJUSTMENTS
================================================== */

@media (max-width: 768px) {

  .page-wrapper {
    padding: 35px 20px;
    border-radius: 18px;
    margin: 40px auto;

    /* optional: disable animation for performance */
    animation: none;
  }

  .intro-inner {
    text-align: left;
  }

  .page-header {
    padding: 40px 20px 40px;
  }
}


/* ==================================================
   METAL BACKGROUND ANIMATION
================================================== */

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


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

.footer {
  background: linear-gradient(
    135deg,
    #2e2e2e 0%,
    #444 25%,
    #2e2e2e 50%,
    #555 75%,
    #2e2e2e 100%
  );

  background-size: 400% 400%;
  animation: metalShift 15s ease infinite;

  padding: 30px 0 0;
  color: #eee;

  box-shadow: 0 5px 60px #f9c976;
}


/* ==================================================
   FOOTER LAYOUT
================================================== */

.footer-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  align-items: start;
}


/* ==================================================
   FOOTER COMPANY CARD
================================================== */

.footer-company {
  background: linear-gradient(145deg, #2f2f2f, #3b3b3b);
  padding: 30px;
  border-radius: 20px;

  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 15px 40px #f9c976;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-company h3 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: #f9c976;
}

.footer-company p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: #f6e5c8;
}


/* ==================================================
   FOOTER TYPOGRAPHY
================================================== */

.footer h3 {
  margin-bottom: 18px;
  font-size: clamp(14px, 1.6vw, 17px);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f9c976;
}

.footer p {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}


/* ==================================================
   LINKS
================================================== */

.footer a {
  display: block;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.8;
  margin-bottom: 6px;

  color: #eee;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #f9c976;
}


/* ==================================================
   LABELS
================================================== */

.footer-label {
  margin-top: 20px;
  font-weight: 600;
  color: #f9c976;
}


/* ==================================================
   SOCIAL LINKS
================================================== */

.social-links {
  margin-top: 15px;
  display: flex;
  gap: 14px;
}

.social-links a {
  font-size: clamp(20px, 2.5vw, 26px);
  color: #f9c976;
  transition: 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: #fff;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.footer-bottom {
  margin-top: 40px;
  padding: 14px 0;
  background: #111;
  border-top: 1px solid #444;
}

.footer-bottom-content {
  width: 92%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: clamp(12px, 1.3vw, 13px);
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  white-space: nowrap;
  opacity: 0.85;
  transition: 0.3s ease;
  font-size: clamp(12px, 1.3vw, 13px);
}

.footer-legal a:hover {
  color: #f9c976;
}


/* ==================================================
   RESPONSIVE BREAKPOINTS
================================================== */

/* Tablet */
@media (max-width: 1024px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-company {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}


/* Mobile */
@media (max-width: 768px) {

  .footer {
    animation: none; /* performance boost */
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}


/* Small Phones */
@media (max-width: 480px) {

  .footer-company {
    padding: 22px;
    border-radius: 16px;
  }

  .footer-container {
    gap: 30px;
  }
}

/* ==================================================
   HOME GRID
================================================== */

.cards-section {
  width: 100%;
  max-width: 1100px;

  margin: 0 auto 70px auto;  
  padding: 0 20px;   

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 4vw, 45px);
}


/* ==================================================
   LARGE DESKTOP (more elegant width)
================================================== */

@media (min-width: 1400px) {
  .cards-section {
    max-width: 980px; /* slightly tighter on huge screens */
  }
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1024px) {
  .cards-section {
    gap: 30px;
  }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {
  .cards-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 480px) {
  .cards-section {
    width: 94%;
    gap: 20px;
  }

  .service-card {
    border-radius: 18px;
  }

  .service-box {
    padding: 18px 18px;
  }
}


/* ==================================================
   HOME SERVICE CARDS
================================================== */

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;

  aspect-ratio: 4 / 3;

  box-shadow: 0 10px 40px #f9c976;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* ==================================================
   SERVICE CARD IMAGE
================================================== */

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.07);
}


/* ==================================================
   SERVICE CARD OVERLAY
================================================== */

.service-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: clamp(18px, 3vw, 30px);


  background: linear-gradient( 
    to top, 
    rgba(0,0,0,0.65), 
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.05) 
  );

  transition: background 0.4s ease;
}


/* ==================================================
   SERVICE CARD TITLE
================================================== */

.service-box h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: 1px;
  color: #f9c976;

  text-shadow: -1px 1px 0 #000, 
  -2px 2px 0 #000, 
  -3px 3px 0 #000, 
  -4px 4px 0 #000, 
  -5px 5px 5px rgba(0,0,0,1);
  transition: all 0.3s ease;
}

.service-card:hover .service-box h3 { 
  color: #ffffff; 
  letter-spacing: 2px; 
  text-shadow: 0 6px 20px rgba(0,0,0,0.8); 
  transform: translateY(-4px); 
} 

.service-card:hover .service-box { 
  background: linear-gradient( 
    to top, 
    rgba(0,0,0,0.85), 
    rgba(0,0,0,0.6), 
    transparent 
    ); 
  } 
  
.service-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 20px 60px rgba(5, 5, 5, 0.5); 
}

.service-box p {
  margin-top: 8px;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #f6e5c8;
  line-height: 1.5;
}


/* ==================================================
   SEO CONTENT BLOCK
================================================== */

.seo-content {
  max-width: 100%;

  margin: clamp(40px, 7vw, 10px) auto 10px;

  padding: clamp(25px, 4vw, 40px);

  display: flex;
  flex-direction: column;
  gap: 18px;

  background: linear-gradient(145deg, #2f2f2f, #3b3b3b);
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 15px 40px #f9c976;

  transition: 0.3s ease;
}

.seo-content h2 {
  margin-bottom: 15px;
  color: #f9c976;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 1px;
}

.seo-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: #f6e5c8;
  line-height: 1.7;
}


/* ==================================================
   SCROLL REVEAL EFFECT
================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ==================================================
   RESPONSIVE TUNING
================================================== */

@media (max-width: 768px) {

  .service-card {
    border-radius: 18px;
  }

  .service-box {
    padding: 18px;
  }

  .seo-content {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {

  .seo-content {
    padding: 20px;
    margin-top: 20px;
  }

  .service-card:hover {
    transform: none; /* disable lift on very small screens */
  }
}

/* ==================================================
   SERVICES OVERVIEW SECTION
================================================== */

.services-overview {
  width: 92%;
  max-width: 1200px;
  margin: 20px auto;

  display: flex;
  flex-direction: column;
  gap: 100px;
}


/* ==================================================
   SINGLE SERVICE BLOCK
================================================== */

.service-block {
  display: flex;
  align-items: center;
  position: relative;
}

.service-block.reverse {
  flex-direction: row-reverse;
}


/* ==================================================
   SERVICE IMAGE BLOCK
================================================== */

.service-img {
  flex: 1.4;
  aspect-ratio: 4 / 3; /* replaces fixed height */
  background-size: cover;
  background-position: center;
  border-radius: 28px;

  box-shadow: 0 15px 40px #f9c976;
  position: relative;
  z-index: 1;
}


/* ==================================================
   SERVICE CONTENT BOX
================================================== */

.service-content {
  flex: 1;
  background: #fff;
  border-radius: 28px;

  padding: clamp(30px, 4vw, 60px);
  max-width: 600px;

  position: relative;
  z-index: 2;

  box-shadow: 0 10px 40px  #f9c976;
  transition: 0.6s ease;

  /* Overlap effect (desktop only) */
  margin-left: -60px;
}

.service-block.reverse .service-content {
  margin-left: 0;
  margin-right: -60px;
}


/* ==================================================
   TYPOGRAPHY
================================================== */

.service-small-title {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 2px;
  color: #f9c976;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-content h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  margin: 15px 0 20px;
  line-height: 1.2;
  color: #2c3539;
}

.service-content p {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}


/* ==================================================
   TABLET ADJUSTMENTS
================================================== */

@media (max-width: 1024px) {

  .services-overview {
    gap: 70px;
  }

  .service-content {
    margin-left: -40px;
  }

  .service-block.reverse .service-content {
    margin-right: -40px;
  }
}


/* ==================================================
   MOBILE LAYOUT
================================================== */

@media (max-width: 900px) {

  .service-block,
  .service-block.reverse {
    flex-direction: column;
  }

  .service-img {
    width: 96%;          /* slightly narrower */
    margin-right: auto;  /* stick to left */
    border-radius: 22px;
  }

  .service-content {
    width: 94%;
    margin-top: -50px;
    margin-left: auto;
    margin-right: -12px;
    border-radius: 22px;
  }

  .service-block.reverse .service-content {
    width: 94%;
    margin-top: -50px;
    margin-left: auto;
    margin-right: -12px;
  }

}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 480px) {

  .services-overview {
    gap: 50px;
    margin: 10px auto;
  }

  .service-content {
    padding: 25px;
    margin-top: -40px;
  }
}

/* ==================================================
   HEADER LOGO
================================================== */

.header-content .logo {
  display: flex;
  align-items: center;
  height: clamp(40px, 5vw, 60px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-icon {
  height: auto;
  max-height: 90px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.header-content .logo:hover .logo-icon {
  transform: scale(1.08);
  filter: brightness(1.15);
}


/* ==================================================
   ABOUT PAGE
================================================== */

.about-container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}


/* ==================================================
   ABOUT IMAGE
================================================== */

.about-image {
  flex: 1.1;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3; /* replaces min-height */
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 40px  #f9c976;
}


/* ==================================================
   ABOUT TEXT
================================================== */

.about-text {
  flex: 1;
  max-width: 600px;

  background: rgba(255,255,255,0.03);
  padding: clamp(25px, 4vw, 40px);
  border-radius: 20px;

  color: #eee;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;

  box-shadow: 0 10px 40px  #f9c976;
}

.about-text p {
  margin-bottom: 22px;
  color: #f6e5c8;
}

.about-text p:first-of-type {
  font-size: clamp(16px, 2.2vw, 19px);
  font-weight: 500;
  color: #eee;
  border-left: 3px solid #f9c976;
  padding-left: 16px;
}


/* ==================================================
   ABOUT SERVICES LIST
================================================== */

.about-services {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-services li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 22px;
}

.about-services li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #f9c976;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}


/* ==================================================
   ABOUT HIGHLIGHT BLOCK
================================================== */

.about-highlight {
  margin-top: 60px;
  padding: clamp(25px, 5vw, 50px);

  border-top: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;

  font-weight: 600;
  font-size: clamp(18px, 3vw, 26px);
  color: #f9c976;

  box-shadow: 0 10px 40px  #f9c976;
}


/* ==================================================
   RESPONSIVE LAYOUT
================================================== */

@media (max-width: 1024px) {

  .about-container {
    gap: 40px;
  }

}


@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    gap: 35px;
  }

  .about-text {
    max-width: 100%;
  }

}


@media (max-width: 480px) {

  .about-text {
    padding: 20px;
  }

  .about-highlight {
    padding: 25px;
  }

}


/* ==================================================
   GALLERY TABS
================================================== */

.gallery-tabs {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-tabs button {
  padding: clamp(8px, 1.5vw, 12px) clamp(18px, 3vw, 28px);
  margin: 6px;

  border: none;
  border-radius: 30px;

  background: #C0C0C0;
  color: #111;

  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  letter-spacing: 0.4px;

  cursor: pointer;
  transition: all 0.3s ease;

  box-shadow: 0 8px 25px #f9c976;
}

.gallery-tabs button:hover {
  background: #f9c976;
  color: #fff;
  transform: translateY(-2px);
}

.gallery-tabs button.active {
  background: #333;
  color: #f9c976;
}


/* ==================================================
   MASONRY GRID
================================================== */

.gallery-grid {
  column-count: 4;
  column-gap: 22px;
  margin-bottom: 5px;
}


/* Responsive columns */
@media (max-width: 1200px) {
  .gallery-grid { column-count: 3; }
}

@media (max-width: 900px) {
  .gallery-grid { column-count: 2; }
}

@media (max-width: 600px) {
  .gallery-grid { column-count: 1; }
}


/* ==================================================
   GALLERY ITEMS
================================================== */

.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px #f9c976;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 18px;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}


/* ==================================================
   GALLERY FINISH LINE
================================================== */

.gallery-finish {
  width: clamp(70px, 10vw, 120px);
  height: 4px;
  background: #f9c976;
  margin: 60px auto 0;
  border-radius: 5px;
}


/* ==================================================
   MOBILE OPTIMIZATION
================================================== */

@media (max-width: 480px) {

  .gallery-tabs {
    margin-bottom: 35px;
  }

  .gallery-tabs button {
    margin: 5px 4px;
  }

  .gallery-item img:hover {
    transform: none; /* disable heavy hover on small touch screens */
  }
  
}

/* ==================================================
FEATURED VIDEO (MAIN)
================================================== */

.featured-video {
width: 100%;
max-width: 1100px;
margin: 0 auto 70px auto;
padding: 0 20px;
}

.featured-thumb {
position: relative;
border-radius: 25px;
overflow: hidden;
cursor: pointer;
box-shadow: 0 10px 40px #f9c976;
}

.featured-thumb video {
width: 100%;
aspect-ratio: 16 / 9;
object-fit: cover;
display: block;
border-radius: 25px;
transition: transform 0.6s ease;
}

.featured-thumb:hover video {
transform: scale(1.05);
}

/* Ensure the video has a base background color so it doesn't look like a hole */
.featured-thumb video,
.video-thumb video {
background-color: #000;
/* Add this to help mobile rendering */
-webkit-transform: translateZ(0);
}


/* ==================================================
DARK OVERLAY
================================================== */

.overlay {
position: absolute;
inset: 0;

background: linear-gradient(
to top,
rgba(0,0,0,0.85),
rgba(0,0,0,0.25)
);

display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;

padding: clamp(20px, 4vw, 40px);
color: white;
transition: 0.4s ease;

pointer-events: none;
}


/* ==================================================
LARGE PLAY BUTTON
================================================== */

.play-button-large {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

font-size: clamp(40px, 6vw, 70px);

background: #f9c976;
width: clamp(70px, 10vw, 110px);
height: clamp(70px, 10vw, 110px);

border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;

transition: 0.3s ease;
}

.featured-thumb:hover .play-button-large {
transform: translate(-50%, -50%) scale(1.1);
color: white;
background: rgba(0,0,0,0.6);
}


/* ==================================================
VIDEO GRID (THUMBNAILS)
================================================== */

.video-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: clamp(18px, 3vw, 28px);
}

.video-item {
border-radius: 20px;
overflow: hidden;
position: relative;
box-shadow: 0 5px 25px #f9c976;
}

.video-thumb {
position: relative;
border-radius: 20px;
cursor: pointer;
}

.video-thumb video {
width: 100%;
height: 220px;
object-fit: cover;
display: block;
border-radius: 20px;
transition: transform 0.5s ease;
}

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


/* ==================================================
SMALL OVERLAY (HIDDEN BY DEFAULT, SHOWN ON HOVER)
================================================== */

.overlay-small {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.2);

display: flex;
align-items: center;
justify-content: center;

opacity: 0; /* Changed to 0 to hide on load */
transition: 0.4s ease;

pointer-events: none; /* important */
}

/* Hover logic for Desktop grid */
@media (hover: hover) {
  .video-thumb:hover .overlay-small {
    opacity: 1;
  }
}

.play-button {
font-size: clamp(22px, 4vw, 40px);

color: white;
background: #f9c976;

width: clamp(50px, 7vw, 70px);
height: clamp(50px, 7vw, 70px);

border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}


/* ==================================================
MOBILE OPTIMIZATION
================================================== */
/* 1. FIX FOR ONE-CLICK ON MOBILE */
.glightbox-video {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.featured-thumb video, 
.video-thumb video {
  pointer-events: none;
  background-color: #000;
  -webkit-transform: translateZ(0); 
}

/* Force Play Button visible on mobile */
@media (max-width: 991px) {
  .overlay-small {
    opacity: 1 !important;
  }
}

/* 2. FIX FOR FEATURED VIDEO SIZE ON MOBILE */
@media (max-width: 768px) {
  .featured-video {
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .featured-thumb {
    border-radius: 15px;
  }

  .featured-thumb video {
    aspect-ratio: 16 / 9;
    height: auto; /* Allow auto height on mobile */
    border-radius: 15px;
  }
  
  .play-button-large {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

/* 3. FIX FOR FULL SCREEN VIEWING (GLIGHTBOX OVERRIDES) */
.glightbox-container .gvideo-container {
  width: 100vw !important;
  max-width: 100vw !important;
}

/* 4. REFINED GRID FOR MOBILE */
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .video-thumb video {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}


/* ==================================================
   CONTACT SECTION
================================================== */

.contact-layout {
  width: 100%;
  max-width: 1200px;
  margin: clamp(6px, 1vw, 1px) auto;
  padding: 0 clamp(15px, 4vw, 30px);

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}


/* ==================================================
   LEFT SIDE (INFO CARDS)
================================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 35px);
}

.contact-card {
  background: linear-gradient(145deg, #2f2f2f, #3b3b3b);
  padding: clamp(25px, 4vw, 40px);
  border-radius: 22px;

  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 15px 40px #f9c976;

  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card h3 {
  margin-bottom: clamp(18px, 3vw, 28px);
  color: #f9c976;

  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 1px;
}

.contact-card p {
  margin-bottom: 14px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #ddd;
  line-height: 1.6;
}

.contact-role {
  font-size: 14px;
  opacity: 0.8;
  margin-top: -10px;
  margin-bottom: 18px;
  font-style: italic;
}

.contact-divider {
  height: 1px;
  background: rgba(249,201,118,0.3);
  margin: 25px 0;
}

.contact-phone {
  font-weight: 500;
}

.contact-link {
  display: block;
  font-size: clamp(15px, 1.8vw, 17px);
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
  font-weight: 500;
  transition: 0.3s ease;

  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-link:hover {
  color: #f9c976;
  transform: translateX(3px);
}


/* ==================================================
   RIGHT SIDE (FORM)
================================================== */

.contact-form-wrapper {
  background: #f4f4f4;
  padding: clamp(30px, 5vw, 55px);
  border-radius: 25px;
  box-shadow: 0 25px 60px #f9c976;
}

.contact-form-wrapper h2 {
  margin-bottom: clamp(20px, 4vw, 35px);
  font-size: clamp(22px, 3vw, 30px);
  color: #3b3b3b;
}


/* ==================================================
   FORM FIELDS
================================================== */

.form-group {
  margin-bottom: clamp(18px, 3vw, 25px);
  text-align: left;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 22px);

  border-radius: 18px;
  border: 1px solid #ccc;

  font-size: clamp(14px, 1.8vw, 16px);

  transition: 0.3s ease;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f9c976;
  box-shadow: 0 10px 40px rgba(249,201,118,0.6);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
  font-style: italic;
}


/* ==================================================
   FORM ERROR
================================================== */

.form-error {
  color: #d9534f !important;
  font-size: 13px;
  margin-top: 6px;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1000px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {

  .contact-layout {
    margin: 6px auto;
  }

  .contact-card {
    border-radius: 18px;
  }

  .contact-form-wrapper {
    border-radius: 20px;
  }
}


/* ==================================================
   POPUP MESSAGES
================================================== */

.popup-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;
  z-index: 9999;

  animation: fadeIn 0.3s ease-out;
}

.popup-box {
  width: 100%;
  max-width: 420px;

  padding: clamp(22px, 4vw, 35px);
  border-radius: 16px;

  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;

  text-align: center;

  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: scaleIn 0.25s ease-out;
}

/* SUCCESS */
.popup-box.success {
  background: #f9c976;
  color: #333;
}

/* ERROR */
.popup-box.error {
  background: #631301;
  color: #f9c976;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}