/* ========================= */
/* GLOBAL THEME VARIABLES    */
/* ========================= */
:root{
  --teal:#56cbd0;
  --pink:#f6b2c1;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Poppins,sans-serif;
  background:#FCE7EF !important;
  color:#333;
  overflow-x:hidden;
}

.container{
  max-width:1180px;
  margin:auto;
  padding:0 18px;
}

.section{padding:30px 0;}
.center{text-align:center;}


/* ========================= */
/* HEADER + NAVIGATION       */
/* ========================= */
header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid #eee;
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand img{
  height:42px;
}

.brand strong{
  font-size:1.6rem;
  font-weight:800;
  background:linear-gradient(90deg,var(--pink),var(--teal));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.main-menu{
  display:flex;
  gap:14px;
  list-style:none;
}

.main-menu li a{
  color:#444;
  text-decoration:none;
  padding:8px 14px;
  border-radius:999px;
  font-weight:600;
  transition:.25s;
}

.main-menu li a:hover,
.main-menu li a.active{
  background:linear-gradient(90deg,var(--teal),var(--pink));
  color:#fff;
}

/* ========================= */
/* DROPDOWN (FIXED)          */
/* ========================= */
.has-dropdown{
  position:relative;
}

.more-toggle{cursor:pointer;}

.dropdown-menu{
  display:none;
  position:absolute;
  background:#fff;
  list-style:none;
  padding:10px 0;
  min-width:180px;
  top:100%;
  right:0;
  border-radius:8px;
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
  z-index:9999;
}

.dropdown-menu li a{
  display:block;
  padding:10px 15px;
  text-decoration:none;
  color:#222;
  font-size:15px;
}

.dropdown-menu li a:hover{
  background:#f5f5f5;
}

.has-dropdown.open .dropdown-menu{
  display:block;
}

/* ========================= */
/* MOBILE NAVIGATION         */
/* ========================= */
.mobile-toggle{
  display:none;
  background:none;
  border:none;
  font-size:32px;
  cursor:pointer;
}

@media(max-width:768px){

  .mobile-toggle{
    display:block;
  }

  .main-menu{
    display:none;
    flex-direction:column;
    gap:10px;
    background:#fff;
    position:absolute;
    top:70px;
    right:20px;
    width:230px;
    padding:18px;
    border-radius:14px;
    border:1px solid #eee;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
    z-index:2000;
  }

  .main-menu.show{
    display:flex;
  }
}

/* ========================= */
/* HERO SECTION              */
/* ========================= */
.hero{
  text-align:center;
  padding:50px 0 20px 0;
}

h1,h2,h3{
  color:var(--pink);
  font-weight:800;
}

h1{font-size:38px;}
h2{font-size:26px;margin-top:14px;}

/* TYPING ANIMATIONS */
.typing-text,
.typing-text-2{
  display:inline-block;
  white-space:nowrap;
  overflow:hidden;
}

.typing-text{
  animation:typing1 2.5s steps(30) forwards;
}

.typing-text-2{
  opacity:0;
  animation:fadeIn 1s ease 2.5s forwards,
             typing2 4s steps(60) 2.5s forwards;
}

@keyframes typing1{from{width:0;}to{width:100%;}}
@keyframes typing2{from{width:0;}to{width:100%;}}
@keyframes fadeIn{from{opacity:0;}to{opacity:1;}}

/* ========================= */
/* DOWNLOAD BUTTONS          */
/* ========================= */
.downloads{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
  margin:14px 0;
}

.downloads img{height:42px;}

.btn{
  background:linear-gradient(90deg,var(--teal),var(--pink));
  padding:10px 18px;
  border-radius:999px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.ribbon-100k{
  border:1px solid #eee;
  padding:8px 16px;
  border-radius:999px;
  margin-top:12px;
  display:inline-block;
}

.badge-cta{
  margin-top:10px;
  padding:6px 14px;
  border-radius:999px;
  background:#e7fbfd;
  border:1px solid var(--teal);
  color:#0e6e75;
}

/* ========================= */
/* GRID + CARDS              */
/* ========================= */
.grid-3{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:5px;
  margin-bottom:5px;
}

.card{
  width:280px;
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:20px 18px;
  text-align:center;
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
  transition:.25s;
}

.card h3{
  margin-bottom:6px;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 40px rgba(0,0,0,0.1);
}

/* ========================= */
/* ABOUT — reduced spacing   */
/* ========================= */
.about-tight{
  padding-top:10px !important;
  padding-bottom:10px !important;
}

/* ========================= */
/* GALLERY                   */
/* ========================= */
.gallery{
  display:grid;
  gap:14px;
}

@media(min-width:900px){.gallery{grid-template-columns:repeat(3,1fr);} }
@media(max-width:899px){.gallery{grid-template-columns:repeat(2,1fr);} }
@media(max-width:599px){.gallery{grid-template-columns:1fr;} }

.gallery img{
  width:100%;
  border-radius:16px;
  box-shadow:0 10px 26px rgba(0,0,0,0.1);
}

/* ========================= */
/* PRELOADER                 */
/* ========================= */
#preloader{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3000;
  animation:preFade 1.5s ease forwards;
}

.preloader-text{
  font-size:48px;
  font-weight:900;
  background:linear-gradient(90deg,#ff7ca2,#57e0e6,#ff7ca2);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

@keyframes preFade{
  0%,90%{opacity:1;}
  100%{opacity:0;visibility:hidden;}
}

/* ========================= */
/* FOOTER                    */
/* ========================= */
footer{
  text-align:center;
  padding:24px;
  margin-top:20px;
  border-top:1px solid #eee;
}

footer a{
  color:var(--teal);
  text-decoration:none;
  font-weight:600;
}

/* SPECIAL CARDS */
.card.special-love-card,
.card.special-love-card2 {
  background-color: #ffd6e0 !important;
  border: none !important;
}
.grid-3 .special-love-card,
.grid-3 .special-love-card2 {
  background: linear-gradient(180deg, #ffe1eb, #ffd6e0) !important;
  box-shadow: 0 6px 16px rgba(255, 182, 193, 0.55) !important;
}

/* Mobile Menu Button — Premium Gradient Circle Style */
.mobile-toggle {
    display: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3000;

    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    font-size: 26px;
    font-weight: 700;
    color: #fff;

    background: linear-gradient(135deg, var(--teal), var(--pink));
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);

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

    transition: 0.25s ease;
}

.mobile-toggle:hover {
    transform: translateY(-50%) scale(1.10);
}

.mobile-toggle:active {
    transform: translateY(-50%) scale(0.95);
}

@media(max-width:768px) {
    .mobile-toggle {
        display: flex;
    }
}

.section.about-tight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ========================================================= */
/* FINAL FIX — CLEAN, MOBILE PERFECT BADGE + RIBBON CENTERING */
/* ========================================================= */
.ribbon-100k,
.badge-cta {
    display: block;
    width: fit-content;
    margin: 12px auto;
    text-align: center;
    padding: 10px 22px;
    border-radius: 999px;
}

/* Individual styles */
.ribbon-100k {
    background: #ffffff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-weight: 600;
}

.badge-cta {
    background: #e7fbfd;
    border: 2px solid var(--teal);
    color: #0e6e75;
    font-weight: 600;
}
/* Reduce spacing above the 3-feature cards (pull cards upward) */
.hero + .container.section.grid-3 {
    margin-top: -35px !important;
}

/* Reduce space inside the card section */
.container.section.grid-3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Make card spacing tighter */
.container.section.grid-3 .card {
    margin: 6px 0 !important;
}

/* Reduce spacing before the "About the App" title */
.container.section.grid-3 + section.container.section {
    padding-top: 5px !important;
}
/* TIGHTEN THE REAL 3-CARD SECTION — correct selector */
section.container.section.grid-3:nth-of-type(3) {
    margin-top: -40px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Tighten spacing between the three cards */
section.container.section.grid-3:nth-of-type(3) .card {
    margin: 4px 0 !important;
}

/* Reduce spacing before "About the App" */
section.container.section.grid-3:nth-of-type(3) + section.container.section {
    padding-top: 10px !important;
}
/* ========================= */
/* Modern Premium Footer     */
/* ========================= */

footer {
    background: linear-gradient(180deg, #fde1eb, #fbdde8, #fcd9e7);
    padding: 40px 20px;
    border-top: none;
    margin-top: 60px;
    text-align: center;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
}

/* Footer text */
footer p, 
footer a {
    color: #0e6e75 !important;
    font-weight: 600;
    font-size: 15px;
}

/* Add spacing */
footer p {
    margin: 6px 0;
}

/* Add soft fade line */
footer::before {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--pink));
    border-radius: 999px;
    margin: 0 auto 18px auto;
    opacity: 0.6;
}

/* Link styling */
footer a {
    text-decoration: none;
    transition: 0.25s ease;
}

footer a:hover {
    color: var(--pink) !important;
    transform: translateY(-2px);
    text-shadow: 0 2px 12px rgba(255, 182, 193, 0.6);
}

/* Social icons (automatic if you add them later) */
footer .social-icons {
    margin: 14px 0 6px 0;
    display: flex;
    justify-content: center;
    gap: 14px;
}

footer .social-icons a {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

footer .social-icons a:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-3px);
}
/* ========================= */
/* Premium 2-Column Footer   */
/* ========================= */

footer {
    background: linear-gradient(180deg, #fde1eb, #fbdde8, #fcd9e7);
    padding: 50px 20px 30px;
    border-radius: 28px 28px 0 0;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    text-align: center;
    color: #0e6e75;
}

.footer-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 260px;
}

/* Title */
.footer-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--pink);
}

/* Tagline */
.footer-tagline {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Contact rows */
.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

.footer-contact a {
    color: #0e6e75;
    text-decoration: none;
    font-weight: 600;
}
.footer-contact a:hover {
    color: var(--pink);
}

/* WhatsApp icon */
.whatsapp-icon {
    width: 26px;
    height: 26px;
}

/* Social Icons Row */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.social {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.social:hover {
    transform: translateY(-3px);
    background: var(--teal);
    color: #fff;
}

/* Store Badges */
.store-badges img {
    width: 140px;
    margin: 6px 0;
    transition: 0.25s ease;
}
.store-badges img:hover {
    transform: translateY(-3px);
}

/* Copyright */
.footer-copy {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.8;
}

/* Mobile Stacking */
@media(max-width: 600px) {
    .store-badges img { width: 120px; }
    .social-icons { margin-bottom: 14px; }
}
/* Pink Feature Cards */
.special-love-card,
.special-love-card2 {
    background: linear-gradient(180deg, #fde1eb, #fbdde8, #fcd9e7);
    color: #c7005c;
    font-weight: 700;
    text-align: center;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.card {
    background: #e3f4f4; /* Light Teal */
    border: 1px solid #d6f1f2;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.card {
    background: #f6fdfd;        /* ultra-light teal */
    border: 1px solid #eaf8f8; /* soft teal border */
    width: 260px;               /* same width for all cards */
    min-height: 165px;          /* same height for all cards */
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;    /* center content vertically */
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.07);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    justify-items: center;
}
.elegant-form {
  background: #f6fdfd;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.elegant-form input,
.elegant-form select,
.elegant-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #cdecec;
  margin-bottom: 15px;
  font-size: 16px;
  background: white;
}

.elegant-form input:focus,
.elegant-form select:focus,
.elegant-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.2);
}

.elegant-form label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
/* Elegant form card */
.elegant-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  max-width: 550px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each field group */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Inputs and selects */
.elegant-form input,
.elegant-form select,
.elegant-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #dcecec;
  font-size: 16px;
  background: #fdfefe;
}

.elegant-form input:focus,
.elegant-form select:focus,
.elegant-form textarea:focus {
  border-color: var(--pink);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.25);
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  border-radius: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #7dd6d2, #ff9eb8);
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* MOBILE FIX (already good) */
@media (max-width: 600px) {
  .elegant-form {
    padding: 22px;
  }
}
/* --- FINAL SUPPORT FORM FIX --- */

/* Elegant card container */
.elegant-form {
  background: #f6fdfd !important;
  padding: 25px !important;
  border-radius: 16px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.10);
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  width: 100%;
}

/* Force each field to stack vertically */
.elegant-form .form-group {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
}

/* Labels */
.elegant-form label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 16px;
}

/* Inputs, selects, textarea */
.elegant-form input,
.elegant-form select,
.elegant-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #cdecec !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  background: white !important;
  display: block !important;
}

/* Textarea full width always */
.elegant-form textarea {
  resize: vertical;
}

/* Submit button */
.submit-btn {
  width: 100% !important;
  padding: 14px !important;
  border-radius: 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  background: linear-gradient(90deg, #7dd6d2, #ff9eb8) !important;
  color: white !important;
  border: none !important;
  cursor: pointer;
  margin-top: 10px !important;
}

/* Mobile improvements */
@media (max-width: 600px) {
  .elegant-form {
    padding: 20px !important;
  }
}
