/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== GLOBAL WEBSITE BACKGROUND ===== */

body {
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  min-height: 100vh;
}


html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}


body {
  margin: 0;
  padding: 0;
}


/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  background: #ffffff;
   border-radius: 0 0 25px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  z-index: 1000;
}
 
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  
  color: #000000;
  font-family: "Montserrat", sans-serif;
}

/* ===== DESKTOP NAV ===== */
.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
   font-family: "Montserrat", sans-serif;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
 background: linear-gradient(135deg, #2f80ed, #00c6ff);
 transition: 0.3s;

  color: #ffffff;
  transition: 0.3s ease;
}

.nav a:hover {
  background: #150032;
  transform: translateY(-2px);
  
  color: white;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: 0.3s ease;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

 .nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;

 background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(14px);
box-shadow: -10px 0 30px rgba(0,0,0,0.15);

    border-left: 1px solid rgba(255,255,255,0.3);

    transform: translateX(-250%);
    transition: transform 0.4s ease;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    z-index: 1001;
}

  .nav.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  /* Hamburger animation */
  .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(5px, -5px);
  }
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===============================
   MODERN GRADIENT HERO DESIGN
================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    overflow: hidden;
}

/* Background video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* Content Card */
.hero-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 24px;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    animation: slideFade 1.2s ease forwards;
    opacity: 0;
}

/* Title */
.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
      font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #ffdd57;
}

/* Subtitle */
.hero-content p {
    font-size: 18px;
      font-family: "Montserrat", sans-serif;
    margin-bottom: 35px;
    color: #f1f5f9;
}

/* =================================
   HERO BUTTON – PREMIUM ANIMATED STYLE
================================= */

.hero-content .btn {
    display: inline-block;
    padding: 15px 38px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;

    color: #ffffff;
    border: 2px solid #ffffff;
    background: transparent;
}

/* Animated Gradient Background */
.hero-content .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a6cf1, #00c6ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

/* Hover Effect */
.hero-content .btn:hover::before {
    transform: scaleX(1);
}

.hero-content .btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(10, 108, 241, 0.35);
}

/* Click */
.hero-content .btn:active {
    transform: scale(0.97);
}

/* Entrance Animation */
@keyframes slideFade {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .hero-content {
        padding: 40px 25px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 16px;
    }
}


/* MOBILE */
@media(max-width:768px){

nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:white;
flex-direction:column;
display:none;
text-align:center;
padding:20px 0;
}

nav a{
display:block;
margin:15px 0;
}

.menu-btn{
display:block;
}

}


/* ===============================
   GLOBAL SECTION
================================ */

section {
    padding: 40px 8%;   /* reduced from 60px */
    margin: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #0a6cf1;
    font-size: 32px;
      font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

/* ===============================
   SERVICE CATEGORY CONTAINER
================================ */

.service-category {
    margin-bottom: 20px;
    border-radius: 30px;
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}


.service-category p {
    font-size: 15px;
      font-family: "Montserrat", sans-serif;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.1;
    text-align: left;
    padding-left: 10px;

}

/* ===============================
   CATEGORY HEADER
================================ */

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: #ffffff;
}





.category-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
      font-family: "Montserrat", sans-serif;
}

/* Toggle Button */
.toggle-btn {
    padding: 10px 18px;
    background: #0a6cf1;
    color: white;
    border: none;
      font-family: "Montserrat", sans-serif;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

/* ===============================
   PACKAGE LIST
================================ */

.package-list {
    display: none;
    padding: 40px 30px;
   
}

.package-list.active {
    display: block;
}

/* ===============================
   PACKAGE ITEM (CARD STYLE)
================================ */

.package-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 14px;
    border: 1px solid #e6ecf5;
}

.package-item:last-child {
    margin-bottom: 0;
}

/* ===============================
   PACKAGE TITLE
================================ */

.package-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
      font-family: "Montserrat", sans-serif;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0a6cf1;
}

/* ===============================
   PACKAGE DETAILS
================================ */

.package-item p {
    font-size: 15px;
      font-family: "Montserrat", sans-serif;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.7;
}

.package-item p strong {
    color: #111827;
      font-family: "Montserrat", sans-serif;
}









/* ===============================
   LIST STYLE
================================ */

.package-item ul {
    margin-top: 15px;
    padding-left: 18px;
}

.package-item ul li {
    font-size: 14px;
    color: #334155;
      font-family: "Montserrat", sans-serif;
    margin-bottom: 8px;
}


.book-btn {
    margin-top: 15px;
    padding: 10px 18px;
    background: #0a6cf1;
    color: white;
    border: none;
      font-family: "Montserrat", sans-serif;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}





/* ===============================
   MOBILE FREE LAYOUT FIX
================================ */

@media (max-width: 768px) {

    /* Make section more open */
    section {
        padding: 60px 16px;
        padding-bottom: -0.1px;
    }

    /* Remove heavy box feel */
    .service-category {
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        margin-bottom: 20px;
    }

    /* Header more relaxed */
    .category-header {
        padding: 20px 0;
    }

    .category-header h3 {
        font-size: 20px;
          font-family: "Montserrat", sans-serif;
    }

    /* Make package list more open */
    .package-list {
        padding: 20px 0;
        background: transparent;
    }

    /* Make cards feel free */
    .package-item {
        background: #ffffff;
        padding: 22px;
        margin-bottom: 25px;
        border-radius: 16px;
        border: none;
        box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    }

    /* Title breathing */
    .package-item h4 {
        font-size: 18px;
        margin-bottom: 16px;
          font-family: "Montserrat", sans-serif;
        border-bottom: none;
        padding-bottom: 0;
    }

    /* Better readable spacing */
    .package-item p {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.7;
        border-bottom: none;
        padding-bottom: 0;
    }

    .package-item ul {
        margin-top: 12px;
        padding-left: 18px;
        border-top: none;
    }

    .package-item ul li {
        font-size: 14px;
        margin-bottom: 6px;
          font-family: "Montserrat", sans-serif;
    }


    

}


/* ===============================
   CLEAN MOBILE HEADER FIX
================================ */

/* ===============================
   CATEGORY HEADER FIX (NO HTML CHANGE)
================================ */

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: #f8fafc;
    border-radius: 20px;
    gap: 20px;
}

/* Image control */
.category-header img {
    width: 160px;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
    flex-shrink: 0;
}

/* Title should take remaining space */
.category-header h3 {
    flex: 1;
    font-size: 22px;
    font-weight: 600;
      font-family: "Montserrat", sans-serif;
    color: #0f172a;
    margin: 0 15px;
}

/* Button */
.toggle-btn {
    padding: 10px 18px;
    background: #0a6cf1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}
@media (max-width: 768px) {

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .category-header img {
        width: 100%;          /* Full width */
        height: 180px;        /* Strong visual height */
        border-radius: 18px;
        object-fit: cover;
    }

    .category-header h3 {
        font-size: 22px;
        line-height: 1.3;
        margin-left: -0PX;
          font-family: "Montserrat", sans-serif;
    }

    .toggle-btn {
        width: auto;
    }

}



/* ===============================
   VEHICLE GRID INSIDE PACKAGE LIST
=============================== */

.package-list .vehicle-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.package-list .vehicle-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  padding-bottom: 1.2rem;
}

.package-list .vehicle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Vehicle Image */
.package-list .vehicle-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* Vehicle Name */
.package-list .vehicle-name {
  margin: 1rem 0 0.8rem 0;
  font-size: 1.05rem;
  font-weight: 600;
    font-family: "Montserrat", sans-serif;
  color: #333;
}

/* Book Button */
.package-list .vehicle-book-btn {
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 25px;
  background: #008080;
  color: #fff;
    font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.package-list .vehicle-book-btn:hover {
  background: #006666;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .package-list .vehicle-item img {
    height: 170px;
  }
}







/* =====================================
   MOBILE GAP FIX – PACKAGES → ABOUT
===================================== */

@media (max-width: 768px) {

  /* Reduce bottom spacing of Packages section */
  .service-category {
    margin-bottom: 10px !important;
  }

  .package-list {
    padding-bottom: 10px !important;
  }

  /* Reduce About section top spacing */
  #about {
    padding-top: 0px !important;
    margin-top: 0 !important;
  }

  /* Reduce title spacing inside About */
  #about .section-title {
    margin-bottom: 25px !important;
  }

}
















/* ===============================
   ABOUT SECTION - Pathinaril Travels
================================== */

#about {
  padding: 50px 8%;   /* reduced spacing */
  display: flex;
  flex-direction: column;
     border-radius: 25px 25px 0px 0px;
  align-items: center;
}
/* Section Title */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
    margin-top: 0;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
}

/* Underline animation */
.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00c6ff;
  display: block;
  margin: 12px auto 0;
  border-radius: 10px;
  transition: 0.4s ease;
}

.section-title:hover::after {
  width: 120px;
}

/* About Box */
.about-box {
  max-width: 850px;
  width: 100%;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

/* Paragraph */
.about-box p {
  font-size: 1.1rem;
    font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  color: #000000;
  letter-spacing: 0.5px;
}

/* ===============================
   Responsive Design
================================== */

/* Tablets */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
      margin-top: 0;
  }

  .about-box {
    padding: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #about {
      padding: 40px 20px;
      margin-top: 0;
    
  }

  .section-title {
    font-size: 1.6rem;
      margin-top: 0;
      margin-bottom: 40px;
  }

  .about-box {
    padding: 25px 18px;
    border-radius: 16px;
  }

  .about-box p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* ================================
   CONTACT SECTION
================================ */

.contact-section {
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   GRADIENT CARD
================================ */

.contact-card {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(135deg, #6c63ff, #5f5bff, #7b6cff);
  padding: 70px 80px;
  border-radius: 60px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

/* ================================
   CONTENT
================================ */

.contact-left {
  position: relative;
  z-index: 2;
}

.contact-left h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.contact-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 35px;
  line-height: 1.7;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ================================
   INPUT FIELDS
================================ */

.contact-left input,
.contact-left textarea {
  padding: 15px;
  border-radius: 14px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  outline: none;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.contact-left input::placeholder,
.contact-left textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-left textarea {
  height: 120px;
  resize: none;
}

/* ================================
   BUTTON
================================ */

/* =================================
   ELITE GLASS NEON BUTTON
================================= */

.contact-left button {
  margin-top: 22px;
  padding: 16px 40px;
  border-radius: 70px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;

  /* Transparent glass look */
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);

  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.1),
    0 10px 30px rgba(0,0,0,0.35);

  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Glowing border animation */
.contact-left button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 70px;
  padding: 1px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #38bdf8);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

/* Hover Effect */
.contact-left button:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    0 0 25px rgba(99,102,241,0.6);
}

/* Show animated border on hover */
.contact-left button:hover::after {
  opacity: 1;
}

/* Click */
.contact-left button:active {
  transform: scale(0.97);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {

  .contact-card {
    padding: 50px 30px;
    border-radius: 30px;
  }

  .contact-left h2 {
    font-size: 26px;
  }
}



/* =====================================
   MODERN PREMIUM BUTTON STYLES
===================================== */

/* HERO BUTTON */
.hero-content .btn {
  background: linear-gradient(135deg, #ffdd57, #ffc107);
  color: #111;
  font-weight: 600;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 193, 7, 0.6);
}


/* TOGGLE BUTTON (View Packages) */
.toggle-btn {
  background: linear-gradient(135deg, #0a6cf1, #00c6ff);
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(10,108,241,0.4);
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10,108,241,0.6);
}


/* PACKAGE BOOK BUTTON */
.book-btn {
  background: linear-gradient(135deg, #00b09b, #008080);
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 18px rgba(0,128,128,0.4);
  transition: all 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,128,128,0.6);
}


/* VEHICLE BOOK BUTTON */
.vehicle-book-btn {
  background: linear-gradient(135deg, #ff6a00, #ff3c00);
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255,60,0,0.4);
  transition: all 0.3s ease;
}

.vehicle-book-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(255,60,0,0.6);
}


/* CONTACT SUBMIT BUTTON */
.contact-left button {
  background: linear-gradient(135deg, #6c63ff, #4a4af4);
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 22px rgba(76, 63, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-left button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(76, 63, 255, 0.6);
}




/* ===============================
   HERO IMAGE + VIDEO SWITCH
================================ */

/* Desktop Image */
.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Hide image on mobile */
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

/* Hide video on desktop */
@media (min-width: 769px) {
  .hero-video {
    display: none;
  }
}



/* =========================================
        PREMIUM TRAVEL FOOTER
========================================= */

.premium-footer {
  background: #0b1c3d;
  color: #cbd5e1;
 margin-top: 30px; 
}

/* ================= CTA SECTION ================= */

.footer-cta {
  background: linear-gradient(135deg, #7b3fe4, #1f6bd6, #3aa0d8);
  text-align: center;
  padding: 80px 20px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  
}

.footer-cta h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}

.footer-cta p {
  font-size: 15px;
    font-family: "Montserrat", sans-serif;
  color: #e0e7ff;
  margin-bottom: 30px;
}

/* ================================
   PREMIUM CTA BUTTONS
================================ */

.footer-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Base Button Style */
.footer-btn {
  padding: 14px 34px;
  border-radius: 60px;
    font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* ================= PRIMARY BUTTON ================= */

.footer-btn.primary {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(255,255,255,0.1);
}

.footer-btn.primary:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(255,255,255,0.2);
}

/* Shine Effect */
.footer-btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.8s;
}

.footer-btn.primary:hover::before {
  left: 130%;
}

/* ================= OUTLINE BUTTON ================= */

.footer-btn.outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.footer-btn.outline:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.4),
    0 0 20px rgba(255,255,255,0.3);
}

/* ================= MAIN FOOTER ================= */

.footer-main {
     padding: 40px 8% 30px 8%;
  text-align: center;
  
}

.footer-brand h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}

.footer-brand p {
  max-width: 500px;
  margin: 0 auto 40px auto;
  font-size: 14px;
    font-family: "Montserrat", sans-serif;
  opacity: 0.8;
}

.footer-social h4 {
  font-size: 14px;
  margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
  color: #94a3b8;
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1e2b4a;
  display: flex;
  align-items: center;
  justify-content: center;
    font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s ease;
}

.social-icon:hover {
  background: #3aa0d8;
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
    font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

/* ================= BOTTOM BAR ================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px 15px;
  text-align: center;
  font-size: 10px;
    font-family: "Montserrat", sans-serif;
  opacity: 0.8;
  letter-spacing: 0.5px;
}






.premium-footer {
  margin-bottom: 0;
  padding-bottom: 0;
}




.footer-bottom .divider {
  margin: 0 8px;
  opacity: 0.5;
}

.designer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

/* Elegant underline animation */
.designer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #7b3fe4, #3aa0d8);
  transition: width 0.4s ease;
}

.designer-link:hover {
  color: #fff;
}

.designer-link:hover::after {
  width: 100%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .footer-cta {
    padding: 60px 20px;
  }

  .footer-cta h2 {
    font-size: 22px;
  }

  .footer-main {
    
  padding: 50px 8% 30px 8%;
  }

  .footer-links {
    gap: 15px;
  }

}
