/* CSS Styles - Minified for Production */
:root {
  --snap-yellow: #fffc00;
  --dark: #1a1a1d;
  --white: #ffffff;
  --cta-color: #ff6b6b;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-light: rgba(255, 252, 0, 0.2);
  --shadow-dark: rgba(26, 26, 29, 0.3);
  --whatsapp-green: #25d366;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #2d2d35 50%,
    var(--dark) 100%
  );
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

a {
  text-decoration: none;
}

/* Glassmorphism Components */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: rgba(26, 26, 29, 0.8); */
  background: rgba(26, 26, 29, 0.326);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            background: var(--snap-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--dark);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--snap-yellow), var(--cta-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            display: block;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--snap-yellow);
            /* transform: translateY(-2px); */
        }

        /* Dropdown Styles - Fixed */
        .nav-item {
            position: relative;
        }

        .dropdown-toggle {
            display: flex !important;
            align-items: center;
            gap: 0.3rem;
            cursor: pointer;
        }

        .dropdown-toggle .caret {
            font-size: 1.7rem;
            transition: transform 0.3s ease;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(26, 26, 29, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            min-width: 200px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Show dropdown on hover and active state */
        .dropdown:hover .dropdown-menu,
        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Rotate caret when dropdown is open */
        .dropdown:hover .dropdown-toggle .caret,
        .dropdown.active .dropdown-toggle .caret {
            transform: rotate(180deg);
        }

        .dropdown-item {
            display: block;
            padding: 1rem !important;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .dropdown-item:hover {
          border-radius: 12px;
            background: rgba(255, 252, 0, 0.1);
            color: var(--snap-yellow);
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(26, 26, 29, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                border-radius: 0 0 20px 20px;
                border: 1px solid var(--glass-border);
                border-top: none;
                gap: 1rem;
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-menu-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-menu-toggle.active span:nth-child(2) {
                opacity: 0;
            }

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

            /* Mobile dropdown adjustments - FIXED */
            .dropdown-menu {
                position: static !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                background: rgba(255, 252, 0, 0.07) !important;
                border: 1px solid rgba(255, 252, 0, 0.3) !important;
                border-radius: 8px !important;
                margin-top: 0.5rem !important;
                display: none !important;
                box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
                min-width: auto !important;
                width: 100% !important;
            }

            .dropdown.active .dropdown-menu {
                display: block !important;
            }

            .dropdown-toggle {
                width: 100%;
                justify-content: center;
            }

            /* .dropdown-toggle .caret {
                margin-left: auto;
            } */

            .dropdown-item {
                padding: 0.5rem 1rem !important;
                font-size: 0.9rem;
            }

            .dropdown-item:hover {
                background: rgba(255, 252, 0, 0.25) !important;
            }
        }

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* .hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,252,0,0.60) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(255,107,107,0.40) 0%, transparent 70%),
    radial-gradient(circle at 20% 20%, rgba(255,252,0,0.25) 0%, transparent 50%);
  animation:heroGlow 8s ease-in-out infinite alternate;
  mix-blend-mode:screen;
  z-index:1;
}

@keyframes heroGlow{
  0%{
    opacity:0.35;
    transform:scale(1);
  }
  100%{
    opacity:0.80;
    transform:scale(1.03);
  }
} */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      var(--snap-yellow) 0%,
      transparent 70%
    ),
    radial-gradient(circle at 80% 20%, var(--cta-color) 0%, transparent 70%),
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 252, 0, 0.2) 0%,
      transparent 50%
    );
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    45deg,
    var(--snap-yellow),
    var(--white),
    var(--cta-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.hero-title > span {
  -webkit-text-fill-color: currentColor;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, var(--snap-yellow), var(--cta-color));
  color: var(--dark);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 252, 0, 0.5);
}

.btn-secondary {
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 2px solid var(--glass-border);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(255, 252, 0, 0.6);
  }
  100% {
    box-shadow: 0 10px 30px rgba(255, 252, 0, 0.3);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-emoji {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-emoji:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-emoji:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.floating-emoji:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 2s;
}

.floating-emoji:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.sec-bg-video {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 87% 0;
  z-index: -1;
  pointer-events: none;
}

/* Sections */
section {
  padding: 6rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, var(--snap-yellow), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title > span {
  -webkit-text-fill-color: currentColor !important;
}

/* background section style */
.bg-style {
  /* padding: 160px 0 100px; */
  background: linear-gradient(
    135deg,
    rgba(255, 252, 0, 0.1) 0%,
    rgba(255, 55, 95, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.bg-style::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--snap-yellow);
  opacity: 0.2;
  z-index: -1;
}

.bg-style::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--cta-color);
  opacity: 0.15;
  z-index: -1;
}

/* About Section */
.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.team-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.about-text {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--snap-yellow);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--snap-yellow);
}

.service-description {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(255, 252, 0, 0.2);
  color: var(--snap-yellow);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Achievements Section */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.achievement-card {
  padding: 2rem;
  text-align: center;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--snap-yellow);
  margin-bottom: 0.5rem;
}
/* .plus-sign::after{
content: "+";
} */

.achievement-label {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Features Section */

/* Modern geometric background for Features Section */
.features-section {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

/* Top-left angled accent */
.features-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 160%;
  height: 80%;
  background: linear-gradient(
    120deg,
    rgba(255, 252, 0, 0.15) 0%,
    rgba(255, 252, 0, 0) 70%
  );
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
  z-index: -1;
}

/* Bottom-right angled accent */
.features-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -30%;
  width: 160%;
  height: 80%;
  background: linear-gradient(
    300deg,
    rgba(255, 107, 107, 0.12) 0%,
    rgba(255, 107, 107, 0) 70%
  );
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

/* Optional: subtle grid overlay for extra texture */
.features-section {
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.feature-panel {
  padding: 2.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--snap-yellow);
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.9;
}

.feature-list li:before {
  content: "✨";
  margin-right: 0.5rem;
}

/* Extras Section */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.glass-badge {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.glass-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 252, 0, 0.1);
}

.extra-icon {
  font-size: 2rem;
}

.extra-text {
  font-weight: 600;
}

/* Footer */
.footer {
  background: rgba(26, 26, 29, 0.9);
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
}

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

/* Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Responsive Design */

@media (min-width: 1024px) and (max-width: 1366px) {
  .hero-title {
    font-size: 3.8rem; /*3.5rem = 56px */
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 45px;
  }

  .hero-subtitle {
    /* color: black; */
  }
  .about-card {
    padding: 0;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-stats {
    margin: 1rem 0;
    align-items: center;
    justify-content: center;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  .service-card,
  .feature-panel {
    padding: 1.5rem;
  }

  section {
    padding: 4rem 0;
  }
}

/* --------------- */

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.05) 0%,
    rgba(26, 26, 29, 0.8) 50%,
    rgba(37, 211, 102, 0.05) 100%
  );
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 120%;
  height: 160%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 252, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(37, 211, 102, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 107, 107, 0.08) 0%,
      transparent 60%
    );
  animation: contactGlow 10s ease-in-out infinite alternate;
  z-index: -1;
}

.contact-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(255, 252, 0, 0.03) 49%,
      rgba(255, 252, 0, 0.03) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(37, 211, 102, 0.02) 49%,
      rgba(37, 211, 102, 0.02) 51%,
      transparent 52%
    );
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes contactGlow {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.7;
  }
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--snap-yellow), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 252, 0, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  background: linear-gradient(135deg, var(--whatsapp-green), #128c7e);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.snapchat-icon {
  background: linear-gradient(135deg, var(--snap-yellow), #ffd700);
  box-shadow: 0 8px 25px rgba(255, 252, 0, 0.3);
}

.contact-card:hover .contact-icon {
  transform: rotateY(360deg);
}
.contact-card:hover .whatsapp-icon {
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}
.contact-card:hover .snapchat-icon {
  box-shadow: 0 12px 25px rgba(255, 252, 0, 0.5);
}

.contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--snap-yellow);
}

.contact-description {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, var(--whatsapp-green), #128c7e);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
}

.contact-button:hover::before {
  width: 300px;
  height: 300px;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.snapchat-button {
  background: linear-gradient(45deg, var(--snap-yellow), var(--cta-color));
  color: var(--dark);
}

.snapchat-button:hover {
  box-shadow: 0 12px 30px rgba(255, 252, 0, 0.4);
}

/* Call to Action Section */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--whatsapp-green),
    var(--snap-yellow)
  );
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 3rem 0;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.197);
  transform: rotate(45deg);
  animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark);
  opacity: 0.9;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(26, 26, 29, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26, 26, 29, 0.5);
}

/* Modern Footer */
.modern-footer {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 29, 0.95),
    rgba(45, 45, 53, 0.95)
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 2rem 0;
  /* margin-top: 4rem; */
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--snap-yellow),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--snap-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--snap-yellow), var(--cta-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

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

.footer-info h4 {
  color: var(--snap-yellow);
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

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

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

.whatsapp-social {
  background: rgba(37, 211, 102, 0.2);
  color: var(--whatsapp-green);
  border: 2px solid var(--whatsapp-green);
}

.whatsapp-social::before {
  background: var(--whatsapp-green);
}

.whatsapp-social:hover {
  color: white;
  transform: translateY(-3px);
}

.snapchat-social {
  background: rgba(255, 252, 0, 0.2);
  color: var(--snap-yellow);
  border: 2px solid var(--snap-yellow);
}

.snapchat-social::before {
  background: var(--snap-yellow);
}

.snapchat-social:hover {
  color: var(--dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .cta-banner {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-buttons {
    gap: 0.8rem;
  }

  .info-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .cta-banner {
    padding: 1.5rem 1rem;
  }

  .modern-footer {
    padding: 2rem 0 0.1rem;
  }
}
.disclaimer {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 10px;
}
