/* ========== CSS VARIABLES (Light Theme Default) ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #111111;
    --primary-rgb: 0, 0, 0;
    --secondary: #bab9b7;
    --secondary-rgb: 186, 185, 183;
    --text-dark: #2C2C2C;
    --text-light: #403f3f;
    --white: #FFFFFF;
    --black: #111111;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F9F9F9;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 20px 35px rgba(0, 0, 0, 0.1);
    --card-bg: #FFFFFF;
    --footer-bg: #FFFFFF;
    --gradient-start: #111111;
    --gradient-end: #bab9b7;
    --logo-filter: none;
}

/* ========== DARK THEME ========== */
[data-theme="dark"] {
    --primary: #ffffff;
    --primary-rgb: 255, 255, 255;
    --secondary: #9e9c99;
    --secondary-rgb: 158, 156, 153;
    --text-dark: #EDEDED;
    --text-light: #dbd9d9;
    --white: #111111;
    --black: #EDEDED;
    --bg-white: #111111;
    --bg-offwhite: #1A1A1A;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 20px 35px rgba(0, 0, 0, 0.4);
    --card-bg: #1E1E1E;
    --footer-bg: #0A0A0A;
    --gradient-start: #ffffff;
    --gradient-end: #9e9c99;
    --logo-filter: brightness(0) invert(1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: background-color 0.3s ease, color 0.2s ease;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

*::selection {
    background-color: var(--secondary);
    color: var(--text-dark);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* Top Scroll Indicator */
.topscroll {
    height: 2px;
    position: fixed;
    top: 0;
    z-index: 99999;
    background-color: var(--primary);
    width: 100%;
    transform-origin: left;
    scale: 0 1;
    animation: scroll-watch linear;
    animation-timeline: scroll();
}

@keyframes scroll-watch {
    to {
        scale: 1 1;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.2s;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--black);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    width: 40px;
    height: auto;
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    transition: all 0.7s ease;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--primary);
    transform: scale(1.02);
}

.nav-cta:hover i {
    transform: translateX(2px);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Book Demo Button */
.book-demo-btn {
    position: relative;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #D4A86A, #8B5E34);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover Glow Effect */
.book-demo-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

/* Hover Animation */
.book-demo-btn:hover::before {
    left: 100%;
}

.book-demo-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 94, 52, 0.5);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-medium);
    border-radius: 40px;
    padding: 0.75rem 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
    font-size: 1rem;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

@media screen and (max-width: 960px) {
    .nav-container {
        padding: 0.8rem 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 58px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-sm);
        padding: 2rem 1rem;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0.7rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }
}

/* ========== HERO SECTION ========== */
.hero-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-badge {
    display: inline-block;
    background: rgba(139, 94, 52, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    margin-top: 0.5rem;
}

.hero-tagline .tagline-text {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-light);
}

.hero-tagline .tagline-text:first-of-type {
    font-weight: 600;
    color: var(--primary);
}

.hero-tagline .tagline-text:first-of-type::after {
    content: "—";
    margin-left: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.85;
}

[data-theme="dark"] .hero-tagline .tagline-text {
    color: #bdbdbd;
}

[data-theme="dark"] .hero-tagline .tagline-text:first-of-type {
    color: var(--primary);
}

[data-theme="dark"] .hero-tagline .tagline-text:first-of-type::after {
    color: #9a9a9a;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background: var(--bg-white);
    color: var(--primary);
    /* transform: translateY(-2px); */
    border: 1px solid var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--border-medium);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(139, 94, 52, 0.05);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-light);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(); /* light theme */
    margin: 10px 0;
}

[data-theme="dark"] .tagline {
    color: #ccc;
}

.hero-image {
    flex: 1;
    min-width: 250px;
}

.image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: scale(1.01);
}

.hero-img,
.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-offwhite);
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.about-cta-box {
    background: var(--primary);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.about-cta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-cta-icon {
    font-size: 2.5rem;
    color: var(--bg-white);
}

.about-cta-text h4 {
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 500;
}

.about-cta-text h3 {
    color: var(--bg-white);
    font-size: 1.3rem;
    font-weight: 700;
}

.about-cta-number {
    color: var(--bg-white);
    font-size: 1.5rem;
    text-decoration: none;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrapper:hover {
    transform: scale(1.02);
}

/* ========== CTA SECTION ========== */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(186, 185, 183, 0.85) 100%), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cpath fill="white" fill-opacity="0.05" d="M10,10 L90,10 L90,90 L10,90 Z"/%3E%3C/svg%3E');
    border-radius: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
}

.cta-decoration,
.cta-decoration-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ctaFloat 8s ease-in-out infinite;
}

.cta-decoration {
    top: -50%;
    right: -10%;
}

.cta-decoration-2 {
    bottom: -30%;
    left: -5%;
    animation: ctaFloat 6s ease-in-out infinite reverse;
}


@keyframes ctaFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-paragraph {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    }

    100% {
        transform: scale(1);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    gap: 1rem;
    animation: none;
}

/* ========== SERVICES SECTION ========== */
.service-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.service-title-highlight {
    color: var(--primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(139, 94, 52, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--bg-white);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-readmore:hover {
    color: var(--secondary);
    gap: 0.8rem;
}

/* ========== CHOOSE SECTION ========== */
.choose-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.choose-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 800px;
    margin: 1.5rem auto 0;
}

.choose-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.choose-feature-card {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.choose-feature-card:hover {
    transform: translateY(-5px);
}

.choose-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(139, 94, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.choose-feature-card:hover .choose-feature-icon-wrapper {
    background: var(--primary);
}

.choose-feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.choose-feature-card:hover .choose-feature-icon {
    color: var(--bg-white);
}

.choose-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.choose-feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.85rem;
}

.choose-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 2rem auto;
    max-width: 1280px;
}

/* ========== SOLUTION SECTION ========== */
.solution-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.solution-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--bg-offwhite);
    border-radius: 1rem;
}

.solution-menu-item {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-menu-item:hover,
.solution-menu-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

.solution-menu-item.active i,
.solution-menu-item:hover i {
    color: var(--bg-white);
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-feature-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 1.8rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.solution-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.solution-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-feature-card:hover::before {
    transform: scaleX(1);
}

.solution-feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(139, 94, 52, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solution-feature-card:hover .solution-feature-icon-wrapper {
    background: var(--primary);
}

.solution-feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.solution-feature-card:hover .solution-feature-icon {
    color: var(--bg-white);
}

.solution-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.solution-feature-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.faq-title-highlight {
    color: var(--primary);
}

.faq-description {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--bg-offwhite);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 1.2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.faq-cta-btn {
    max-width: 1280px;
    text-align: center;
    margin: 0 auto;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-description {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.blog-featured {
    flex: 1.2;
    min-width: 280px;
}

.blog-featured-card {
    background: var(--card-bg);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.blog-featured-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.blog-featured-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.blog-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-featured-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.blog-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.blog-card-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-card-btn {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-divider {
    margin: 2rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

/* ========== CONTACT SECTION ========================================== */
/* Section */
.contact-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Welcome */
.contact-welcome {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-welcome-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
}

.contact-welcome-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

/* Wrapper Layout */
.contact-wrapper {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1.5;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    background: var(--bg-offwhite);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box {
    padding: 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: var(--bg-offwhite);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.contact-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-box h4,
.contact-box h5 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-right h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-right p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.content-title-highlight {
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.content-title-highlight::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15%;
    width: 40px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.content-title-highlight::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -15%;
    width: 40px;
    /* line length */
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

/* Right Line */
.content-title-highlight::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15%;
    width: 40px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-grid .full {
    grid-column: span 2;
}

.form-grid input,
.form-grid textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
    font-size: 16px;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.demo-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 12px;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--secondary);
}

.form-features {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    flex-wrap: wrap;
    gap: 10px;
}

.contact-divider {
    margin: 2rem 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-small-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: span 1;
    }

    .form-features {
        justify-content: center;
    }
}

/* ========== FOOTER ========================================== */
.footer {
    background: #111111;
    color: #FFFFFF;
    padding-bottom: 3rem;
}

#footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 1rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-contact-item i {
    width: 24px;
    color: #ffffff;
}

.footer-contact-item a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #111111;
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #ffffff68;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
}

.footer-bottom-links a {
    color: #fff;
    text-decoration: none;
}

/* ========== UTILITIES ========== */


.topbtn {
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 999;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-white);
    border: 1px solid #fff;
}

.topbtn i {
    font-size: 1.5vw;
    margin: 10px auto;
    color: var(--white);
}

.whatsapp-chat {
    cursor: pointer;
    position: fixed;
    bottom: 28px;
    right: 65px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border: none;
}

.join-notification {
    position: fixed;
    bottom: 20px;
    left: 73px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9999;
}

.join-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Full Screen Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Wrapper */
.loader-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo */
.loader-wrapper img {
    width: 90px;
    z-index: 2;
    animation: logoPulse 2s ease-in-out infinite;
}

/* Rotating Ring */
.loader-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid #D4A86A;
    border-bottom: 3px solid #8B5E34;
    animation: rotateRing 2s linear infinite;
}

/* Glow Effect */
.loader-ring::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 106, 0.2), transparent);
    z-index: -1;
}

/* Logo Animation */
@keyframes logoPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* Ring Rotation */
@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hide Animation */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1024px) {
    .choose-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .contact-info-grid {
                grid-template-columns: repeat(3, 1fr);
            } */
}

@media screen and (max-width: 968px) {
    .hero-section {
        padding: 3rem 1.8rem;
    }

    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 768px) {

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text {
        text-align: center;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .choose-features-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .blog-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .join-notification {
        left: 20px;
        padding: 10px 12px;
    }

    .about-image-wrapper {
        border-radius: 1.5rem;
        overflow: hidden;
        height: auto;
        box-shadow: var(--shadow-md);
        transition: transform 0.3s ease;
    }

    .topbtn i {
        font-size: 3vw;
    }

    .nav-menu {
        align-items: center;
    }

    .nav-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-link,
    .theme-toggle-btn,
    .book-demo-btn {
        justify-content: center;
        text-align: center;
    }

    .theme-toggle-btn {
        margin: 0 auto;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-small-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: span 1;
    }

    .form-features {
        justify-content: center;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.2rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        max-width: 1280px;
        margin: 0 auto;
        margin-inline: 0.7rem;
        padding: 3rem 1.5rem;
        border-radius: 1rem;
    }

    .hero-section {
        padding: 3.5rem 1.5rem;
        gap: 2rem;
    }

    .service-section,
    .choose-section,
    .solution-section,
    .faq-section,
    .blog-section,
    .contact-section,
    .about-section {
        padding: 1rem;
    }

}


/* Terms Content Styles */
.terms-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.terms-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.terms-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.terms-content {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    scroll-margin-top: 100px;
}

.terms-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--primary);
}

.terms-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.terms-content ul,
.terms-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.legal-notice {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary);
}

.legal-notice i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.effective-date {
    background-color: var(--bg-offwhite);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin: 1.5rem 0;
    font-weight: 500;
}

.toc {
    background-color: var(--bg-offwhite);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.toc h3 {
    margin-top: 0;
}

.toc ul {
    columns: 2;
    column-gap: 2rem;
}

@media (max-width: 768px) {
    .toc ul {
        columns: 1;
    }
}

.toc a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 2rem 1rem;
    }

    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-content {
        padding: 1.5rem;
    }
}


/* Privacy Content Styles */
.privacy-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.privacy-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.privacy-content {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--primary);
}

.privacy-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.privacy-content ul,
.privacy-content ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-notice {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary);
}

.privacy-notice i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.rights-card {
    background-color: var(--bg-offwhite);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.rights-card-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.rights-card-item i {
    color: var(--secondary);
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-section {
        padding: 2rem 1rem;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }
}

/* Modal Overlay */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    z-index: 9999;
}

/* Show Modal */
.modal.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Box */
.modal-content {
    background: var(--card-bg);
    color: var(--text-dark);
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    position: relative;
    animation: scaleUp 0.4s ease;
}

/* Animation */
@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-light);
    transition: 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

/* Title */
.modal-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.modal-text {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button */
.modal-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

#toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Show */
#toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Success */
#toast.success {
    background: rgba(40, 167, 69, 0.95);
}

/* Error */
#toast.error {
    background: rgba(220, 53, 69, 0.95);
}

/* Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Main Content */
.blog-main {
    background: var(--card-bg);
    padding: 2rem 0.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Sidebar Card */
.sidebar-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

/* Title */
.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Article Item */
.sidebar-article {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem;
    border-radius: 12px;
    transition: 0.3s;
    text-decoration: none;
    border: 1px solid transparent;
}

.sidebar-article:hover {
    background: var(--bg-offwhite);
    border: 1px solid var(--border-light);
}

/* Image */
.sidebar-article img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

/* Text */
.sidebar-article h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin: 0;
}

.sidebar-article p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}


/* ===== BLOG SYSTEM ===== */

.blog-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.blog-meta {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-image {
    width: 100%;
    margin: 2rem 0 0 0;
}

.blog-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.blog-body {
    padding: 2rem 1rem;
}

.blog-body h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 0.4rem;
}

.blog-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary);
}

.blog-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-body ul {
    margin-left: 1.5rem;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
    padding: 1.5rem 1rem;
    border-radius: 14px;
    border-left: 4px solid var(--secondary);
    margin: 0.5rem 0 1rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }

    .blog-container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 1rem 0.2rem;
    }

    .blog-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .blog-body {
        padding: 2rem 0.4rem;
    }
}

@media (max-width: 420px) {
    .blog-layout {
        max-width: 1180px;
        margin: 0 auto;
        padding: 1rem 0.5rem;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0.5rem 0.2rem;
    }

    .blog-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .blog-body {
        padding: 1rem 0.4rem;
    }

    .blog-tag {
        display: none;
    }

    .blog-highlight {
        background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--secondary-rgb), 0.05));
        padding: 0.8rem;
        border-radius: 8px;
        border-left: 2px solid var(--secondary);
        margin: 0 0 1.5rem 0;
    }

}


.bottom-btns{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 0;
     background: #3e3e3e;
}

.bottom-btn{
    width: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-btn-left{
    background: #4CCB5B;
     border-right: 1px solid rgb(255, 255, 255);
}
.bottom-btn-left img{
    width: 45px;
}
.bottom-btn-right{
    height: 100%;
    background: #3e3e3e;
}
.bottom-book-btn{
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    color: #ffffff;
}

@media (max-width: 420px) {
    .bottom-btns{
   opacity: 1;
}
.bottom-btn{
    width: 50%;
    padding: 0.2rem 0.5rem;
}
.bottom-btn-left img{
    width: 30px;
}
.bottom-book-btn{
    align-items: center;
    gap: 0.6rem;
    padding: 0.2rem 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    color: #ffffff;
}
.whatsapp-chat{
    display: none;
}



.topbtn {
        bottom: 50px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .topbtn i {
        font-size: 20px;
        margin: 10px auto;
    }
    .join-notification {
    bottom: 50px;
    left: 10px;
}
}