/*
Theme Name:   boi-poka-theme
Template:     blankslate
*/
/*
  @Author : DigitalSalt
  @Project : Boi Poka
  @Dev : DigitalSalt Dev
  @Date : 18/04/2025;
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Quicksand', sans-serif;
    /* line-height: 1.6; */
    color: #333;
    overflow-x: hidden;
    background-color: #E7E7E7;
}
.status{
    background-color: #fff;
}
.status .status-content{
    height: 100%;
    margin-top: 79px;
    padding: 100px 20px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.status-content .title{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3399cc;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    }
    @keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    }
.status .header-container{
    justify-content: center;
}
.status .footer-main{
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 50px 0;
}
.status .footer-content{
    justify-content: center;
}
.status .footer-left{
    flex: none;
}
/* .status-body{
    text-align: center;
}
.status-body .img-wrap{
    width: 160px;
    height: 160px;
    margin: 0 auto 1.2rem;
}
.status-body .img-wrap img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.status-body .btn{
    all: unset;
    font-size: 18px;
    line-height: 16px;
    padding-bottom: 6px;
    font-weight: 700;
    text-transform: lowercase;
    cursor: pointer;
    border: 1px solid #000;
    border-left: none;
    border-right: none;
    margin: 1.2rem 0;
} */


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* AOS */
[data-aos="fade-up"] {
  transform: translateY(10px) !important;
  transition-property: transform, opacity;
}

[data-aos="fade-up"].aos-animate {
    transform: translateX(0) !important;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.6s ease;
}

.header.bg-sticky {
    background-color: rgba(8,11,20,0.6);
    background-color: #e7e7e7;
    box-shadow: 0px 2px 0px rgba(0,0,0,0.06);
    position: fixed;
    margin-top: 0;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1001;
}

.poka-logo {
    height: 39px;
    width: 39px;
}

.boipoka-text {
    height: 12px;
    width: auto;
}

.logo-link{
    position: absolute;
    inset: 0;
}

/* Mobile Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Animation - Active State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Navigation */
.navigation {
    margin-right: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #333;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #666;
}
/* Active nav link styling */
.nav-link.active {
    color: #666666;
    font-weight: 600;
}

.nav-separator {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    color: #333;
    font-weight: 400;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    /* padding: 50px 0 30px; */
    background-color: #E7E7E7;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    /* position: relative; */
    z-index: 10;
    position: absolute;
    /* left: calc(100% - (1200px / 16)); */
    left: 5%;
    bottom: 2rem;

}

/* Hero Content Left */
.hero-content {
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* gap: 25px; */
}

.hero-vector {
    /* width: 1276px; */
    /* width: 100vw; */
    width: 100%;
}

/* Updated Hero Logo Arrangement - Desktop Default */
.hero-logo-arrangement {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-boi-text,
.hero-poka-text {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 60px;
    z-index: 2;
}

.hero-boi-text {
    margin-right: 10px;
}

.hero-poka-text {
    margin-left: 30px;
}

.hero-poka {
    height: 60px;
    width: auto;
    margin: 0 5px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #333;
    margin: 0;
    text-align: left;
    margin: 34px 0 20px;
}

.hero-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #333;
    margin: 0;
    text-align: left;
    max-width: 569px;
}

/* Pronunciation Section */
.pronunciation-section {
    width: max-content;
    max-width: 1300px;
    margin: 60px auto 0 0;
    display: flex;
    justify-content: start;
    gap: 30px;
    align-items: start;
}

/* Pronunciation Column */
.pronunciation-column {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Separators between columns */
.pronunciation-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12.5px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #CCCCCC;
    z-index: 1;
}


.pronunciation-label {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    min-width: 80px;
    flex-shrink: 0;
}

.pronunciation-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 2px;
} */



/* Tablet Responsive - 1024px */
@media (max-width: 1024px) {
    .hero-boi-text,
    .hero-poka-text {
        /* font-size: 42px; */
        letter-spacing: 50px;
    }

    .hero-boi-text {
        margin-right: 8px;
    }

    .hero-poka-text {
        margin-left: 25px;
    }

    .hero-poka {
        height: 55px;
        margin: 0 4px;
    }

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

    .pronunciation-section {
        gap: 20px;
    }

    .pronunciation-column:not(:last-child)::after {
        right: -10px;
    }
}

/* Tab Responsive - 769px -1024px */
@media only screen and (min-width: 769px) and (max-width: 1024px){
  .hero{
    min-height: max-content;
  }
  .hero-background{
        position: static;
    margin-left: auto;
    height: revert;
    width: 100%;
    margin-top: -5rem;
    margin-bottom: -5.5rem;
  }
	.hero-background img {
    width: 100%;
}
  .hero-container{
    left: 0;
  }
  .hero-boi-text,.hero-poka-text{
    font-size: 5rem;
  }
  .hero-content{
    max-width: 60%;
  }
}
/* Mobile Responsive - 768px */
@media (max-width: 768px) {
    .header {
        position: fixed;
        transition: all 0.9s ease;
        background-color: #e7e7e7;
        /* box-shadow: 0px 2px 0px rgba(0,0,0,0.06); */
    }

    .header-container {
        padding: 0 15px;
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }

    .logo {
        gap: 8px;
    }

    .poka-logo {
        height: 25px;
    }

    .boipoka-text {
        height: 10px;
        transition: opacity 0.3s ease;
    }

    /* Hide BoiPoka text when mobile menu is active */
    .mobile-menu-toggle.active ~ nav ~ .mobile-menu-overlay,
    .navigation.active ~ .mobile-menu-overlay {
        display: block;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Full Screen Mobile Navigation */
    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        margin-right: 0;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0;
        height: auto;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 300px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    .nav-menu li:first-child {
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 25px 20px;
        font-size: 16px;
        font-weight: 600;
        width: 100%;
        color: #333;
        text-align: center;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nav-link:hover {
        color: #666;
        background-color: #f8f8f8;
    }

    .nav-link.active {
        color: #666666;
        font-weight: 700;
        background-color: #f0f0f0;
    }

    /* Hide separators on mobile */
    .nav-separator {
        display: none;
    }

    /* Mobile Menu Overlay - Remove as we're using full screen */
    .mobile-menu-overlay {
        display: none;
    }

    /* Hamburger button stays on top */
    .mobile-menu-toggle {
        position: relative;
        z-index: 1001;
    }

    /* Logo stays on top */
    .logo {
        position: relative;
        z-index: 1001;
    }

    /* Header container adjustments */
    .header-container {
        position: relative;
        z-index: 1000;
    }

    .hero {
      min-height: max-content;
      padding: 140px 0 40px;
    }
    .hero-container{
        position: static;
    }

    .hero-background {
        display: none !important;
        width: 100%;
        opacity: 0.3;
        position: static;
        inset: 0;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
        background: rgba(231, 231, 231, 0.9);
        padding: 25px 0;
        border-radius: 15px;
        margin: 0 15px;
    }

    /* Mobile Hero Logo */
    .hero-logo-arrangement {
        gap: 5px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-boi-text,
    .hero-poka-text {
        font-size: 2rem;
        letter-spacing: 30px;
    }

    .hero-boi-text {
        margin-right: 5px;
    }

    .hero-poka-text {
        margin-left: 15px;
    }

    .hero-poka {
        height: 45px;
        margin: 0 2px;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    /* Mobile Pronunciation Section - Stacked Layout */
    .pronunciation-section {
        /* grid-template-columns: 1fr; */
        gap: 20px;
        /* text-align: center; */
        text-align: left;
        padding: 0 15px;
        flex-direction: column;
        margin-top: 40px;
    }

    .pronunciation-column:not(:last-child)::after {
        display: none;
    }

    .pronunciation-column {
        border-bottom: 1px solid #CCCCCC;
        padding-bottom: 15px;
    }

    .pronunciation-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .pronunciation-item {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;
    }

    .pronunciation-label {
        min-width: auto;
        text-align: center;
    }

    .pronunciation-text {
        text-align: center;
    }

    .pronunciation-detail {
        text-align: center;
        margin-bottom: 8px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .mobile-menu-toggle {
        width: 22px;
        height: 16px;
    }

    .nav-menu {
        max-width: 280px;
    }

    .nav-link {
        padding: 20px 15px;
        font-size: 15px;
    }

    .poka-logo {
        height: 35px;
    }

    .boipoka-text {
        height: 10px;
    }

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

    .hero-boi-text,
    .hero-poka-text {
        font-size: 1.2rem;
        letter-spacing: 20px;
    }

    .hero-boi-text {
        margin-right: 3px;
    }

    .hero-poka-text {
        margin-left: 10px;
    }

    .hero-poka {
        height: 40px;
        margin: 0 1px;
    }

    .hero-description {
        font-size: 11px;
    }

    .pronunciation-section {
        gap: 15px;
        padding: 0 10px;
    }

    .pronunciation-column {
        padding-bottom: 12px;
    }

    .pronunciation-label,
    .pronunciation-text {
        font-size: 11px;
    }

    .pronunciation-detail {
        margin-bottom: 6px;
    }
}

/* Large Desktop - 1400px+ */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 80%;
        width: 100%;
        /* gap: 30px; */
    }

    .hero-logo-arrangement {
        gap: 20px;
    }

    .hero-boi-text,
    .hero-poka-text {
        /* font-size: 80px; */
        /* font-size: 95px; */
        letter-spacing: 100px;
        z-index: 2;
    }

    .hero-boi-text {
        margin-right: 15px;
    }

    .hero-poka-text {
        margin-left: 50px;
    }

    .hero-poka {
        height: 100px;
        margin: 0 8px;
    }

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

    .pronunciation-section {
        gap: 35px;
    }

    .pronunciation-column:not(:last-child)::after {
        right: -17.5px;
    }

    .pronunciation-label,
    .pronunciation-text,
    .pronunciation-detail {
        font-size: 13px;
    }
}
.what-makes-special {
    background-color: #FFFFFF;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.what-makes-special .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header - Updated to left align */
.section-header {
    text-align: left;
    margin-bottom: 80px;
}

/* Updated Title - Left aligned, Playfair Display 48px, weight 400, color #000000 */
.what-makes-special .section-title {
    font-family: 'Playfair Display', serif;
    text-align: left;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Updated Subtitle - Left aligned, italic, color #000000 */
.what-makes-special .section-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    max-width: 600px;
}

/* Features Grid */
.what-makes-special .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: flex-start;
}

/* Feature Column - Updated structure */
.feature-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    max-width: max-content;
}

/* Feature Visual Container - Alphabet letter in background, poka image on top, letter below image */
.feature-visual {
    position: relative;
    /* width: 200px; */
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

/* Alphabet Letter - absolutely positioned in background */
.alphabet-letter {
    position: absolute;
    top: 20%;
    transform: translateY(-55%);
    font-family: 'Quicksand', sans-serif;
    font-size: 200px;
    font-weight: 700;
    color: #E1E1E1;
    line-height: 1;
    user-select: none;
    z-index: 1;
    pointer-events: none;
    text-align: left;
    margin: 0;
}

/* Poka Image - positioned above alphabet letter */
.poka-image {
    position: relative;
    z-index: 2;
    width: 120px;
    height: auto;
    object-fit: contain;
    display: block;
    bottom: -40px;
}

/* Feature Title - Quicksand, weight 700, color #000000 */
.feature-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-align: center;
}

/* Updated Feature Description - Color #000000 */
.feature-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    max-width: 164px;
    text-align: left;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .what-makes-special {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .what-makes-special .section-title {
        font-size: 42px;
    }

    .what-makes-special .section-subtitle {
        font-size: 15px;
    }

    /* Updated grid - 2 columns on tablet */
    .what-makes-special .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 0;
    }

    .feature-visual {
        /* width: 180px; */
        height: 140px;
        margin-bottom: 36px;
    }

    .alphabet-letter {
        font-size: 180px;
    }

    .poka-image {
        width: 100px;
        bottom: -20px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .what-makes-special {
        padding: 50px 0;
    }

    .what-makes-special .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .what-makes-special .section-title {
        font-size: 36px;
    }

    .what-makes-special .section-subtitle {
        font-size: 14px;
    }

    /* Updated grid - 1 column on mobile */
    .what-makes-special .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-column{
        align-items: center;
    }

    .feature-visual {
        /* width: 160px; */
        height: 120px;
        margin-bottom: 30px;
    }

    .alphabet-letter {
        font-size: 160px;
        margin-bottom: 20px;
    }

    .poka-image {
        width: 90px;
        bottom: -20px;
    }

    .feature-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 11px;
        max-width: 300px;
        text-align: center;
    }
    .feature-description br{
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .what-makes-special {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .what-makes-special .section-title {
        font-size: 30px;
    }

    .what-makes-special .section-subtitle {
        font-size: 13px;
    }

    /* .what-makes-special .features-grid {
        gap: 35px;
    } */

    .feature-visual {
        /* width: 140px; */
        height: 110px;
    }

    .alphabet-letter {
        font-size: 140px;
        margin-bottom: 18px;
    }

    .poka-image {
        width: 80px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 11px;
        line-height: 1.5;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .what-makes-special {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 100px;
    }

    .what-makes-special .section-title {
        font-size: 52px;
    }

    .what-makes-special .section-subtitle {
        font-size: 16px;
    }

    .feature-visual {
        /* width: 220px; */
        height: 160px;
        margin-bottom: 60px;
    }

    .alphabet-letter {
        font-size: 220px;
    }

    .poka-image {
        width: 130px;
        bottom: -45px;
    }

    .feature-title {
        font-size: 24px;
        margin-bottom: 18px;
        width: 100%;
        text-align: left;
    }

    .feature-description {
        font-size: 12px;
    }
}
/* Section 3: Feature Section */
.feature-section {
    background-color: #E7E7E7;
    min-height: 100vh;
    display: flex;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

/* Left Image */
.feature-left {
    flex: 1;
    position: relative;
    overflow: hidden;
    max-width: 38rem;
    width: 100%;
}

.man-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Center Content */
.feature-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 140px 60px 80px;
    position: relative;
    max-width: 25rem;
}

.feature-center::before,
.feature-center::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #000;
    left: 0;
    top: 0;
}
.feature-center::after{
    left: auto;
    right: 0;
}

/* Navigation Arrows - Updated Design */
.slider-arrows {
    position: absolute;
    top: 10rem;
    transform: translateY(-50%);
    left: -40px;
    right: -40px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-arrow {
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
    padding: 0;
}

.slider-arrow::before {
    content: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #666;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.slider-arrow::after{
    content: '';
    background: url('../boipoka-theme/assets/right-arrow.png') center no-repeat;
    background-size: contain;
    position: absolute;
    width: 12px;
    height: 12px;
    /* border: 2px solid #666;
    border-top: none;
    border-right: none; */
    /* transform: rotate(45deg); */
    transition: all 0.3s ease;
}

.slider-arrow.left-arrow::after {
    transform: rotate(-180deg);
}
.slider-arrow.right-arrow::before {
    transform: rotate(-135deg);
}

.slider-arrow:hover::before {
    border-color: #333;
    transform: rotate(45deg) scale(1.1);
}

.slider-arrow.right-arrow:hover::before {
    transform: rotate(-135deg) scale(1.1);
}

.slider-arrow:active::before {
    transform: rotate(45deg) scale(0.9);
}

.slider-arrow.right-arrow:active::before {
    transform: rotate(-135deg) scale(0.9);
}

/* Remove text content from arrows */
.slider-arrow {
    font-size: 0;
    color: transparent;
}

/* Slider Pagination */
.slider-pagination {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    z-index: 5;
}

.pagination-number {
    font-family: 'Quicksand', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #CECACA;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.pagination-number.active {
    color: #787878;
    transform: scale(1.05);
}

.pagination-number:hover {
    color: #787878;
}

/* Feature Content with Swiper.js - Performance optimized */
.feature-swiper {
    width: 100%;
    height: auto;
    overflow: visible;
    /* Performance improvements */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.feature-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* Prevent layout shifts */
    box-sizing: border-box;
    backface-visibility: hidden;
}

.feature-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Smooth transitions */
    opacity: 1;
    transition: opacity 0.3s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Hide Swiper's default pagination and navigation */
.feature-swiper .swiper-pagination {
    display: none !important;
}

.feature-swiper .swiper-button-next,
.feature-swiper .swiper-button-prev {
    display: none !important;
}

.feature-content-wrapper {
    max-width: 400px;
    width: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 40px;
    opacity: 1;
    transition: opacity 0.4s ease;
    /* Prevent content jumping */
    box-sizing: border-box;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.feature-content-wrapper.fade-out {
    opacity: 0;
}

.feature-content-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    text-align: left;
    line-height: 1.3;
    transition: opacity 0.4s ease;
}

.feature-content-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 400;
    max-width: 164px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    transition: opacity 0.4s ease;
}

/* Right Image - Mobile Mockup Container */
.feature-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: end;
    /* padding: 0 40px; */
    position: relative;
    max-width: 30rem;
}
.feature-right .swiper-slide{
    height: 35rem;
}

.feature-right .img-wrap img{
    height: 100%;
}
.feature-right .img-wrap{
    height: 100%;
    max-width: 40rem;
    width: 100%;
    text-align: center;
}

/* Mobile Frame - Anti-flicker improvements */
.mobile-mockup {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.25s ease-out;
    /* Prevent image jumping and flickering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: opacity;
}

.mobile-mockup.fade-out {
    opacity: 0;
}

/* Auto-slide pause indicator */
.feature-section.paused .slider-pagination {
    opacity: 0.8;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .feature-content-wrapper{
        align-items: center;
    }

    .feature-content-description{
        text-align: center;
    }

    .feature-section {
        min-height: auto;
        padding: 60px 0;
        justify-content: flex-end;
        flex-direction: column-reverse;
        align-items: center;
    }

    .feature-left {
        height: 60vh;
    }

    .man-image {
        height: 60vh;
    }

    .feature-center {
        padding: 60px 40px;
    }

    .slider-arrows {
        left: -80px;
        right: -80px;
    }

    /* .slider-arrow {
        width: 50px;
        height: 50px;
    } */

    .slider-arrow::before {
        width: 18px;
        height: 18px;
    }

    .slider-pagination {
        gap: 15px;
        margin-bottom: 40px;
    }

    .pagination-number {
        font-size: 32px;
    }

    .feature-content-title {
        font-size: 22px;
        text-align: center;
    }

    .mobile-mockup {
        max-width: 250px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px){
  .feature-left {
        display: none;
    }
    .feature-center::before,.feature-center::after{
      content: none;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
        background-color: #F5F5F5;
        padding: 2rem 0;
    }

    /* Hide man image on mobile */
    .feature-left {
        display: none;
    }
    .feature-right{
        max-width: initial;
    }
    .feature-right .img-wrap{
        max-width: initial;
    }
    .feature-right .swiper-slide{
    height: 25rem;
}

    /* Mobile mockup comes first and is more prominent */
    /* .feature-right {
        order: -1;
        padding: 30px 20px 20px;
        background-color: #F5F5F5;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    } */

    .mobile-mockup {
        max-width: 280px;
        width: 80%;
        height: auto;
        filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    }

    /* Center content comes after mobile image */
    .feature-center {
        order: 1;
        max-width: 100%;
        padding: 40px 20px 60px;
        align-items: center;
        text-align: center;
        background-color: #F5F5F5;
    }

    .feature-center::before,.feature-center::after{
    content: none;
}

    /* Hide arrows on mobile */
    .slider-arrows {
        display: none;
    }

    .slider-pagination {
        justify-content: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .pagination-number {
        font-size: 28px;
    }

    .feature-content-wrapper {
        max-width: 100%;
        align-items: center;
    }

    .feature-content-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .feature-content-description {
        font-size: 11px;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* .feature-right {
        padding: 30px 15px 10px;
    } */

    .mobile-mockup {
        max-width: 250px;
        width: 55%;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    }

    .feature-center {
        padding: 17px 42px 14px;
    }

    .slider-pagination {
        gap: 10px;
        margin-bottom: 25px;
    }

    .pagination-number {
        font-size: 24px;
    }

    .feature-content-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-content-description {
        font-size: 11px;
        line-height: 1.5;
        max-width: 300px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    /* .feature-center {
        padding: 100px 80px;
    } */

    /* .slider-arrows {
        left: -120px;
        right: -120px;
    } */

    /* .slider-arrow {
        width: 70px;
        height: 70px;
    } */

    /* .slider-arrow::before {
        width: 24px;
        height: 24px;
    } */

    /* .slider-pagination {
        gap: 25px;
        margin-bottom: 60px;
    } */

    .pagination-number {
        font-size: 40px;
    }

    .feature-content-wrapper {
        max-width: 450px;
    }

    .feature-content-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .feature-content-description {
        /* font-size: 13px; */
        line-height: 1.7;
    }

    /* .mobile-mockup {
        max-width: 270px;
    } */
}
/* Section 4: Find your reading tribe */
.reading-tribe-section {
    background-color: #494949;
    height: 681px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
}

.reading-tribe-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Section Header */
.tribe-header {
    text-align: center;
    margin-bottom: 80px;
}

.tribe-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #BCBCBC;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.tribe-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #D9D9D9;
    margin: 0;
    line-height: 1.4;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Tribe Features Grid */
.tribe-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* Tribe Feature Column */
.tribe-feature-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Tribe Icon Container */
.tribe-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tribe-feature-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Tribe Feature Title */
.tribe-feature-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #D9D9D9;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

/* Tribe Feature Description */
.tribe-feature-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #919191;
    line-height: 1.6;
    margin: 0;
    max-width: 250px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .reading-tribe-section {
        height: auto;
        min-height: 600px;
        padding: 60px 0;
    }

    .tribe-header {
        margin-bottom: 60px;
    }

    .tribe-title {
        font-size: 42px;
    }

    .tribe-subtitle {
        font-size: 15px;
        max-width: 600px;
    }

    .tribe-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        row-gap: 60px;
    }

    .tribe-feature-icon {
        width: 70px;
        height: 70px;
    }

    .tribe-icon {
        margin-bottom: 25px;
    }

    .tribe-feature-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .tribe-feature-description {
        font-size: 11px;
        max-width: 280px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reading-tribe-section {
        height: auto;
        min-height: auto;
        padding: 50px 0;
    }

    .reading-tribe-section .container {
        padding: 0 15px;
    }

    .tribe-header {
        margin-bottom: 50px;
    }

    .tribe-title {
        font-size: 36px;
    }

    .tribe-subtitle {
        font-size: 14px;
        max-width: 500px;
    }

    .tribe-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tribe-feature-column {
        max-width: 350px;
        margin: 0 auto;
    }

    .tribe-feature-icon {
        width: 60px;
        height: 60px;
    }

    .tribe-icon {
        margin-bottom: 20px;
    }

    .tribe-feature-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .tribe-feature-description {
        font-size: 11px;
        line-height: 1.5;
        max-width: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .reading-tribe-section {
        padding: 40px 0;
    }

    .tribe-header {
        margin-bottom: 40px;
    }

    .tribe-title {
        font-size: 30px;
    }

    .tribe-subtitle {
        font-size: 13px;
        max-width: 400px;
    }

    .tribe-features-grid {
        gap: 35px;
    }

    .tribe-feature-column {
        max-width: 300px;
    }

    .tribe-feature-icon {
        width: 55px;
        height: 55px;
    }

    .tribe-icon {
        margin-bottom: 18px;
    }

    .tribe-feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .tribe-feature-description {
        font-size: 10px;
        line-height: 1.4;
        max-width: 280px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .reading-tribe-section {
        height: 750px;
        padding: 100px 0;
    }

    .tribe-header {
        margin-bottom: 100px;
    }

    .tribe-title {
        font-size: 52px;
    }

    .tribe-subtitle {
        font-size: 18px;
        max-width: 800px;
    }

    .tribe-features-grid {
        gap: 50px;
    }

    .tribe-feature-icon {
        width: 90px;
        height: 90px;
    }

    .tribe-icon {
        margin-bottom: 35px;
    }

    .tribe-feature-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .tribe-feature-description {
        font-size: 13px;
        max-width: 280px;
        line-height: 1.7;
    }
}
/* Section 5: Community */
.community-section {
    background-color: #49494917;
    height: 769px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0;
}

.community-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
}

.community-header {
    text-align: left;
    margin-bottom: 80px;
}

.community-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.community-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* Community Cards Container - Desktop Grid */
.community-cards-container {
    width: 100%;
    overflow: hidden;
}

/* Community Cards Grid - Desktop */
.community-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    width: 100%;
}

/* Community Card */
.community-card {
    width: 213px;
    height: 381px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0; /* Important for swipe functionality */
}

.community-card:hover {
    transform: translateY(-5px);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.community-post-image {
    /* width: 90%; */
    height: 100%;
    /* object-fit: cover;
    object-position: center; */
}

/* Card Stats */
.card-stats {
    padding: 15px;
    height: 61px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eye-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.view-count {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    line-height: 1;
}

/* Post Date */
.post-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    line-height: 1;
    margin-top: 5px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .community-section {
        height: auto;
        min-height: 700px;
        padding: 60px 0;
    }

    .community-header {
        margin-bottom: 40px;
    }

    .community-title {
        font-size: 42px;
    }

    .community-subtitle {
        font-size: 15px;
    }

    /* Switch to 3 columns on tablet */
    .community-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        justify-content: center;
    }

    .community-card {
        width: 200px;
        height: 360px;
    }

    .card-image {
        height: 300px;
    }

    .card-stats {
        height: 60px;
        padding: 12px;
    }

    .view-count {
        font-size: 15px;
    }

    .post-date {
        font-size: 11px;
    }
}

/* Mobile Responsive - Swipable Cards */
@media (max-width: 768px) {
    .community-section {
        height: auto;
        min-height: auto;
        padding: 50px 0;
    }

    .community-section .container {
        padding: 0 0 0 15px; /* Remove right padding for full-width scroll */
    }

    .community-header {
        margin-bottom: 30px;
        padding-right: 15px; /* Add padding back to header text */
    }

    .community-title {
        font-size: 36px;
    }

    .community-subtitle {
        font-size: 14px;
    }

    /* Mobile Swipable Container */
    .community-cards-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        padding-bottom: 10px; /* Space for shadow */
    }

    /* Hide scrollbar for Chrome, Safari */
    .community-cards-container::-webkit-scrollbar {
        display: none;
    }

    /* Mobile Grid - Horizontal scroll */
    .community-cards-grid {
        display: flex;
        gap: 20px;
        width: max-content;
        padding-right: 15px; /* Add padding to last item */
    }

    .community-card {
        width: 300px;
        height: 400px;
        /* background: #FFFFFF; */
        /* border-radius: 12px; */
        /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
        flex-shrink: 0;
    }

    .community-card:hover {
        transform: none; /* Disable hover on mobile */
    }

    .card-image {
        height: 330px;
    }

    .card-stats {
        height: 50px;
        /* padding: 15px; */
        border-radius: 0 0 12px 12px;
    }

    .eye-icon {
        width: 18px;
        height: 18px;
    }

    .view-count {
        font-size: 16px;
    }

    .post-date {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .community-section {
        padding: 40px 0;
    }

    .community-header {
        margin-bottom: 25px;
    }

    .community-title {
        font-size: 30px;
        line-height: 1.1;
    }

    .community-subtitle {
        font-size: 13px;
    }

    .community-cards-grid {
        gap: 15px;
    }

    .community-card {
        width: 220px;
        height: 370px;
    }

    .card-image {
        height: 300px;
    }

    .card-stats {
        height: 30px;
        padding: 12px;
    }

    .eye-icon {
        width: 16px;
        height: 16px;
    }

    .view-count {
        font-size: 14px;
    }

    .post-date {
        font-size: 11px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .community-section {
        /* height: 850px; */
        padding: 100px 0;
    }

    .community-header {
        margin-bottom: 40px;
    }

    .community-title {
        font-size: 52px;
    }

    .community-subtitle {
        font-size: 18px;
    }

    .community-cards-grid {
        gap: 30px;
    }

    .community-card {
        width: 220px;
        height: 395px;
    }

    .card-image {
        height: 330px;
    }

    .card-stats {
        height: 65px;
        padding: 16px;
    }

    .eye-icon {
        width: 22px;
        height: 22px;
    }

    .view-count {
        font-size: 17px;
    }

    .post-date {
        font-size: 13px;
    }
}

/* Swipe Indicator Styles - Optional visual cue */
@media (max-width: 768px) {
    .community-cards-container::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(73, 73, 73, 0.1) 100%);
        pointer-events: none;
        z-index: 1;
    }
}
/* Section 6: Call to Action */
.cta-section-main {
    background-color: #FFFFFF;
    padding: 80px 0;
    position: relative;
}

.cta-section-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Header */
.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* App Store Buttons */
.app-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.store-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.store-button-image {
    height: 95px;
    width: auto;
    object-fit: contain;
}

/* Footer */
.footer-main {
    background-color: #FFFFFF;
    padding: 60px 0 40px;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Content */
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

/* Footer Left */
.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 2;
}

.footer-poka {
    flex-shrink: 0;
    position: relative;
}

.footer-poka-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer-text {
    flex: 1;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.footer-description {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* Footer Separator */
.footer-separator {
    width: 1px;
    height: 100px;
    background-color: #E0E0E0;
    flex-shrink: 0;
}

/* Footer Middle */
.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.footer-section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.footer-contact-email,
.footer-contact-location {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-top: 2.4rem;
}

.footer-link {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #666666;
    text-decoration: underline;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .cta-section-main {
        padding: 60px 0;
    }

    .cta-header {
        margin-bottom: 50px;
    }

    .cta-title {
        font-size: 42px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .app-store-buttons {
        gap: 15px;
    }

    .store-button-image {
        height: 80px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-left {
        gap: 15px;
    }

    .footer-poka-image {
        width: 70px;
        height: 70px;
    }

    .footer-heading {
        font-size: 28px;
    }

    .footer-description {
        font-size: 15px;
    }

    .footer-separator {
        height: 80px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-section-main {
        padding: 50px 0;
    }

    .cta-section-main .container {
        padding: 0 15px;
    }

    .cta-header {
        margin-bottom: 40px;
    }

    .cta-title {
        font-size: 36px;
        line-height: 1.1;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .app-store-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .store-button-image {
        height: 60px;
    }

    .footer-main {
        padding: 40px 0 25px;
    }

    .footer-main .container {
        padding: 0 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .footer-poka-image {
        width: 60px;
        height: 60px;
    }

    .footer-heading {
        font-size: 24px;
        text-align: center;
    }

    .footer-description {
        font-size: 14px;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-separator {
        display: none;
    }

    .footer-middle {
        text-align: center;
        align-items: center;
    }

    .footer-right {
        text-align: center;
        align-items: center;
        gap: 12px;
        margin-top: 1.4rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cta-section-main {
        padding: 40px 0;
    }

    .cta-header {
        margin-bottom: 35px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 13px;
    }

    /* .store-button-image {
        height: 45px;
    } */

    .footer-main {
        padding: 35px 0 20px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-left {
        gap: 12px;
    }

    .footer-poka-image {
        width: 55px;
        height: 55px;
    }

    .footer-heading {
        font-size: 22px;
    }

    .footer-description {
        font-size: 13px;
        max-width: 350px;
    }

    .footer-section-title {
        font-size: 13px;
    }

    .footer-contact-email,
    .footer-contact-location,
    .footer-link {
        font-size: 13px;
    }

    .footer-right {
        gap: 10px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .cta-section-main {
        padding: 100px 0;
    }

    .cta-header {
        margin-bottom: 80px;
    }

    .cta-title {
        font-size: 52px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .app-store-buttons {
        gap: 25px;
    }

    /* .store-button-image {
        height: 65px;
    } */

    .footer-main {
        padding: 80px 0 50px;
    }

    /* .footer-content {
        gap: 80px;
    } */

    .footer-left {
        gap: 25px;
    }

    .footer-poka-image {
        width: 90px;
        height: 90px;
    }

    .footer-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 17px;
    }

    .footer-separator {
        height: 120px;
    }

    .footer-section-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer-contact-email,
    .footer-contact-location,
    .footer-link {
        font-size: 15px;
    }

    /* .footer-right {
        gap: 18px;
    } */
}
/* Terms & Conditions Page Styles */
.terms-content {
    background-color: #FFFFFF;
    padding: 80px 0;
    min-height: 70vh;
}

.terms-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Terms Header */
.terms-header {
    text-align: center;
    margin-bottom: 60px;
}

.terms-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.2;
}

/* Terms Body */
.terms-body {
    max-width: 100%;
    margin-bottom: 40px;
}

/* Last Updated Section */
.terms-last-updated {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #E0E0E0;
    margin-top: 40px;
}

.terms-last-updated-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.terms-last-updated-date {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.3;
}

/* Ordered List Styling */
.terms-list {
    counter-reset: terms-counter;
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-item {
    margin-bottom: 35px;
    position: relative;
    counter-increment: terms-counter;
}

.terms-item:last-child {
    margin-bottom: 0;
}

.terms-item::before {
    content: counter(terms-counter) ".";
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #666666;
    position: absolute;
    left: -25px;
    top: 0;
    width: 20px;
}

/* Terms Item Title */
.terms-item-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Terms Item Description */
.terms-item-description {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 8px 0;
    text-align: justify;
}

.terms-item-description:last-child {
    margin-bottom: 0;
}

/* Sub-section Styling */
.terms-sub-section {
    margin-bottom: 15px;
}

.terms-sub-section:last-child {
    margin-bottom: 0;
}

.terms-sub-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

/* Sub-list Styling */
.terms-sub-list {
    margin: 0 0 8px 0;
    padding-left: 20px;
    list-style: none;
}

.terms-sub-list:last-child {
    margin-bottom: 0;
}

.terms-sub-list li {
    font-family: 'Quicksand', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    text-align: justify;
}

.terms-sub-list li:last-child {
    margin-bottom: 0;
}

.terms-sub-list li::before {
    content: "•";
    color: #666666;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

/* Bold text within list items */
.terms-sub-list li strong {
    font-weight: 600;
    color: #000000;
}

/* Email Link Styling */
.terms-email-link {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-email-link:hover {
    color: #333333;
    text-decoration: underline;
}

/* Active nav link styling */
.nav-link.active {
    color: #666666;
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .terms-content {
        padding: 120px 2rem;
    }

    .terms-header {
        margin-bottom: 50px;
    }

    .terms-title {
        font-size: 42px;
    }

    .terms-body {
        margin-bottom: 35px;
    }

    .terms-last-updated {
        padding: 25px 0;
        margin-top: 35px;
    }

    .terms-last-updated-title {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .terms-last-updated-date {
        font-size: 13px;
    }

    .terms-item {
        margin-bottom: 30px;
    }

    .terms-item::before {
        font-size: 13px;
        left: -23px;
    }

    .terms-item-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .terms-item-description {
        font-size: 12px;
    }

    .terms-sub-title {
        font-size: 12px;
    }

    .terms-sub-list li {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .terms-sub-section {
        margin-bottom: 12px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .terms-content {
        padding: 115px 0 40px;
    }

    .terms-content .container {
        padding: 0 15px;
    }

    .terms-header {
        margin-bottom: 40px;
    }

    .terms-title {
        font-size: 36px;
        line-height: 1.1;
    }

    .terms-body {
        margin-bottom: 30px;
    }

    .terms-last-updated {
        padding: 20px 0;
        margin-top: 30px;
    }

    .terms-last-updated-title {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .terms-last-updated-date {
        font-size: 12px;
    }

    .terms-item {
        margin-bottom: 25px;
        padding-left: 25px;
    }

    .terms-item::before {
        font-size: 12px;
        left: 0;
        width: 20px;
    }

    .terms-item-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .terms-item-description {
        font-size: 11px;
        text-align: left;
    }

    .terms-sub-title {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .terms-sub-list {
        padding-left: 15px;
    }

    .terms-sub-list li {
        font-size: 11px;
        margin-bottom: 6px;
        text-align: left;
    }

    .terms-sub-list li::before {
        left: -12px;
    }

    .terms-sub-section {
        margin-bottom: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .terms-header {
        margin-bottom: 35px;
    }

    .terms-title {
        font-size: 30px;
    }

    .terms-body {
        margin-bottom: 25px;
    }

    .terms-last-updated {
        padding: 18px 0;
        margin-top: 25px;
    }

    .terms-last-updated-title {
        font-size: 9px;
        margin-bottom: 4px;
    }

    .terms-last-updated-date {
        font-size: 11px;
    }

    .terms-item {
        margin-bottom: 20px;
        padding-left: 22px;
    }

    .terms-item::before {
        font-size: 11px;
        width: 18px;
    }

    .terms-item-title {
        font-size: 11px;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .terms-item-description {
        font-size: 10px;
        line-height: 1.5;
    }

    .terms-sub-title {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .terms-sub-list li {
        font-size: 10px;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .terms-sub-list li::before {
        left: -10px;
    }

    .terms-sub-section {
        margin-bottom: 8px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .terms-content {
        padding: 100px 0;
    }

    .terms-content .container {
        max-width: 900px;
    }

    .terms-header {
        margin-bottom: 80px;
    }

    .terms-title {
        font-size: 52px;
    }

    .terms-body {
        margin-bottom: 50px;
    }

    .terms-last-updated {
        padding: 35px 0;
        margin-top: 50px;
    }

    .terms-last-updated-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .terms-last-updated-date {
        font-size: 15px;
    }

    .terms-item {
        margin-bottom: 40px;
    }

    .terms-item::before {
        font-size: 15px;
        left: -28px;
    }

    .terms-item-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .terms-item-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .terms-sub-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .terms-sub-list li {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.7;
    }

    .terms-sub-section {
        margin-bottom: 18px;
    }
}