* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #B70049;
    --primary-light: #FCE7F3;
    --primary-dark: #8a003a;
    --text-dark: #1f2937;
    --text-gray: #4B5563;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-lighter: #FFF5F7;
    --border-light: #E5E7EB;
    --border-gray: #D1D5DB;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============= ANIMATIONS ============= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatDelay {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatingHearts {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(-10deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(10deg);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-5deg) translateY(20px);
    }
    to {
        opacity: 1;
        transform: rotate(0) translateY(0);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

.fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.8s forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-animation-delay {
    animation: floatDelay 3s ease-in-out infinite 0.5s;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
}

.rotate-in {
    animation: rotateIn 0.6s ease-out forwards;
}

.heartbeat {
    animation: heartbeat 1.2s ease-in-out infinite;
}

/* Intersection Observer Animation Triggers */
.section-animate {
    opacity: 0;
}

.section-animate.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

.card-animate {
    opacity: 0;
    animation: none;
}

.card-animate.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Text Animate - Scroll Trigger */
.text-animate {
    opacity: 0;
}

.text-animate.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Fade Up In - Scroll Trigger */
.fade-up-in {
    opacity: 0;
}

.fade-up-in.visible {
    animation: fadeInUp 0.7s ease-out forwards;
}

/* Heart Decorations */
.heart-decoration {
    position: absolute;
    font-size: 2rem;
    color: #FF69B4;
    opacity: 0.15;
    pointer-events: none;
    animation: floatingHearts 6s ease-in infinite;
}

.heart-decoration::before {
    content: "❤";
}

.heart-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.heart-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
    font-size: 1.8rem;
}

.heart-3 {
    top: 60%;
    left: 10%;
    animation-delay: 1s;
    font-size: 2rem;
}

/* ===================================
   NAVBAR
=================================== */

.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fdf2f8;
    padding: 20px 0;
    transition: 0.3s ease;
}

/* LOGO */

.nav-logo {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary) !important;
}

/* LINKS */

.custom-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.custom-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.custom-link:hover {
    color: var(--primary) !important;
}

.custom-link:hover::after {
    width: 100%;
}

/* BUTTON */

.btn-nav {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.store-buttons{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.store-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.store-text small{
    font-size:10px;
    letter-spacing:1px;
    font-weight:500;
    opacity:0.8;
}

.store-text span{
    font-size:16px;
    font-weight:700;
}

.store-btn i{
    font-size: 20px;
}

.store-btn:hover{
    background: #1f1f1f;
    color: #fff;
}

@media only screen and (max-width:768px){

    .store-buttons{
        justify-content: center;
    }

    .store-btn{
        width: 100%;
        justify-content: center;
    }

}
/* MOBILE MENU */

.navbar-toggler {
    border: none !important;
}


/* MOBILE */

@media (max-width: 991px) {

    .custom-navbar {
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(10px);
        padding: 14px 0;
    }

    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 16px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        text-align: center;
        gap: 10px;
    }
  
 
    .btn-nav {
        width: 100%;
        margin-top: 15px;
    }
}

/* ============= HERO SECTION ============= */
.hero {
    position: relative;
    padding: 26px 2rem 95px;
    background: linear-gradient(
        135deg,
        rgba(252, 231, 243, 0.8) 0%,
        rgba(255, 245, 247, 1) 100%
    );
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, #b7004961 0%, #ffffffbf 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FCE7F3;
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(183, 0, 73, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 0, 73, 0.2);
}

.badge-emoji {
    font-size: 1.1rem;
    color: var(--primary);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.title-main {
    display: block;
    margin-bottom: 0.2rem;
}

.title-accent {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #000;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.hero-btn{
    height:58px;
    padding:0 34px;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:all 0.35s ease;
    position:relative;
    overflow:hidden;
}

/* Pink Filled Button */
.primary-btn{
    background:#B70049;
    color:#fff;
    min-width:230px;
    gap:12px;
    box-shadow:0 8px 20px rgba(193, 0, 90, 0.25);
}

.primary-btn:hover{
    background:#B70049;
    transform:translateY(-3px);
}

.primary-btn span{
    font-size:18px;
    transition:transform 0.3s ease;
}

.primary-btn:hover span{
    transform:translateX(4px);
}

/* Outline Button */
.outline-btn{
    min-width:220px;
    border:2px solid #B70049;
    color:#B70049;
    background:#fff;
}

.outline-btn:hover{
    background:#B70049;
    color:#fff;
    transform:translateY(-3px);
}

/* Mobile */
@media(max-width:768px){

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-btn{
        width:100%;
    }
}
.btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #d91f6d 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(183, 0, 73, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(183, 0, 73, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2.5px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(183, 0, 73, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2.5px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(183, 0, 73, 0.2);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.btn-light-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-light-outline:hover {
    background: rgb(0, 0, 0);
}

.store-buttons{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.store-btn img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.store-btn:hover{
    color: #fff;
}
.playstore-icon{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.appstore-icon{
    font-size: 24px !important;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media only screen and (max-width:768px){

    .store-buttons{
        justify-content: center;
    }

    .store-btn{
        width: 100%;
        justify-content: center;
    }

}




/* Hero Images */
.hero-images {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Card */
.phone-mockup {
    position: absolute;
    width: 280px;
    border-radius: 45px;
    padding: 14px;
    transition: all 0.4s ease;
}

/* First Image */
.phone-mockup-1 {
    top: 20px;
    left: 80px;
    z-index: 2;
    transform: rotate(-8deg);
}

/* Second Image */
.phone-mockup-2 {
    top: 140px;
    left: 240px;
    z-index: 1;
    transform: rotate(8deg);
}



/* Phone Frame */
.phone-frame {
    border-radius: 35px;
    overflow: hidden;
    width: 100%;
 
}

/* Image */
.phone-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 2rem 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-images {
        height: 450px;
        margin-top: 40px;
    }

    .phone-mockup {
        width: 200px;
    }

    .phone-mockup-1 {
        left: 20px;
        top: 20px;
    }

    .phone-mockup-2 {
        left: 110px;
        top: 120px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 1.5rem 50px;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-images {
        height: 400px;
    }

    .phone-mockup {
        width: 160px;
        padding: 10px;
    }

    .phone-mockup-1 {
        left: 10px;
    }

    .phone-mockup-2 {
        left: 90px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .store-buttons {
        justify-content: center;
    }

    .badge {
        justify-content: center;
    }
}

/* ============= FEATURES SECTION ============= */
.features {
    padding: 80px 2rem;
    background: #F9FAFB
}

.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 3rem;
}


.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(183, 0, 73, 0.1);
    border-color: var(--primary);
}

.travel-game-icon{
    width:72px;
    height:72px;
    background:#c1005a;
    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:30px;

    box-shadow:0 12px 30px rgba(193, 0, 90, 0.25);

    margin-bottom:20px;
}

.travel-game-icon i{
    line-height:1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #B70049;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 1.5rem;

    font-size: 2rem;
    color: #fff;

    box-shadow: 0 10px 25px rgba(183, 0, 73, 0.25);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
      text-align: center;
    color: var(--text-dark);
}



.accent {
    color: var(--primary);
}

.feature-list {
    list-style: none;
    color: var(--text-dark);
    position:relative;
    padding-bottom:30px;
  
    padding-left:0;
    margin-left:0;

}



.feature-list::after{
    content:"";
    width:70px;
    height:4px;
    background:#B70049;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    border-radius:20px;
}


.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

/* ============= AMAZING FEATURES SECTION ============= */
.amazing-features {
    padding: 80px 2rem;
}

.amazing-features .section-subtitle {
    margin-bottom: 3rem;
}

.feature-row {
    max-width: 1280px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-row-reverse {
    direction: rtl;
}

.feature-row-reverse > * {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  
}

.feature-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-heading span:first-child {
    display: block;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Remove default ul padding/margin */
.feature-checklist{
    list-style:none;
    padding-left:0;
    margin-top:20px;
}

/* List item styling */
.feature-checklist li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:14px;
    color:#B70049;
    font-size:16px;
    font-weight:700;
}

/* Custom pink check icon */
.feature-checklist li::before{
    content:"\f058";
    font-family:"Font Awesome 6 Free";
    font-weight:900;

    color:#B70049;
    font-size:18px;

    flex-shrink:0;
}

.feature-phone {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.feature-image {
    text-align: center;
    height: auto;
    padding:  35px;
}

/* Feature Row Highlight */
.feature-row-highlight {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.feature-content-highlight {
    padding: 4rem;
}

.feature-heading-highlight {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.feature-heading-highlight span:first-child {
    display: block;
}

.feature-image-highlight {
    position: relative;
    text-align: center;
    padding: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image-large {
    width: 100%;
    max-width: 520px;
    height: 500px;

    object-fit: cover;
    border-radius: 20px;
}

.travelers-badge {
    position: absolute;
    bottom: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.traveler-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    border: 3px solid var(--white);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.badge-text {
    text-align: left;
     color: var(--primary);
}

.badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.badge-count {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* ============= HOW IT WORKS SECTION ============= */
.how-it-works {
    padding: 80px 2rem;
    background: var(--bg-light);
}

.steps-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;

    position: relative;
}

/* Dotted Line */

.steps-container::before {
    content: "";
    position: absolute;

    top: 80px; /* line center with circle */
    left: 8%;
    width: 84%;

    border-top: 3px dotted rgba(183, 0, 73, 0.35);

    z-index: 0;
}

.step {
    text-align: center;
    padding: 2rem;

    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );

    color: var(--white);
    font-size: 2rem;
    font-weight: 700;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 1.5rem;

    transition: all 0.3s ease;

    box-shadow: 0 10px 25px rgba(183, 0, 73, 0.2);

    background-color: #fff;
}
.step-number-inner{
    width:30px;
    height:30px;

    background:#fff;
    color:#c1005a;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    font-weight:700;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(183, 0, 73, 0.25);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mobile */
@media (max-width: 991px) {
    .steps-container::before {
        display: none;
    }
}

/* ============= COMMUNITY STATS SECTION ============= */

.community-stats {
    padding: 80px 2rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* INNER WRAPPER */

.community-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(138, 0, 58, 0.75) 100%
        ),
        url("../images/Stats\ Section.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* TITLE */

.stats-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* GRID */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* CARD */

.stat-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}
.safety-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(183, 0, 73, 0.25);
}

.safety-icon i {
    font-size: 32px;
    color: var(--primary)
}

/* NUMBER */

.stat-number {
    font-size: 36px;
    font-weight: 700;
  
}

/* LABEL */

.stat-label {
   font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* MOBILE */

@media (max-width: 768px) {

    .community-stats {
        padding: 60px 1rem;
    }

    .community-wrapper {
        padding: 60px 20px;
        border-radius: 24px;
    }

    .stats-title {
        font-size: 2rem;
      text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.3rem;
    }
}

/* ============= APP PREVIEW SECTION ============= */
.app-preview {
    padding: 80px 2rem;
    background-color: #faebf1;
}

.carousel-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.carousel-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-wrapper {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    align-items: center;
}

.carousel-slide {
    width: 220px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
}

/* FIXED IMAGE */
.carousel-image {
    width: 100%;
    height: auto; /* important */
    object-fit: contain; /* important */

    display: block;
    border-radius: 18px;
}

.carousel-dots {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--border-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 9999px;
}
/* ============= CTA SECTION ============= */
.cta-section {
    padding: 80px 2rem;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* OUTER CONTAINER */

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
     background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
}

/* INNER CTA */

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;

    padding: 80px 40px;
    border-radius: 28px;
   
}

/* CIRCLE EFFECT */

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

/* TITLE */

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* SUBTITLE */

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* BUTTONS */

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn-light {
    background: #ffffff;
    color: var(--primary);
    border: none;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.cta-buttons .btn-light-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.8);
    color: var(--white);

    padding: 0.9rem 2rem;
    border-radius: 30px;

    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* MOBILE */

@media (max-width: 768px) {

    .cta-section {
        padding: 60px 1rem;
    }

    .cta-container {
        padding: 15px;
        border-radius: 24px;
    }

    .cta-content {
        padding: 60px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============= FOOTER ============= */
.footer {
    background: #faebf1;
    color: var(--white);
    padding: 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ============= RESPONSIVE DESIGN ============= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row-reverse {
        direction: ltr;
    }

    .feature-row-highlight {
        grid-template-columns: 1fr;
    }

    .hero-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        font-weight: 500;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        font-weight: 500;
    }

    .hero {
        padding: 60px 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-row {
        gap: 2rem;
    }

    .feature-heading {
        font-size: 1.5rem;
    }
     
    .feature-heading-highlight{
        font-size: 1.5rem;
    }
     .feature-image-highlight{
        margin-bottom: 20px;
     }

    .feature-content-highlight {
    padding: 2rem;
     }
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step {
        padding: 1.5rem;
    }

      .carousel-container{
        overflow:hidden;
        padding:0;
    }

    .carousel-wrapper{
        overflow:hidden;
        padding:0;
    }

    .carousel-track{
        gap:8px !important;
        align-items:center;
    }

    .carousel-slide{
        min-width:32% !important;
        margin:0 !important;
        padding:0 !important;

        display:flex;
        justify-content:center;

        transition:0.3s ease;
    }

    .carousel-image{
        width:100%;
        max-width:120px;
        border-radius:18px;
    }

    .carousel-btn{
        width:36px;
        height:36px;
        font-size:14px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    /* HERO IMAGES */
    .hero-images{
        width:100%;
        height:auto;
        display:flex;
        justify-content:center;
        align-items:center;
        position:relative;

          margin-top:40px;
        padding-top:20px;
        padding-bottom:20px;
    }

    /* PHONE MOCKUP */
    .phone-mockup{
        width:170px;
        position:relative;
        padding:8px;
         margin-top:15px;
        margin-bottom:15px;
    }

    /* FIRST IMAGE */
    .phone-mockup-1{
        left:0;
          top:10px;

        transform:rotate(-8deg);
        z-index:2;
    }

    /* SECOND IMAGE */
    .phone-mockup-2{
        left:-30px;
        top:50px;

        transform:rotate(8deg);
        z-index:1;
    }

    /* PHONE FRAME */
    .phone-frame{
        width:100%;
        border-radius:28px;
        overflow:hidden;
    }

    /* IMAGE */
    .phone-image{
        width:100%;
        height:auto;
        object-fit:contain;
        display:block;
         padding-top:12px;
    padding-bottom:53px;

    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-links {
        font-size: 0.9rem;
        gap: 0.5rem;
        font-weight: 500;
    }

    .hero {
        padding: 40px 1rem;
    }

    .hero-title {
        font-size:  3.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-icon-large {
        font-size: 2rem;
    }

    .feature-heading {
        font-size: 1.5rem;
    }


    .carousel-container {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .carousel-slide {
        width: 100px;
        min-width: 100px;
    }

    /* .carousel-image {
        height: 160px;
    } */

    .cta-title {
        font-size: 1.4rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }

    .phone-mockup {
        width: 150px;
    }

    .hero-images {
        height: 250px;
    }

    .travelers-badge {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
        bottom: 10px;
    
    }

    .traveler-avatars {
        width: 100%;
    }

    .avatar {
        width: 30px;
        height: 30px;
    }
}

/* ============= ENHANCED ANIMATIONS ============= */

/* Stagger animation for cards */
.card-animate.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.card-animate.visible:nth-child(1) {
    animation-delay: 0s;
}

.card-animate.visible:nth-child(2) {
    animation-delay: 0.1s;
}

.card-animate.visible:nth-child(3) {
    animation-delay: 0.2s;
}

.card-animate.visible:nth-child(4) {
    animation-delay: 0.3s;
}

/* Section animations */
.section-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-animate.visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Interactive button animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn:active::before {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 300px;
        height: 300px;
    }
}

/* Feature cards enhanced hover */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

/* Badge animations */
.badge:hover .badge-emoji {
    animation: heartbeat 0.8s ease-in-out;
}

/* Smooth page transitions */
* {
    transition-property: color, background-color, border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Loading animation for images */
img {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Section subtitle animation */
.section-subtitle.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Title animations */
.hero-title .title-main,
.hero-title .title-accent {
    animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced step animations */
.step {
    position: relative;
}

.step.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.step:nth-child(1).fade-in-up {
    animation-delay: 0s;
}

.step:nth-child(2).fade-in-up {
    animation-delay: 0.1s;
}

.step:nth-child(3).fade-in-up {
    animation-delay: 0.2s;
}

.step:nth-child(4).fade-in-up {
    animation-delay: 0.3s;
}

/* Stat card animations */
.stat-card.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-card.fade-in-up:nth-child(1) {
    animation-delay: 0s;
}

.stat-card.fade-in-up:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card.fade-in-up:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card.fade-in-up:nth-child(4) {
    animation-delay: 0.3s;
}

/* Feature row animations */
.feature-row.fade-in-up,
.feature-row-highlight.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth scroll animations */
html {
    scroll-behavior: smooth;
}

/* Button ripple effect */
@keyframes buttonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(183, 0, 73, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(183, 0, 73, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(183, 0, 73, 0);
    }
}

.btn-primary:focus {
    animation: buttonPulse 0.6s ease-out;
}

/* Floating animation enhancements */
.float-animation,
.float-animation-delay {
    will-change: transform;
}




/* ===================================
   MOBILE HOW IT WORKS
=================================== */

@media (max-width:768px){

    .how-it-works{
        padding:60px 1.2rem;
    }

    .steps-container{
        grid-template-columns:1fr;
        gap:2.5rem;

        position:relative;
    }


    .step{
        position:relative;
        z-index:1;

        padding:0 1rem;
    }

    .step-number{
        width:75px;
        height:75px;

        margin:0 auto 1.2rem;
    }

    .step-number-inner{
        width:34px;
        height:34px;

        font-size:18px;
    }

    .step-title{
        font-size:1.25rem;
        margin-bottom:0.7rem;
    }

    .step-description{
        font-size:0.95rem;
        line-height:1.7;
    }
}
