/* Reset and Base Theme */
:root {
  --primary-color: #002244; /* Darker shade for better contrast */
  --accent-color: #007060;  /* Slightly deeper tone */
  --bg-color: #f4f7fa;
  --text-color: #222;
  --light-color: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: rgb(255, 255, 255);
  color: var(--text-color);
  line-height: 1.6;
  user-select: none;
}

body::before {
  content: "TANYACALLGIRLS.COM";
  opacity: 10%;
  position: fixed;
  top: 50%;
  left: 50%;
  font-weight: 500;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 30px;
  color: #001d3d;
  z-index: 1;
}

/* Navigation */
/* =========================================================
   UNIQUE PREMIUM HEADER
   ========================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;
  height: 86px;

  padding: 0 5%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(0, 112, 96, 0.18),
      transparent 30%
    ),
    linear-gradient(
      115deg,
      #061525,
      #091e33 55%,
      #061321
    );

  border-bottom: 1px solid rgba(255, 214, 10, 0.14);

  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28);

  isolation: isolate;
}


/* top luxury line */

.navbar::before {
  content: "";

  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 214, 10, 0.75),
      transparent
    );

  opacity: 0.7;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

  position: relative;
  z-index: 10;
}


/* TC GOLD MONOGRAM */

.brand-mark {
  position: relative;

  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      #ffe66d,
      #ffd60a 55%,
      #c99f00
    );

  color: #061525;

  box-shadow:
    0 7px 22px rgba(255, 214, 10, 0.18);

  transform: rotate(-3deg);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


.brand-mark::before {
  content: "";

  position: absolute;
  inset: 4px;

  border: 1px solid rgba(6, 21, 37, 0.25);

  border-radius: 11px;
}


.brand-mark span {
  position: relative;

  font-family: Georgia, serif;

  font-size: 17px;
  font-weight: 900;

  letter-spacing: -2px;

  transform: rotate(3deg);
}


.brand:hover .brand-mark {
  transform:
    rotate(0deg)
    translateY(-2px);

  box-shadow:
    0 10px 28px rgba(255, 214, 10, 0.28);
}


/* =========================================================
   BRAND TEXT
   ========================================================= */

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}


.brand-text strong {
  color: #ffffff;

  font-size: 1.38rem;
  font-weight: 800;

  letter-spacing: -0.6px;
}


.brand-text strong span {
  color: #ffd60a;
}


.brand-text small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.868);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 3px;
}


/* =========================================================
   DESKTOP NAV — PREMIUM CLEAN
   ========================================================= */

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 6px;

  background: rgba(255, 255, 255, 0.045);

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 15px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}


/* =========================================================
   INDIVIDUAL MENU BUTTON
   ========================================================= */

.desktop-nav > a {
  position: relative;

  min-width: 88px;
  height: 44px;

  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  color: rgba(255, 255, 255, 0.78);

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.15px;

  border-radius: 10px;

  border: 1px solid transparent;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


/* =========================================================
   ICON
   ========================================================= */

.desktop-nav > a i {
  color: #ffd60a;

  font-size: 13px;

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}


/* =========================================================
   REMOVE OLD NUMBER / SMALL SPAN LOOK
   ========================================================= */

.desktop-nav > a span {
  color: inherit;

  font-size: inherit;

  font-weight: inherit;

  letter-spacing: normal;
}


/* =========================================================
   HOVER
   ========================================================= */

.desktop-nav > a:hover {
  color: #ffffff;

  background:
    rgba(255, 214, 10, 0.075);

  border-color:
    rgba(255, 214, 10, 0.18);

  transform: translateY(-2px);

  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.15);
}


.desktop-nav > a:hover i {
  color: #ffe875;

  transform:
    scale(1.12);
}


/* =========================================================
   ACTIVE / CURRENT LINK
   ========================================================= */

.desktop-nav > a.active {
  color: #ffffff;

  background:
    rgba(255, 214, 10, 0.10);

  border-color:
    rgba(255, 214, 10, 0.22);
}


.desktop-nav > a.active i {
  color: #ffd60a;
}


/* =========================================================
   CONTACT BUTTON
   ========================================================= */

.desktop-nav > a:last-child {
  min-width: 102px;

  color: #071525;

  background:
    linear-gradient(
      135deg,
      #ffe875 0%,
      #ffd60a 100%
    );

  border-color: #ffd60a;

  box-shadow:
    0 5px 16px rgba(255, 214, 10, 0.18);
}


.desktop-nav > a:last-child i {
  color: #071525;
}


.desktop-nav > a:last-child:hover {
  color: #071525;

  background:
    linear-gradient(
      135deg,
      #fff09a 0%,
      #ffd60a 100%
    );

  border-color: #ffe875;

  transform: translateY(-2px);

  box-shadow:
    0 9px 24px rgba(255, 214, 10, 0.25);
}


/* =========================================================
   REMOVE OLD UNDERLINE
   ========================================================= */

.desktop-nav > a::after {
  display: none !important;
}


/* =========================================================
   MEDIUM DESKTOP
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

  .desktop-nav {
    gap: 4px;
    padding: 5px;
  }

  .desktop-nav > a {
    min-width: 78px;
    height: 42px;

    padding: 0 11px;

    font-size: 12px;
  }

  .desktop-nav > a:last-child {
    min-width: 90px;
  }
}



/* =========================================================
   CONTACT CTA
   ========================================================= */

.desktop-nav .nav-contact {
  margin-left: 5px;

  padding: 0 18px;

  color: #071525;

  background:
    linear-gradient(
      135deg,
      #ffe66d,
      #ffd60a
    );

  box-shadow:
    0 5px 18px rgba(255, 214, 10, 0.16);
}


.desktop-nav .nav-contact:hover {
  color: #071525;

  background:
    linear-gradient(
      135deg,
      #fff09a,
      #ffd60a
    );

  transform:
    translateY(-2px);

  box-shadow:
    0 9px 25px rgba(255, 214, 10, 0.25);
}


.nav-contact b {
  font-size: 16px;
  font-weight: 500;

  transition:
    transform 0.3s ease;
}


.nav-contact:hover b {
  transform:
    translate(2px, -2px);
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.hamburger {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 6px;

  background:
    rgba(255, 255, 255, 0.045);

  border:
    1px solid rgba(255, 214, 10, 0.22);

  border-radius: 12px;

  cursor: pointer;

  z-index: 10001;
}


.hamburger span {
  width: 20px;
  height: 2px;

  background: #ffd60a;

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}


.hamburger.active span:first-child {
  transform:
    translateY(4px)
    rotate(45deg);
}


.hamburger.active span:last-child {
  transform:
    translateY(-4px)
    rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-nav {
  display: none;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .navbar {
    height: 70px;

    padding: 0 16px;
  }


  .desktop-nav {
    display: none;
  }


  .hamburger {
    display: flex;
  }


  .brand-mark {
    width: 42px;
    height: 42px;

    border-radius: 12px;
  }


  .brand-mark span {
    font-size: 15px;
  }


  .brand-text strong {
    font-size: 1.18rem;
  }


  .brand-text small {
    margin-top: 6px;

    font-size: 6px;

    letter-spacing: 2.3px;
  }


  /* mobile menu */

  .mobile-nav {
    position: absolute;

    top: calc(100% + 1px);
    left: 12px;
    right: 12px;

    display: flex;
    flex-direction: column;

    padding: 17px;

    background:
      linear-gradient(
        145deg,
        #091c31,
        #061423
      );

    border:
      1px solid rgba(255, 214, 10, 0.15);

    border-radius: 18px;

    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.42);

    opacity: 0;
    visibility: hidden;

    transform:
      translateY(-10px)
      scale(0.98);

    pointer-events: none;

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }


  .mobile-nav.active {
    opacity: 1;

    visibility: visible;

    transform:
      translateY(0)
      scale(1);

    pointer-events: auto;
  }


  /* Menu heading */

  .mobile-nav-top {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 8px;
    padding: 0 5px 10px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.07);
  }


  .mobile-nav-top small {
    color: #ffd60a;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 3px;
  }


  .mobile-nav-top i {
    width: 30px;
    height: 1px;

    background:
      linear-gradient(
        90deg,
        #ffd60a,
        transparent
      );
  }


  /* Mobile links */

  .mobile-nav > a {
    min-height: 58px;

    display: grid;
    grid-template-columns: 35px 1fr 25px;
    align-items: center;

    padding: 0 10px;

    color: #ffffff;

    text-decoration: none;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.055);

    transition:
      background 0.25s ease,
      padding 0.25s ease;
  }


  .mobile-nav > a:last-child {
    border-bottom: none;
  }


  .mobile-nav > a em {
    color: rgba(255, 214, 10, 0.5);

    font-size: 9px;
    font-style: normal;
    font-weight: 800;

    letter-spacing: 1px;
  }


  .mobile-nav > a strong {
    font-size: 14px;
    font-weight: 650;
  }


  .mobile-nav > a > span {
    color: rgba(255, 255, 255, 0.35);

    font-size: 17px;

    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }


  .mobile-nav > a:hover {
    padding-left: 16px;

    background:
      rgba(255, 214, 10, 0.06);

    border-radius: 10px;
  }


  .mobile-nav > a:hover em,
  .mobile-nav > a:hover > span {
    color: #ffd60a;
  }


  .mobile-nav > a:hover > span {
    transform:
      translate(2px, -2px);
  }


  /* Mobile contact */

  .mobile-nav .mobile-contact {
    margin-top: 10px;

    border: none;

    color: #071525;

    background:
      linear-gradient(
        135deg,
        #ffe66d,
        #ffd60a
      );

    border-radius: 11px;
  }


  .mobile-nav .mobile-contact em {
    color: rgba(7, 21, 37, 0.5);
  }


  .mobile-nav .mobile-contact > span {
    color: #071525;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .navbar {
    padding: 0 13px;
  }


  .brand {
    gap: 9px;
  }


  .brand-mark {
    width: 39px;
    height: 39px;
  }


  .brand-text strong {
    font-size: 1.08rem;
  }


  .brand-text small {
    font-size: 5.5px;
    letter-spacing: 2px;
  }


  .hamburger {
    width: 41px;
    height: 41px;
  }

}

/* =========================================================
   PREMIUM CONTACT BANNER
   ========================================================= */

.contact-banner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;

    padding: 12px 20px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(0, 180, 216, 0.18),
            transparent 28%
        ),
        linear-gradient(
            90deg,
            #06182d,
            #092b48,
            #06182d
        );

    border-top: 1px solid rgba(255, 214, 10, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.16);

    font-size: 0.92rem;
    font-weight: 600;

    letter-spacing: 0.25px;

    overflow: hidden;
}


/* Gold shine line */

.contact-banner::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 120px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ffd60a,
            transparent
        );

    transform: translateX(-50%);
}


/* Subtle glow */

.contact-banner::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: 50%;
    top: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 214, 10, 0.06),
            transparent 70%
        );

    transform: translate(-50%, -50%);

    pointer-events: none;
}


/* =========================================================
   CONTACT LINK
   ========================================================= */

.contact-banner a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 8px 18px;

    color: #ffffff;

    text-decoration: none;

    border: 1px solid rgba(255, 214, 10, 0.22);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.045);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.contact-banner a:hover {
    color: #071525;

    background:
        linear-gradient(
            135deg,
            #ffe66d,
            #ffd60a
        );

    border-color: #ffd60a;

    transform: translateY(-2px);

    box-shadow:
        0 7px 20px rgba(255, 214, 10, 0.22);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .contact-banner {
        min-height: 52px;

        padding: 9px 14px;

        font-size: 0.78rem;

        line-height: 1.4;

        text-align: center;
    }

    .contact-banner a {
        padding: 7px 14px;

        max-width: 95%;

        font-size: 0.78rem;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .contact-banner {
        min-height: 48px;

        padding: 8px 10px;

        font-size: 0.72rem;
    }

    .contact-banner a {
        padding: 6px 12px;
    }

}

/* Headline */
h1 {
  text-align: center;
  margin: 2rem 1rem 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.2rem;
    margin: 2rem 1rem 1rem;
  }
}

/* === ADS SECTION === */
.ads-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

/* === AD CARD === */
.ad-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: all 0.35s ease;
}

.ad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #2563eb;
}

/* === IMAGE === */
.ad-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ad-card:hover .ad-image {
  transform: scale(1.03);
}

/* === CONTENT === */
.ad-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ad-content h2,
.ad-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ad-content h2 strong,
.ad-content h3 strong {
  color: #2563eb;
}

.ad-content p {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}

.ad-content p strong {
  color: #2563eb;
  font-weight: 600;
}

/* === BOTTOM BUTTONS === */
.card-actions {
  display: flex;
  gap: 12px;
  padding: 16px 20px 20px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

/* Common Button */
.card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icons */
.card-btn i {
  font-size: 1.1rem;
}

/* WhatsApp Button */
.card-btn.wa {
  background: linear-gradient(135deg, #25D366, #16a34a);
}

.card-btn.wa:hover {
  background: linear-gradient(135deg, #1db954, #0f9635);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* Call Button */
.card-btn.call {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.card-btn.call:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Shine Effect on Buttons */
.card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.card-btn:hover::before {
  left: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .ads-section {
    padding: 20px 15px;
    gap: 20px;
  }
  
  .ad-card {
    border-radius: 12px;
  }
  
  .ad-image {
    height: 240px;
  }
  
  .ad-content {
    padding: 20px;
  }
  
  .ad-content h2,
  .ad-content h3 {
    font-size: 1.1rem;
  }
  
  .ad-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .card-actions {
    padding: 14px 16px 18px;
    gap: 10px;
  }
  
  .card-btn {
    padding: 12px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .ads-section {
    grid-template-columns: 1fr;
  }
  
  .ad-image {
    height: 220px;
  }
  
  .card-btn i {
    font-size: 1rem;
  }
}

/* Info Section */
.info-section {
  padding: 60px 20px;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

/* Title Design */
.info-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: left;
}

.info-section h2 strong {
  color: #2563eb;
}

/* Paragraph */
.info-section p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-section p strong {
  color: #2563eb;
  font-weight: 600;
}

/* Paraline/List */
.paraline {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  border-left: 4px solid #2563eb;
}

.paraline ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paraline ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
}

.paraline ul li:last-child {
  margin-bottom: 0;
}

/* List Marker */
.paraline ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #078b82;
  font-weight: 700;
  font-size: 1rem;
}

.paraline ul li strong {
  color: #078b82 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 20px;
  }
  
  .info-section h2 {
    font-size: 1.25rem;
  }
  
  .info-section p {
    font-size: 0.9rem;
  }
  
  .paraline {
    padding: 20px;
  }
  
  .paraline ul li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .info-section h2 {
    font-size: 1.1rem;
  }
  
  .paraline {
    padding: 16px;
  }
}

/* Contact Form */
.contact-form {
  background: #e3f2f1;
  padding: 2rem 1rem;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-form form {
  max-width: 600px;
  margin: auto;
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #004d66;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .ads-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
  }

  .ad-card {
    flex-direction: column;
    display: flex;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .ad-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .ad-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

}

/* Floating Icons Container */
.floating-icons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Common Icon Button */
.floating-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Icon Style */
.floating-icons a i {
  font-size: 1.4rem;
  color: #fff;
}

/* WhatsApp */
.floating-icons a:first-child {
  background: linear-gradient(135deg, #25D366, #16a34a);
}

.floating-icons a:first-child:hover {
  background: linear-gradient(135deg, #1db954, #0f9635);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Call */
.floating-icons a:last-child {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.floating-icons a:last-child:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* Hover Icon Scale */
.floating-icons a:hover i {
  transform: scale(1.2);
}

/* Pulse Animation - WhatsApp */
.floating-icons a:first-child {
  animation: pulse-wa 2s infinite;
}

/* Pulse Animation - Call */
.floating-icons a:last-child {
  animation: pulse-call 2s infinite;
  animation-delay: 1s;
}

/* Pulse Animation - Only OUT Effect */
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130,246, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(59, 130,246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130,246, 0);
  }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .floating-icons {
    bottom: 18px;
    right: 18px;
    gap: 12px;
  }
  
  .floating-icons a {
    width: 52px;
    height: 52px;
  }
  
  .floating-icons a i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .floating-icons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .floating-icons a {
    width: 48px;
    height: 48px;
  }
  
  .floating-icons a i {
    font-size: 1.1rem;
  }
}
/* main CSS file */
/* Base styles */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

/* Show nav in mobile when active */
.nav-links.active {
  display: flex;
}


/* Ads Section Styles */
.ads-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Each Ad Card */
.ad-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.ad-card:hover {
  transform: scale(1.01);
}

/* Ad Image */
.ad-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

/* Ad Content */
.ad-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Ad Icons */
.ad-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

/* ===== MORE LOCATIONS – STYLISH LIST ===== */

/* Section Base - White Background */
.locations-section {
  padding: 50px 20px;
  background: #ffffff;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
}

/* H2 Title Design */
.section-title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

/* Accent Text (Small) */
.title-accent {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #2563eb;
  margin-bottom: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 20px;
}

/* Main Title */
.title-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Creative Underline */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Hover Effect (Optional) */
.section-title:hover .title-accent {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .title-main {
    font-size: 1.6rem;
  }
  .title-accent {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 1.3rem;
  }
}

/* Wrapper Grid - 5 Columns */
.locations-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* Card Design - Light Theme */
.location-card {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: #f8f8f8;
  color: #444444;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}


/* City Name */
.city-name {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  transition: all 0.3s ease;
}

/* Arrow */
.arrow {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #2563eb;
  margin-left: 8px;
}

/* ========== HOVER EFFECTS ========== */

/* Card Hover - Dark Theme */
.location-card:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Number Color Change */
.location-card:hover .location-number {
  color: #2563eb;
}

/* Arrow Show */
.location-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== SHORT ACCENT LINE (30% Height) ========== */
.location-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30%;
  background: linear-gradient(180deg, #2563eb, #06b6d4);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.location-card:hover::before {
  opacity: 1;
  height: 55%;
}

/* ========== SHINE EFFECT (Talwar Jaisi) ========== */
.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.location-card:hover .shine-effect {
  left: 200%;
  transition: left 0.55s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .locations-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .locations-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .location-card {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 520px) {
  .locations-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .locations-wrapper {
    grid-template-columns: 1fr;
  }
  .location-card {
    padding: 16px 18px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 70px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Title Design */
.faq-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.faq-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2563eb;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #2563eb;
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  flex-grow: 1;
  padding-right: 15px;
}

.faq-question strong {
  color: #2563eb;
  font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2563eb;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.7;
}

.faq-answer strong {
  color: #2563eb;
  font-weight: 600;
}

/* ========== ACTIVE STATE ========== */
.faq-item.active {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq-item.active .faq-question {
  background: #f0f7ff;
}

.faq-item.active .faq-question span:first-child {
  color: #111111;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-question span:first-child {
    font-size: 0.9rem;
  }
  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 15px;
  }
  .faq-question {
    padding: 14px 16px;
  }
  .faq-question span:first-child {
    font-size: 0.85rem;
  }
}

/* Desktop Navbar Styles */
@media (min-width: 768px) {
  #hamburger {
    display: none; /* Hide hamburger on desktop */
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: static; /* Remove absolute positioning */
    width: auto;/*marked*/
    background: none;
  }
}

/* ===== TABLE WRAPPER ===== */
.info-table {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
  border-collapse: collapse;
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  font-family: 'Poppins', sans-serif;
}

/* ===== TABLE HEADER ===== */
.info-table thead {
  background: linear-gradient(120deg, #9fd213, #177cba);
}

.info-table th {
  padding: 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.4px;
}

/* ===== TABLE BODY ===== */
.info-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #e5e7eb;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== ROW EFFECT ===== */
.info-table tbody tr{
  transition: 0.3s ease;
}

.info-table tbody tr:hover {
  background: #1e293b;
  transform: scale(1.01);
}

/* ===== COLUMN COLORS ===== */
.info-table td:nth-child(1) {
  color: #08d9d6;
  font-weight: 500;
}

.info-table td:nth-child(2) {
  color: #facc15;
}

.info-table td:nth-child(3) a{
  color: #46b74d;
  text-decoration: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-table {
    font-size: 0.85rem;
  }

  .info-table th,
  .info-table td {
    padding: 12px;
  }
}

/* Tags */


/* Tags Section - White Background */
.tags-section {
  padding: 70px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
}

/* ========== TITLE DESIGN ========== */
/* Simple H2 Design */
.tags-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Simple Underline */
.tags-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2563eb;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .tags-title {
    font-size: 1.4rem;
  }
}

.title-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 8px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== TAGS WRAPPER ========== */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ========== TAG DESIGN ========== */
.tag {
  display: inline-block;
  padding: 12px 18px;
  background: #f8f8f8;
  color: #555555;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* ========== HOVER EFFECTS ========== */

/* Dark Theme Hover */
.tag:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Left Accent Line */
.tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30%;
  background: linear-gradient(180deg, #3b82f6, #06b6d4);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: all 0.35s ease;
}

.tag:hover::before {
  opacity: 1;
  height: 55%;
}

/* Shine Effect - Talwar Style */
.tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.tag:hover::after {
  left: 200%;
  transition: left 0.55s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .tags-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 10px;
  }
  .tag {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .tags {
    gap: 8px;
  }
  .tag {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
}