* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  body { color: #222; background: #fff; line-height: 1.6; }
  /* Navbar */
  header { background: #111; color: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
  /* ... continue all the rest from your style block ... */

* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body { color: #222; background: #fff; line-height: 1.6; }

/* ================================
   Navbar Styling (Sticky + Animated)
================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.85); /* transparent effect */
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}

header.scrolled {
  background: #111; /* solid background when scrolled */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

nav h1 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffd012;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffd012;
}

/* Active navigation link */
nav ul li a.active {
  color: #fdd835;
  font-weight: 700;
  border-bottom: 2px solid #fdd835;
  padding-bottom: 2px;
}

/* ===========================
   Enhanced Hero Section
=========================== */
.hero-enhanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 20px 80px;
}

/* Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(253, 216, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(253, 216, 53, 0.05) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(253, 216, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 216, 53, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

/* Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Column */
.hero-content {
  max-width: 650px;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 216, 53, 0.1);
  border: 1px solid rgba(253, 216, 53, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 18px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.badge-text {
  color: #fdd835;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===========================
   Clean Hero Section
=========================== */
.hero-clean {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 100px 20px 80px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(253, 216, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero Wrapper */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Left Content */
.hero-content {
  max-width: 580px;
}

/* Small Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 216, 53, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 0.85rem;
  color: #fdd835;
  font-weight: 500;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: #fdd835;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}

/* Main Headline */
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fdd835 0%, #f9a825 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 35px;
}

/* Features List */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ddd;
  font-size: 1rem;
}

.feature-item svg {
  color: #fdd835;
  flex-shrink: 0;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-clean,
.btn-secondary-clean {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-clean {
  background: linear-gradient(135deg, #fdd835 0%, #f9a825 100%);
  color: #111;
  box-shadow: 0 8px 20px rgba(253, 216, 53, 0.25);
}

.btn-primary-clean:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(253, 216, 53, 0.35);
}

.btn-primary-clean svg {
  transition: transform 0.3s ease;
}

.btn-primary-clean:hover svg {
  transform: translateX(3px);
}

.btn-secondary-clean {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary-clean:hover {
  border-color: rgba(253, 216, 53, 0.5);
  background: rgba(253, 216, 53, 0.05);
  transform: translateY(-2px);
}

/* Right Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(253, 216, 53, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-features {
    align-items: center;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-clean {
    min-height: auto;
    padding: 80px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-clean,
  .btn-secondary-clean {
    width: 100%;
    justify-content: center;
  }

  .image-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}


/* --- Section Layout --- */
section { padding: 80px 0; }
.container { width: 90%; max-width: 1200px; margin: auto; }
h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ================================
   About Us Section
================================ */
.about {
  background: #fff;
  color: #111;
  padding: 100px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
}

.about-text {
  flex: 1 1 500px;
  padding-right: 40px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffd012;
  margin-top: 8px;
  border-radius: 2px;
}

.about-text p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  gap: 25px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.highlight {
  background: #f7f7f7;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
  flex: 1 1 150px;
}

.highlight h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 8px;
}

.highlight p {
  color: #666;
  font-size: 0.95rem;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    padding-right: 0;
  }
  .about-image {
    margin-top: 30px;
  }
}

/* ================================
   Why Choose Us Section
================================ */
.why-choose {
  background: #f9f9f9;
  color: #111;
  padding: 100px 20px;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
}

.why-choose h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffd012;
  margin: 10px auto 30px;
  border-radius: 2px;
}

.section-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.why-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  max-width: 270px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 600;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    flex-direction: column;
    align-items: center;
  }
  .why-card {
    max-width: 400px;
  }
}

/* ================================
   Our Services Section
================================ */
.services {
  background: #fff;
  color: #111;
  padding: 100px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.services h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffd012;
  margin: 10px auto 30px;
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: #fffbe6;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* --- Cards --- */
.services, .how-it-works, .portfolio, .testimonials, .trusted-logos, .why-choose {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 25px;
}
.card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1 1 280px;
  text-align: center;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card h3 { margin-bottom: 15px; font-weight: 600; }
.card p { font-size: 0.95rem; }


/* ===========================
   Video Section
=========================== */
.video-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 90px 0 60px 0;
}

.video-section h2 {
  font-size: 2.2rem;
  color: #fdd835;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.video-section .section-subtitle {
  color: #aaa;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 48px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: auto;
}

.video-card {
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  border: 1.5px solid rgba(253,216,53,0.12);
  box-shadow: 0 6px 32px rgba(253,216,53,0.08);
  padding: 0 0 24px 0;
  transition: 0.28s;
}
.video-card:hover {
  border-color: #fdd835;
  box-shadow: 0 10px 32px rgba(253,216,53,0.16);
  transform: translateY(-4px) scale(1.01);
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-card h3 {
  color: #fdd835;
  font-size: 1.04rem;
  font-weight: 600;
  margin: 18px 0 0 0;
  text-align: center;
}

@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr;}
}


/* ================================
   Portfolio / Our Work
================================ */
.portfolio {
  background: #fafafa;
  color: #111;
  padding: 100px 20px;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.portfolio h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffd012;
  margin: 10px auto 30px;
  border-radius: 2px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 15px;
}

.portfolio-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  opacity: 0;
  transition: 0.3s ease;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.overlay p {
  font-size: 0.9rem;
  color: #ddd;
}

/* ================================
   Lightbox
================================ */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
}

.lightbox img {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.lightbox img:hover {
  transform: scale(1.02);
}

.lightbox:target {
  display: block;
}

.lightbox.active {
  display: block;
}

.lightbox img {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/* ===========================
   Design Preview Tool
=========================== */
.design-tool-section {
  padding: 80px 20px;
  background: var(--color-background);
}

.design-tool-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #999;
  margin-bottom: 50px;
}

.design-tool-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mockup Preview */
.mockup-preview {
  position: relative;
}

.tshirt-mockup {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.tshirt-base {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease;
}

#uploadedLogo {
  max-width: 150px;
  height: auto;
  transition: all 0.3s ease;
}

.mockup-controls {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
}

.mockup-controls label {
  display: block;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 15px;
}

.mockup-controls input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 5px;
  background: rgba(253, 216, 53, 0.2);
  outline: none;
}

.position-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.position-btn {
  flex: 1;
  padding: 10px;
  background: rgba(253, 216, 53, 0.1);
  border: 1px solid rgba(253, 216, 53, 0.3);
  border-radius: 8px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s;
}

.position-btn:hover,
.position-btn.active {
  background: rgba(253, 216, 53, 0.2);
  border-color: #000000;
}

/* Upload Area */
.design-upload {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.upload-area {
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(253, 216, 53, 0.3);
  border-radius: 16px;
  padding: 60px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.upload-area:hover {
  border-color: #000000;
  background: rgba(253, 216, 53, 0.05);
}

.upload-area svg {
  color: #000000;
  margin-bottom: 20px;
}

.upload-area h3 {
  color: #fff;
  margin-bottom: 10px;
}

.upload-area p {
  color: #999;
  margin-bottom: 20px;
}

.design-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 16px;
}

.design-info h3 {
  color: #000000;
  margin-bottom: 20px;
}

.design-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.design-info ul li {
  padding: 10px 0;
  color: #c3c3c3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .design-tool-wrapper {
    grid-template-columns: 1fr;
  }
}


/* --- Pricing Section --- */
#pricing {
  background: #f9f9f9;
  padding: 90px 0;
  text-align: center;
}

#pricing .section-subtext {
  color: #666;
  margin-top: -20px;
  margin-bottom: 50px;
  font-size: 1rem;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  flex: 1 1 300px;
  max-width: 340px;
  position: relative;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pricing-header img {
  width: 60px;
  margin-bottom: 15px;
}

.pricing-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-card h4 {
  font-size: 1.8rem;
  color: #111;
  margin: 15px 0;
}

.pricing-card h4 span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
}

.pricing-card .btn-primary {
  display: inline-block;
  background: #ffd012;
  color: #111;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.pricing-card .btn-primary:hover {
  background: #111;
  color: #fff;
}

.popular {
  border: 2px solid #ffd012;
  transform: scale(1.05);
}

.popular-badge {
  background: #ffd012;
  color: #111;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.9rem;
}

/* ===========================
   Comparison Table
=========================== */
.compare-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #212121 100%);
  color: #fff;
  padding: 90px 0 70px 0;
}

.compare-section h2 {
  color: #fdd835;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.compare-section .section-subtitle {
  color: #aaa;
  text-align: center;
  margin-bottom: 38px;
}

.compare-table-wrapper {
  max-width: 920px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  font-size: 1rem;
}
.compare-table th, .compare-table td {
  padding: 1em 1.2em;
  text-align: center;
}
.compare-table th {
  background: rgba(253,216,53,0.14);
  color: #fdd835;
  font-weight: 700;
  border-bottom: 2px solid #fdd835;
  font-size: 1.09rem;
}
.compare-table tr {
  border-bottom: 1px solid rgba(253,216,53,0.09);
}
.compare-table td:first-child, .compare-table th:first-child {
  text-align: left;
  color: #fffacd;
  font-weight: 600;
}
.compare-table tr:nth-child(even) {
  background: rgba(253, 216, 53, 0.03);
}
.compare-table strong { color: #fdd835; }
.compare-note {
  margin-top: 14px;
  font-size: 0.93rem;
  color: #aaa;
  text-align: right;
  font-style: italic;
}


@media (max-width: 600px){
  .compare-table th, .compare-table td { padding: 0.7em 0.5em; }
}


/* Trusted By Logo Carousel */
.trusted-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
}

.carousel-track {
  display: flex;
  gap: 60px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Highlight on Hover - Show Original Color */
.carousel-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.15);
}

/* Pause animation on hover */
.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track img {
  position: relative;
}

.carousel-track img:hover::after {
  content: attr(alt);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fdd835;
  color: #111;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-track img {
    height: 40px;
  }
  .carousel-track {
    gap: 40px;
  }
}

/* ===========================
   Testimonials Carousel
=========================== */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: #999;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 70px;
}

.testimonials-carousel {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(253, 216, 53, 0.15);
  border-radius: 16px;
  padding: 40px 35px;
  backdrop-filter: blur(10px);
  animation: fadeSlideIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-slide:hover {
  border-color: rgba(253, 216, 53, 0.4);
  box-shadow: 0 15px 40px rgba(253, 216, 53, 0.15);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(253, 216, 53, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.stars span {
  color: #fdd835;
  font-size: 18px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 30px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fdd835;
  transition: transform 0.3s;
}

.testimonial-slide:hover .client-avatar {
  transform: scale(1.1);
}

.client-details h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #fdd835;
  font-weight: 600;
}

.client-details span {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-top: 4px;
}

/* Navigation Buttons */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 216, 53, 0.15);
  border: 1px solid rgba(253, 216, 53, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #fdd835;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(253, 216, 53, 0.3);
  border-color: #fdd835;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot:hover {
  background: rgba(253, 216, 53, 0.5);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: #fdd835;
  width: 14px;
  height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    padding: 0 60px;
  }
  
  .testimonials-carousel {
    min-height: 450px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

/* --- Contact --- */
.contact-form {
  display: flex; flex-direction: column;
  max-width: 600px; margin: auto;
}
.contact-form input, .contact-form textarea {
  margin-bottom: 15px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.contact-form button {
  background: #fdd835;
  color: #000000;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #000000;
  color: #ffffff;
}

/* =============================
   Contact Section
============================= */
.contact-section {
  background: #fafafa;
  padding: 100px 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-details img {
  width: 20px;
  height: 20px;
}

.social-contact {
  margin-top: 20px;
}

.social-contact a img {
  width: 35px;
  height: 35px;
  margin-right: 12px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-contact a img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* =============================
   Contact Details Styling
============================= */
.contact-info {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  max-width: 400px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #111;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333;
}

.contact-item img {
  width: 22px;
  height: 22px;
}

.contact-item a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #fdd835;
}

/* ===========================
   Payment Section
=========================== */
.payment-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  padding: 95px 0 70px 0;
  text-align: center;
}

.payment-section h2 {
  color: #fdd835;
  font-size: 2.1rem;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.payment-section .section-subtitle {
  color: #aaa;
  font-size: 1.09rem;
  margin-bottom: 32px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 34px;
  margin: 0 auto 42px auto;
  flex-wrap: wrap;
}

.payment-card {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(253,216,53,0.09);
  box-shadow: 0 3px 13px rgba(253,216,53,0.07);
  padding: 22px 24px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.21s;
}
.payment-card img {
  width: 38px; height: 38px;
  margin-bottom: 10px;
  filter: grayscale(20%) brightness(1.1);
}
.payment-card span {
  color: #ffd600;
  font-size: 1.04rem;
  margin-top: 2px;
  font-weight: 600;
}
.payment-card:hover {
  border-color: #fdd835;
  box-shadow: 0 10px 24px rgba(253,216,53,0.17);
}

.payment-action {
  margin: 44px 0 0 0;
}

.payment-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 17px 48px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  background: linear-gradient(135deg, #fdd835 0%, #f9a825 100%);
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(253,216,53,0.22);
  transition: 0.22s;
  margin-bottom: 16px;
}
.payment-btn:hover {
  background: linear-gradient(120deg, #f9a825 70%, #ffd835 100%);
  transform: translateY(-2px) scale(1.03);
}

.payment-trust {
  color: #43d96d;
  font-weight: 600;
  margin-top: 11px;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media (max-width:600px) {
  .payment-methods { flex-direction: column; gap:18px;}
  .payment-card { min-width: unset; }
}

.payment-section {
  background: linear-gradient(135deg, #181b2d 50%, #15141c 100%);
  color: #fff;
  padding: 95px 0 60px 0;
  position: relative;
  box-shadow: 0 0 70px 25px rgba(253,216,53,0.06) inset; /* glassy glow */
  z-index: 2;
}
.payment-section .container {
  background: rgba(19,19,25,0.85);
  border-radius: 22px;
  box-shadow: 0 8px 48px rgba(253,216,53,0.10);
  padding: 45px 28px 38px 28px;
}
.payment-section h2 {
  color: #fdd835;
  font-size: 2.1rem;
  margin-bottom: 12px;
  letter-spacing: -1px;
}
.payment-section .section-subtitle {
  color: #cac9e3;
  margin-bottom: 32px;
}
/* Add a soft inner glow to payment card icons or highlight border if you wish */


/* Common Floating Button Styles */
.floating-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  cursor: pointer;
  backdrop-filter: blur(8px); /* subtle blur */
  background-color: rgba(17,17,17,0.85); /* semi-transparent */
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, right 0.4s;
}

/* Floating Animation Keyframes */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Back to Top Button - Slower Float */
#backToTop.floating-btn {
  animation: float 5s ease-in-out infinite; /* slower animation */
}

/* WhatsApp Button - Normal Float */
.whatsapp-float.floating-btn {
  animation: float 3s ease-in-out infinite; /* faster animation */
}

/* Common Floating Button Styles */
.floating-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, right 0.4s;
}

/* Back to Top Specific Styles */
 
#backToTop {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fdd835;
  border: 2px solid rgba(253, 216, 53, 0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 10001;
  transition: opacity 0.3s, transform 0.3s;
}

/* Show Back to Top when scrolling */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive: move lower on mobile to avoid UI overlaps */
@media (max-width: 768px) {
  #backToTop {
    top: auto;
    bottom: 90px;
    right: 16px;
    transform: none;
  }
}

#backToTop {
  top: 50%;
  right: -70px; /* hidden initially */
  transform: translateY(-50%);
  background-color: rgba(17,17,17,0.85);
  color: #fff;
}
#backToTop.show {
  right: 20px;
}
#backToTop:hover {
  background-color: #fdd835;
  color: #111;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}
#backToTop::after {
  content: "Back to Top";
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(17,17,17,0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: opacity 0.3s;
}
#backToTop:hover::after {
  opacity: 1;
  visibility: visible;
}
 
/* --- Contact Section --- */
.contact-section {
  background: #fff;
  padding: 100px 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
}

.contact-form {
  flex: 1 1 45%;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-form p {
  color: #555;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
  outline: none;
}

.btn-primary {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

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

/* Right side visual */
.contact-visual {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-visual:hover img {
  transform: scale(1.05);
}

.contact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.contact-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}


/* =========================
   Form Success Message
========================= */
.form-message {
  display: none;
  margin-top: 20px;
  text-align: center;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  animation: fadeIn 0.5s ease-in-out;
}

.form-message.success {
  display: block;
  background: #28a745;
  color: #fff;
}

.form-message.error {
  display: block;
  background: #dc3545;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.g-recaptcha {
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
  
  /* ===========================================
   Tooltip Styling for Floating Buttons
=========================================== */
.tooltip {
  position: absolute;
  right: 60px; /* place left of the button */
  background: #111;
  color: #ffd012;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  pointer-events: none;
}

#backToTop:hover .tooltip,
.whatsapp-float:hover .tooltip {
  opacity: 1;
  right: 70px;
}

/* ================================
   Premium Navbar with Gold Accent
================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(20, 20, 20, 0.9);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  color: white;
}

nav h1 {
  font-size: 1.6rem;
  color: #ffd012;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd012;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #ffd012;
  transform: translateY(-2px);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #ffd012;
  margin: 4px 0;
  border-radius: 3px;
  transition: 0.4s;
}

/* Mobile View */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    height: 100vh;
    width: 60%;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 40px;
    transition: right 0.4s ease-in-out;
  }

  .nav-links.show {
    right: 0;
    box-shadow: -4px 0 10px rgba(0,0,0,0.5);
  }

  .nav-links li {
    margin: 20px 0;
  }

  .hamburger {
    display: flex;
  }

  /* Animate hamburger */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ================================
   Scroll Shrink Navbar Effect
================================ */
header.shrink {
  background: rgba(10, 10, 10, 0.95);
  padding: 8px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease-in-out;
}

header.shrink h1 {
  font-size: 1.4rem;
  color: #ffd012;
  transition: font-size 0.3s ease-in-out;
}


/* =========================
   CTA Section
========================= */
.cta {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0;
  margin-top: 60px;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #ddd;
}

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

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #ffd012;
  color: #111;
}

.btn-primary:hover {
  background: #fff;
  color: #111;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

/* ================================
 Premium Footer Section
================================ */
.footer {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #000);
  color: #fff;
  padding: 60px 0 25px;
  position: relative;
  overflow: hidden;
}

/* Soft Glow Effect */
.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 208, 18, 0.15), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
  padding: 0 20px;
}

/* Brand Info */
.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd012;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* Quick Links */
.footer-links h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffd012;
}

/* Social Section */
.footer-social h4 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  filter: grayscale(20%);
  transition: transform 0.3s, filter 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 25px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

/* Brand Info */
.footer-brand h3 {
  font-size: 1.6rem;
  color: #ffd700;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 250px;
  line-height: 1.5;
}

/* Quick Links */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 15px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #ffd700;
}



/* Contact Info */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-contact .contact-item img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.footer-contact .contact-item span,
.footer-contact .contact-item a {
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
}
.footer-contact .contact-item a:hover {
  color: #ffd700;
}

/* Social Icons */
.footer-social .social-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-social .social-icons a img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}
.footer-social .social-icons a:hover img {
  transform: scale(1.2);
}

.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 0 24px 0;
  /* no box shadow, no yellow glow! */
  border-top: 2.5px solid #282625; /* subtle edge */
  font-size: 0.95rem;
  z-index: 1;
}

.footer h3, .footer h4 {
  color: #fdd835;
}
.footer .footer-bottom {
  color: #a0a0a0;
  opacity: 0.85;
  border-top: 1px solid #191815;
  padding-top: 18px;
  margin-top: 25px;
}


/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media(max-width: 900px){
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   PROFESSIONAL FLOATING WIDGETS
   Final Implementation
=========================== */

/* WhatsApp Container - Above Tawk.to */
.widget-container {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
}

/* WhatsApp Button Styles */
.whatsapp-float {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366 0%, #20c05c 100%);
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: none;
  outline: none;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Back to Top - Center Right */
#backToTop {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fdd835;
  border-radius: 50%;
  border: 2px solid rgba(253, 216, 53, 0.2);
  box-shadow: 0 6px 20px rgba(253, 216, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: linear-gradient(135deg, #fdd835 0%, #f9a825 100%);
  color: #1a1a1a;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 35px rgba(253, 216, 53, 0.3);
}

/* Tooltips */
.widget-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 26, 0.95);
  color: #fdd835;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 216, 53, 0.2);
}

.whatsapp-float:hover .widget-tooltip,
#backToTop:hover .widget-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .widget-container {
    right: 16px;
    bottom: 100px;
    gap: 15px;
  }
  
  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  #backToTop {
    top: auto;
    bottom: 170px;
    right: 16px;
    transform: none;
    width: 50px;
    height: 50px;
  }
  
  .widget-tooltip {
    display: none;
  }
}

/* Tawk.to Positioning */
.tawk-min-container {
  bottom: 20px !important;
  right: 20px !important;
}

/* Smooth animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-float {
  animation: slideInUp 0.6s ease-out;
}

:root {
  --primary-gold: #fdd835;
  --deep-black: #181b2d;
  --charcoal: #20212f;
  --off-white: #fffacd;
  --neutral-gray: #cac9e3;
}

body { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins',sans-serif; color:#232323; background:#fff; }

.logo-link .site-logo {
  max-width: 155px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(253,216,53,.11));
}
.hero-logo {
  max-width: 120px;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 4px 24px rgba(253,216,53,.19));
  transition: transform .18s;
}
.hero-logo:hover { transform: scale(1.05) rotate(-2deg); }

.footer-logo {
  max-width: 80px;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: grayscale(.25) drop-shadow(0 1px 7px rgba(253,216,53,.11));
}

@media (max-width: 700px) {
  .site-logo, .hero-logo { max-width: 92px; }
  .footer-logo { max-width: 56px; }
}
