/* ================= BRAND COLOR SYSTEM ================= */
/* Centralized colors so branding changes stay easy */

:root {

    /* Core Brand */
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;

    /* Accent Colors */
    --accent-blue: #38bdf8;
    --accent-orange: #f59e0b;
    --accent-green: #2cd48b;

    /* Neutral Colors */
    --bg-light: #f3f4f6;
    --text-dark: #111827;
    --text-gray: #6b7280;

    /* Utility */
    --white: #ffffff;

    /* Shadows */
    --shadow-soft: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 24px rgba(0,0,0,0.12);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-medium: 0.35s ease;
}
/* ================= GLOBAL RESET ================= */

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

html {

    scroll-behavior: smooth;
}

body {

    font-family: "Segoe UI", Arial, sans-serif;

    background: var(--bg-light);

    color: var(--text-dark);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}

/* Images responsive by default */
img {

    max-width: 100%;

    display: block;
}

/* Buttons inherit font */
button,
input,
textarea {

    font: inherit;
}

/* ================= TOPBAR ================= */

.topbar {

    background: #020817;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    padding: 8px 20px;

    font-size: 14px;
}

/* ================= TOPBAR LAYOUT ================= */

.topbar-container {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;
}

/* ================= TEXT BLOCKS ================= */

.topbar-left,
.topbar-right {

    color: #cbd5e1;

    display: flex;

    align-items: center;

    gap: 6px;
}

/* ================= LINKS ================= */

.topbar a {

    text-decoration: none;

    font-weight: 600;

    transition: color var(--transition-fast);
}

/* Email link */
.topbar-left a {

    color: var(--white);
}

.topbar-left a:hover {

    color: var(--accent-blue);
}

/* WhatsApp link */
.topbar-right a {

    color: var(--accent-blue);
}

.topbar-right a:hover {

    color: var(--white);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .topbar {

        padding: 10px 14px;
    }

    .topbar-container {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 6px;
    }

    .topbar-left,
    .topbar-right {

        justify-content: center;

        font-size: 13px;

        line-height: 1.5;
    }
}
/* ================================================= */
/* ================= MAIN HEADER =================== */
/* ================================================= */

.header {

    background: var(--primary-dark);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    padding: 18px 20px;

    position: sticky;

    top: 0;

    z-index: 9999;

    backdrop-filter: blur(12px);

    background: rgba(15,23,42,0.96);
}

/* ================= HEADER LAYOUT ================= */

.header-container {

    max-width: 1350px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 24px;
}

/* ================= LOGO ================= */

.logo {

    flex-shrink: 0;

    display: flex;

    align-items: center;
}

.logo-img {

    height: 58px;

    width: auto;

    display: block;
}

/* ================= SEARCH ================= */

.search {

    flex: 1;

    max-width: 620px;

    min-width: 280px;

    display: flex;

    align-items: center;

    background: var(--white);

    border-radius: var(--radius-md);

    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow: var(--shadow-soft);
}
/* ================================================= */
/* ================= SEARCH RESULTS ================ */
/* ================================================= */

.search{

    position:relative;
}

/* RESULTS DROPDOWN */

.search-results{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:white;

    border-radius:0 0 12px 12px;

    overflow:hidden;

    box-shadow:0 12px 24px rgba(0,0,0,0.12);

    z-index:9999;

    display:none;
}

/* INDIVIDUAL ITEM */

.search-item{

    display:flex;

    align-items:center;

    padding:14px 18px;

    text-decoration:none;

    color:var(--text-dark);

    font-size:15px;

    border-bottom:1px solid rgba(0,0,0,0.05);

    transition:background 0.2s ease;
}

/* HOVER */

.search-item:hover{

    background:#f8fafc;
}

/* NO RESULT */

.no-result{

    color:#6b7280;
}

/* MOBILE */

@media(max-width:768px){

    .search-results{

        max-height:300px;

        overflow-y:auto;
    }

    .search-item{

        padding:16px;
    }
}

/* Search input */

.search input {

    flex: 1;

    border: none;

    outline: none;

    padding: 15px 16px;

    font-size: 15px;

    background: transparent;

    color: var(--text-dark);
}

/* Search button */

.search-btn {

    background: var(--accent-orange);

    border: none;

    padding: 15px 22px;

    cursor: pointer;

    font-size: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: background var(--transition-fast);
}

.search-btn:hover {

    background: #fbbf24;
}

/* ================= INFO BLOCKS ================= */

.header-info,
.live-support {

    display: flex;

    flex-direction: column;

    justify-content: center;

    line-height: 1.3;

    min-width: 140px;
}

/* Small labels */

.header-info span,
.live-support span {

    font-size: 13px;

    color: #94a3b8;
}

/* Main text */

.header-info strong,
.live-support strong {

    font-size: 18px;

    color: var(--white);

    font-weight: 700;
}

/* ================= CHAT BUTTON ================= */

.chat-btn {

    background: var(--accent-orange);

    color: black;

    padding: 14px 22px;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    flex-shrink: 0;

    transition: all var(--transition-fast);
}

.chat-btn:hover {

    background: #fbbf24;

    transform: translateY(-2px);
}

/* Tap feedback */

.chat-btn:active {

    transform: scale(0.97);
}

/* ================= WHATSAPP ICON ================= */

.chat-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    color: black;
}

/* ================= LIVE DOT ================= */

.live-dot {

    width: 10px;

    height: 10px;

    background: #22c55e;

    border-radius: 50%;

    box-shadow: 0 0 10px rgba(34,197,94,0.7);

    animation: pulse-dot 1.8s infinite;
}

/* ================= PULSE ================= */

@keyframes pulse-dot {

    0% {

        transform: scale(1);

        opacity: 1;
    }

    50% {

        transform: scale(1.4);

        opacity: 0.6;
    }

    100% {

        transform: scale(1);

        opacity: 1;
    }
}

/* ================================================= */
/* ================= TABLET ======================== */
/* ================================================= */

@media (max-width: 1100px) {

    .header-container {

        flex-wrap: wrap;

        justify-content: center;
    }

    .search {

        order: 3;

        width: 100%;

        max-width: 100%;
    }

    .header-info,
    .live-support {

        text-align: center;

        align-items: center;
    }
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

    .header {

        padding: 14px;
    }

    .header-container {

        flex-direction: column;

        align-items: stretch;

        gap: 14px;
    }

    /* Logo */

    .logo {

        justify-content: center;
    }

    .logo-img {

        height: 46px;
    }

    /* Search */

    .search {

        min-width: unset;

        width: 100%;

        max-width: 100%;
    }

    .search input {

        padding: 14px;
    }

    /* Info blocks */

    .header-info,
    .live-support {

        align-items: center;

        text-align: center;
    }

    .header-info strong,
    .live-support strong {

        font-size: 16px;
    }

    /* Chat button */

    .chat-btn {

        width: 100%;

        padding: 14px 18px;

        font-size: 16px;

        border-radius: 12px;
    }
}
/* ================================================= */
/* ================= NAVIGATION ==================== */
/* ================================================= */

.nav {

    background: var(--secondary-dark);

    border-top: 1px solid rgba(255,255,255,0.05);

    border-bottom: 1px solid rgba(255,255,255,0.05);

    position: relative;

    z-index: 500;
}

/* ================= MENU LAYOUT ================= */

.menu {

    max-width: 1200px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 34px;

    padding: 14px 20px;
}

/* ================= NAV LINKS ================= */

.menu a,
.dropdown button {

    color: var(--white);

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: color var(--transition-fast);

    background: none;

    border: none;

    cursor: pointer;

    white-space: nowrap;
}

/* Hover */

.menu a:hover,
.dropdown button:hover {

    color: var(--accent-blue);
}

/* ================================================= */
/* ================= DROPDOWN ====================== */
/* ================================================= */

.dropdown {

    position: relative;
}

/* Dropdown menu */

.dropdown-content {

    display: none;

    position: absolute;

    top: calc(100% - 2px);

    left: 0;

    background: var(--white);

    min-width: 220px;

    border-radius: var(--radius-md);

    overflow: visible;

    box-shadow: var(--shadow-medium);

    z-index: 9999;
}

/* Dropdown links */

.dropdown-content a {

    display: block;

    padding: 14px 16px;

    color: var(--text-dark);

    font-size: 14px;

    transition: background var(--transition-fast);
}

/* Hover */

.dropdown-content a:hover {

    background: var(--bg-light);
}

/* Show dropdown */

.dropdown:hover .dropdown-content {

    display: block;
}

/* ================================================= */
/* ================= BREADCRUMB ==================== */
/* ================================================= */

.breadcrumb {

    background: var(--bg-light);

    padding: 12px 20px;

    font-size: 14px;

    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.breadcrumb a {

    color: var(--primary-dark);

    text-decoration: none;

    transition: color var(--transition-fast);
}

.breadcrumb a:hover {

    color: var(--accent-blue);
}

.breadcrumb span {

    color: var(--text-gray);
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

    /* NAVIGATION */

    .nav {

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {

        display: none;
    }

    .menu {

        width: max-content;

        min-width: 100%;

        justify-content: flex-start;

        gap: 0;

        padding: 0 8px;
    }

    .menu a,
    .dropdown button {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 16px 18px;

        font-size: 14px;
    }

    /* DROPDOWN */

    .dropdown-content {

        min-width: 190px;

        top: calc(100% + 6px);
    }

    /* BREADCRUMB */

    .breadcrumb {

        font-size: 13px;

        padding: 10px 14px;
    }
}
/* ================================================= */
/* ================= HERO SECTION ================== */
/* ================================================= */

.hero {

    position: relative;

    overflow: hidden;

    min-height: 650px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding: 90px 8%;

    color: var(--white);
}

/* ================================================= */
/* ================= HERO IMAGE ==================== */
/* ================================================= */

.hero-bg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center right;

    z-index: 1;

    filter: blur(4px);

    transform: scale(1.04);
}

/* ================================================= */
/* ================= DARK OVERLAY ================== */
/* ================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(15,23,42,0.72);

    z-index: 2;
}

/* ================================================= */
/* ================= HERO CONTENT ================== */
/* ================================================= */

.hero-content {

    position: relative;

    z-index: 3;

    max-width: 650px;

    text-align: left;

    animation: heroFade 1s ease forwards;
}

/* ================================================= */
/* ================= ANIMATION ===================== */
/* ================================================= */

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateX(40px);
    }

    to {

        opacity: 1;

        transform: translateX(0);
    }
}

/* ================================================= */
/* ================= HERO HEADING ================== */
/* ================================================= */

.hero-content h1 {

    font-size: 58px;

    line-height: 1.08;

    letter-spacing: -1px;

    margin-bottom: 22px;

    font-weight: 700;

    color: var(--white);
}

/* Highlight */

.highlight {

    color: var(--accent-blue);
}

/* ================================================= */
/* ================= SUBTEXT ======================= */
/* ================================================= */

.hero-sub {

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255,255,255,0.82);

    margin-bottom: 26px;
}

/* ================================================= */
/* ================= PROBLEM ======================= */
/* ================================================= */

.hero-problem {

    font-size: 22px;

    font-weight: 600;

    line-height: 1.5;

    margin-bottom: 12px;

    color: var(--white);
}

/* ================================================= */
/* ================= SOLUTION ====================== */
/* ================================================= */

.hero-solution {

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255,255,255,0.78);

    margin-bottom: 36px;
}

/* ================================================= */
/* ================= CTA AREA ====================== */
/* ================================================= */

.cta-actions {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;
}

/* ================================================= */
/* ================= PRIMARY BUTTON ================ */
/* ================================================= */

.btn-primary {

    background: var(--accent-green);

    color: black;

    padding: 15px 30px;

    border-radius: var(--radius-sm);

    text-decoration: none;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: all var(--transition-fast);
}

/* Hover */

.btn-primary:hover {

    transform: translateY(-2px);

    opacity: 0.92;
}

/* Active */

.btn-primary:active {

    transform: scale(0.97);
}

/* ================================================= */
/* ================= SECONDARY BUTTON ============== */
/* ================================================= */

.btn-secondary {

    background: transparent;

    color: var(--white);

    border: 2px solid var(--accent-blue);

    padding: 14px 28px;

    border-radius: var(--radius-sm);

    font-weight: 700;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: all var(--transition-fast);
}

/* Hover */

.btn-secondary:hover {

    background: var(--accent-blue);

    color: black;

    transform: translateY(-2px);
}

/* Active */

.btn-secondary:active {

    transform: scale(0.97);
}

/* ================================================= */
/* ================= TABLET ======================== */
/* ================================================= */

@media (max-width: 992px) {

    .hero {

        min-height: 580px;

        padding: 80px 6%;
    }

    .hero-content h1 {

        font-size: 50px;
    }
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

    .hero {

        min-height: auto;

        padding: 90px 22px 70px;

        justify-content: center;
    }

    .hero-bg {

        object-position: center;
    }

    .hero-content {

        max-width: 100%;

        text-align: center;
    }

    .hero-content h1 {

        font-size: 40px;

        line-height: 1.12;
    }

    .hero-sub,
    .hero-solution {

        font-size: 15px;

        line-height: 1.7;
    }

    .hero-problem {

        font-size: 19px;
    }

    /* CTA stack */

    .cta-actions {

        flex-direction: column;

        width: 100%;
    }

    .btn-primary,
    .btn-secondary {

        width: 100%;
    }
}
/* ================= FEATURED SOLUTIONS ================= */

.featured-solutions {

    padding: 90px 20px;

    background: var(--white);
}

/* Section heading */
.section-heading {

    text-align: center;

    max-width: 700px;

    margin: auto auto 50px;
}

.section-heading h2 {

    font-size: 34px;

    color: var(--primary-dark);

    margin-bottom: 15px;
}

.section-heading p {

    color: #6b7280;

    font-size: 16px;

    line-height: 1.6;
}

/* Solutions grid */
.solutions-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

    max-width: 1200px;

    margin: auto;
}

/* Individual card */
.solution-card {

    background: var(--white);

    padding: 35px 25px;

    border-radius: var(--radius-lg);

    text-align: left;

    box-shadow: var(--shadow-soft);

    transition: all var(--transition-medium);

    display: flex;

    flex-direction: column;

    height: 100%;
}
/* Hover effect */
.solution-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Icon */
.solution-icon {

    font-size: 40px;

    margin-bottom: 20px;
}

/* Card title */
.solution-card h3 {

    color: var(--primary-dark);

    margin-bottom: 15px;
}

/* Card text */
.solution-card p {

    color: #4b5563;

    line-height: 1.6;

    margin-bottom: 25px;
}

/* CTA button */
.solution-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: auto;

    padding: 11px 18px;

    background: var(--primary-dark);

    color: var(--white);

    text-decoration: none;

    border-radius: var(--radius-sm);

    transition: all var(--transition-fast);
}
/* Hover */
.solution-btn:hover {

    background: var(--accent-blue);

    color: black;
}
/* ================= WHY SAGEKON ================= */
/* Why SageKon section */
.why-sagekon {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    padding: 90px 8%;

    background: var(--bg-light);
}

/* Text container */
.why-content {

    flex: 1;

    max-width: 560px;
}

/* Heading */
.why-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
/* For checklists on TOS and Privacy pages */
.tos-page .checklist li,
.privacy-page .checklist li {
    color: var(--white); /* or a light gray for contrast */
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 17px;
    color: var(--text-dark);
}

/* Add check icon */
.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Image container */
.why-image img {

    width: 100%;

    max-width: 520px;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-medium);
}

/* Responsive */
@media (max-width: 768px) {

    .why-sagekon {

        flex-direction: column;

        text-align: center;

        gap: 40px;

        padding: 70px 24px;
    }

    .why-content {

        max-width: 100%;
    }

    .checklist li {

        text-align: left;
    }

    .why-image img {

        max-width: 100%;
    }
}
/* ================= PRODUCT SECTION ================= */

.products {

    padding: 80px 20px;

    background: var(--bg-light);

    text-align: center;
}

/* Product grid */
.product-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;

    max-width: 1200px;

    margin: auto;
}

/* ================= PRODUCT CARD ================= */

.card {

    background: var(--white);

    border-radius: var(--radius-lg);

    overflow: hidden;

    text-align: left;

    transition: all var(--transition-medium);

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow: var(--shadow-soft);

    display: flex;

    flex-direction: column;

    height: 100%;
}

/* Hover effect */
.card:hover {

    transform: translateY(-8px);

    box-shadow: 0 16px 35px rgba(0,0,0,0.10);
}

/* Product image */
.card img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    display: block;
}

/* Product content */
.card-content {

    padding: 25px;

    display: flex;

    flex-direction: column;

    flex: 1;
}

/* Product title */
.card h3 {

    color: var(--primary-dark);

    margin-bottom: 12px;

    font-size: 22px;
}

/* Product description */
.card p {

    color: #4b5563;

    line-height: 1.7;

    font-size: 15px;

    margin-bottom: 22px;
}

/* Product button */
.card-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: auto;

    padding: 11px 18px;

    background: var(--primary-dark);

    color: var(--white);

    text-decoration: none;

    border-radius: var(--radius-sm);

    transition: all var(--transition-fast);
}

/* Button hover */
.card-btn:hover {

    background: var(--accent-blue);

    color: black;
}
/* ================= PREMIUM SERVICES ================= */

.premium-services {

    padding: 80px 20px;

    background: white;
}

/* Services grid */
.services-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;

    max-width: 1200px;

    margin: auto;
}

/* Individual service card */
.service-card {

    background: var(--bg-light);

    padding: 35px 25px;

    border-radius: var(--radius-lg);

    text-align: center;

    transition: all var(--transition-medium);

    border: 1px solid rgba(0,0,0,0.04);

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    height: 100%;
}

/* Hover effect */
.service-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 10px 24px rgba(0,0,0,0.08);

    background: white;
}

/* Service icon */
.service-icon {

    font-size: 42px;

    margin-bottom: 20px;
}

/* Title */
.service-card h3 {

    color: var(--primary-dark);

    margin-bottom: 15px;
}

/* Description */
.service-card p {

    color: #4b5563;

    line-height: 1.6;

    font-size: 15px;
}

/* ================================================= */
/* ================= SECTION MOBILE ================ */
/* ================================================= */

@media (max-width: 768px) {

    .section-heading {

        margin-bottom: 40px;
    }

    .section-heading h2 {

        font-size: 30px;
    }

    .section-heading p {

        font-size: 15px;
    }

    .solution-card,
    .service-card,
    .card {

        padding: 24px;
    }

    .card img {

        height: 200px;
    }
}
/* ================================================= */
/* ================= TESTIMONIALS ================== */
/* ================================================= */

.testimonials {

    padding: 80px 20px;

    background: var(--bg-light);
}

/* Testimonial grid */

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;

    max-width: 1200px;

    margin: auto;
}

/* Individual testimonial card */

.testimonial-card {

    background: white;

    padding: 35px 30px;

    border-radius: 18px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

/* Hover effect */

.testimonial-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

/* Quote mark */

.quote-mark {

    display: flex;

    justify-content: flex-end;

    font-size: 52px;

    color: rgba(56, 189, 248, 0.20);

    margin-bottom: -10px;

    line-height: 1;
}

/* Star rating */

.testimonial-stars {

    color: #fbbf24;

    font-size: 18px;

    margin-bottom: 18px;

    letter-spacing: 2px;
}

/* Testimonial text */

.testimonial-text {

    color: #374151;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 24px;

    font-style: italic;
}

/* Author */

.testimonial-author {

    color: var(--primary-dark);

    font-weight: 700;

    font-size: 15px;
}

/* ================================================= */
/* ================= FAQ SECTION =================== */
/* ================================================= */

.faq-section {

    padding: 80px 20px;

    background: white;
}

/* FAQ container */

.faq-container {

    max-width: 900px;

    margin: auto;
}

/* Individual FAQ */

.faq-item {

    border-bottom: 1px solid #e5e7eb;

    padding: 18px 0;
}

/* Question button */

.faq-question {

    width: 100%;

    background: none;

    border: none;

    outline: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-size: 17px;

    font-weight: 600;

    color: var(--primary-dark);

    padding: 10px 0;

    text-align: left;

    gap: 20px;

    transition: color 0.25s ease;
}

/* Hover */

.faq-question:hover {

    color: var(--accent-blue);
}

/* Plus icon */

.faq-icon {

    font-size: 22px;

    color: var(--accent-blue);

    flex-shrink: 0;

    transition: transform 0.25s ease;
}

/* Answer area */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}

/* Answer text */

.faq-answer p {

    color: #4b5563;

    line-height: 1.8;

    padding: 10px 0 15px;

    font-size: 15px;
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

    .testimonials,
    .faq-section {

        padding: 60px 16px;
    }

    /* Testimonial cards */

    .testimonial-card {

        padding: 26px 22px;

        border-radius: 16px;
    }

    .testimonial-text {

        font-size: 14px;

        line-height: 1.7;
    }

    .testimonial-author {

        font-size: 14px;
    }

    .quote-mark {

        font-size: 42px;
    }

    /* FAQ */

    .faq-question {

        font-size: 15px;

        line-height: 1.5;

        align-items: flex-start;
    }

    .faq-icon {

        font-size: 20px;

        margin-top: 2px;
    }

    .faq-answer p {

        font-size: 14px;

        line-height: 1.7;
    }
}
/* ================================================= */
/* ================= PREMIUM FOOTER ================= */
/* ================================================= */

.footer {

    background: var(--primary-dark);

    color: #d1d5db;

    padding: 70px 20px 25px;

    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ================= FOOTER LAYOUT ================= */

.footer-container {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 40px;
}

/* ================= FOOTER LOGO ================= */
.footer .logo {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;

    flex-wrap: wrap;
}

.footer .logo-img {

    height: 50px;

    width: auto;

    flex-shrink: 0;
}
.footer-links a {

    color: white;

    text-decoration: none;

    transition: color 0.25s ease;
}

/* Hover effect */

.footer-links a:hover {

    color: var(--accent-blue);
}

/* ================= TITLES ================= */

.footer-column h3,
.footer-column h4 {

    color: white;

    margin-bottom: 18px;

    font-size: 18px;
}

/* ================= PARAGRAPHS ================= */

.footer-column p {

    line-height: 1.8;

    font-size: 15px;

    color: #cbd5e1;
}
.footer-column{

    min-width: 0;
}

/* ================= LIST RESET ================= */

.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

/* ================= FOOTER LINKS ================= */

.footer-column ul li {

    margin-bottom: 12px;
}

.footer-column a {

    color: #d1d5db;

    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-column a:hover {

    color: var(--accent-blue);

    padding-left: 4px;
}

/* ================= SOCIAL LINKS ================= */

.social-links {

    display: flex;

    gap: 15px;

    margin-top: 15px;
}

.social-links a {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.06);

    color: white;

    font-size: 18px;

    transition: all 0.25s ease;
}
.social-links a:hover {

    transform: translateY(-3px);

    background: var(--accent-blue);

    color: black;
}
/* ================= COPYRIGHT ================= */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);

    margin-top: 50px;

    padding-top: 20px;

    text-align: center;

    font-size: 14px;

    color: #94a3b8;
}
/* ================= MAP BUTTON ================= */

.footer-map-btn{

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 12px;

    padding: 10px 16px;

    background: rgba(255,255,255,0.08);

    border-radius: 8px;

    color: white;

    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-map-btn:hover{

    background: var(--accent-blue);

    color: black;
}
/* ================================================= */
/* ================= MOBILE FOOTER ================= */
/* ================================================= */

@media (max-width: 768px) {

    .footer {

        padding: 55px 20px 20px;

        text-align: center;
    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer .logo {

        justify-content: center;
    }

    .social-links {

        justify-content: center;
    }

    .footer-column h3,
    .footer-column h4 {

        margin-bottom: 14px;
    }

    .footer-column a:hover {

        padding-left: 0;
    }

    .footer-bottom {

        margin-top: 35px;
    }
    .footer-column p,
.footer-column a{

    word-break: break-word;
}
    .social-links {

    justify-content: center;
}
.footer .logo {

    justify-content: center;

    text-align: center;
}
}
/* ================================================= */
/* ================= WHATSAPP FLOAT ================ */
/* ================================================= */

.whatsapp-float {

    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #25D366;

    display: flex;

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

    text-decoration: none;

    box-shadow: 0 10px 28px rgba(0,0,0,0.22);

    z-index: 9999;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    isolation: isolate;
}

/* ================= ICON ================= */

.wa-icon {

    width: 30px;
    height: 30px;

    object-fit: contain;

    position: relative;

    z-index: 2;
}

/* ================= HOVER ================= */

.whatsapp-float:hover {

    transform: translateY(-3px) scale(1.05);

    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
}

/* ================= ACTIVE TOUCH ================= */

.whatsapp-float:active {

    transform: scale(0.96);
}

/* ================================================= */
/* ================= PULSE EFFECT ================== */
/* ================================================= */

.whatsapp-float::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: rgba(37,211,102,0.35);

    z-index: 1;

    animation: whatsappPulse 2.2s infinite;
}

/* Pulse animation */

@keyframes whatsappPulse {

    0% {

        transform: scale(1);

        opacity: 0.7;
    }

    70% {

        transform: scale(1.6);

        opacity: 0;
    }

    100% {

        transform: scale(1.6);

        opacity: 0;
    }
}

/* ================================================= */
/* ================= MOBILE OPTIMIZATION =========== */
/* ================================================= */

@media (max-width: 768px) {

    .whatsapp-float {

        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;
    }

    .wa-icon {

        width: 26px;
        height: 26px;
    }
}

/* Extra-small phones */

@media (max-width: 420px) {

    .whatsapp-float {

        width: 50px;
        height: 50px;

        right: 14px;
        bottom: 14px;
    }

    .wa-icon {

        width: 24px;
        height: 24px;
    }
}/* ================================================= */
/* ================= MOBILE OPTIMIZATION =========== */
/* ================================================= */

@media (max-width: 768px){

    /* ================= TOPBAR ================= */

    .topbar-container{

        flex-direction: column;

        text-align: center;

        gap: 4px;

        padding: 8px 12px;
    }

    .topbar-left,
    .topbar-right{

        font-size: 13px;
    }

    /* ================= HEADER ================= */

    .header{

        padding: 14px 14px;

        position: sticky;

        top: 0;

        z-index: 9999;

        backdrop-filter: blur(12px);

        background: rgba(15,23,42,0.95);

        box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    }

    .header-container{

        flex-direction: column;

        align-items: stretch;

        gap: 14px;
        
    }

    /* ================= LOGO ================= */

    .logo{

        justify-content: center;
    }

    .logo-img{

        height: 42px;
    }

    /* ================= SEARCH ================= */

    .search{

        max-width: 100%;

        min-width: unset;
    }

    .search input{

        padding: 14px;

        font-size: 15px;
    }

    /* ================= INFO BLOCKS ================= */

    .header-info,
    .live-support{

        text-align: center;

        align-items: center;
    }

    .header-info strong,
    .live-support strong{

        font-size: 16px;
    }

    /* ================= CHAT BUTTON ================= */

    .chat-btn{

        width: auto;

        align-self: center;

        min-width: 190px;

        justify-content: center;

        padding: 13px 18px;

        font-size: 16px;

        border-radius: 12px;
    }

    /* ================= NAVIGATION ================= */

    .nav{

        overflow-x: auto;

        white-space: nowrap;

        -webkit-overflow-scrolling: touch;
    }

    .nav::-webkit-scrollbar{

        display: none;
    }

    .menu{

        justify-content: flex-start;

        gap: 0;

        min-width: max-content;

        padding: 0 6px;
    }

    .menu a,
    .dropdown button{

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 15px 16px;

        font-size: 14px;

        font-weight: 600;

        white-space: nowrap;
    }
    /* ================================================= */
/* ================= MOBILE NAV ==================== */
/* ================================================= */

/* Hide hamburger on desktop */

.menu-toggle {

    display: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* Hamburger */

    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

        background: transparent;

        border: none;

        color: white;

        font-size: 30px;

        cursor: pointer;

        margin-left: auto;
    }

    /* Navigation wrapper */

    .nav {

        overflow: hidden;
    }

    /* Hide menu by default */

    .menu {

        display: none;

        flex-direction: column;

        width: 100%;

        gap: 0;

        padding: 0;
    }

    /* Show menu when active */

    .menu.active {

        display: flex;
    }

    /* Nav links */

    .menu a,
    .dropdown button {

        width: 100%;

        text-align: left;

        padding: 16px 20px;

        border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* Dropdown container */

    .dropdown {

        width: 100%;
    }

    /* Mobile dropdown */

    .dropdown-content {

        position: static;

        display: none;

        width: 100%;

        border-radius: 0;

        box-shadow: none;

        background: #273549;
    }

    /* Show dropdown */

    .dropdown.active .dropdown-content {

        display: block;
    }

    /* Dropdown links */

    .dropdown-content a {

        color: white;

        padding-left: 35px;

        border-top: 1px solid rgba(255,255,255,0.04);
    }

    /* Desktop spacing removal */

    .menu {

        justify-content: flex-start;
    }
}

    /* ================= HERO ================= */

    .hero{

        min-height: 520px;

        padding: 90px 24px 70px;
    }

    .hero-content{

        max-width: 100%;

        text-align: center;
    }

    .hero h1{

        font-size: clamp(34px, 8vw, 42px);

        line-height: 1.08;

        letter-spacing: -1px;
    }

    .hero-sub{

        font-size: 15px;

        line-height: 1.6;
    }

    .hero-problem{

        font-size: 19px;
    }

    .hero-solution{

        font-size: 15px;

        line-height: 1.7;
    }

    /* ================= CTA ================= */

    .cta-actions{

        flex-direction: column;

        width: 100%;
    }

    .btn-primary,
    .btn-secondary{

        width: 100%;
    }

    /* ================= WHY SECTION ================= */

    .why-sagekon{

        flex-direction: column;

        text-align: center;
    }

    .why-image{

        margin-top: 30px;
    }

    /* ================= CARDS ================= */

    .card{

        width: 100%;

        border-radius: 16px;
    }

    .card img{

        border-radius: 12px;
    }

    /* ================= SECTION SPACING ================= */

    section{

        padding-top: 60px !important;

        padding-bottom: 60px !important;
    }

    /* ================= FOOTER ================= */

    .footer{

        text-align: center;
    }

    .footer-container{

        gap: 36px;
    }

    /* ================= TOUCH FEEDBACK ================= */

    .chat-btn:active,
    .btn-primary:active,
    .btn-secondary:active,
    .search-btn:active{

        transform: scale(0.97);
    }
}

/* ================================================= */
/* ============ MOBILE OVERLAY MENU ================ */
/* ================================================= */

/* HIDE ON DESKTOP */

.menu-toggle,
.mobile-menu {
    display: none;
}

/* ================================================= */
/* ================= MOBILE ONLY =================== */
/* ================================================= */

@media (max-width: 768px) {

    /* HIDE DESKTOP NAV */

    .nav {
        display: none;
    }

    /* ================= MENU BUTTON ================= */

    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

        position: fixed;

        top: 88px;

        right: 18px;

        width: 48px;

        height: 48px;

        border: none;

        border-radius: 10px;

        background: var(--secondary-dark);

        color: white;

        font-size: 28px;

        cursor: pointer;

        z-index: 99999;

        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    /* ================= OVERLAY ================= */

    .mobile-menu {

        display: flex;

        flex-direction: column;

        justify-content: space-between;

        position: fixed;

        inset: 0;

        background: rgba(15,23,42,0.98);

        backdrop-filter: blur(12px);

        z-index: 999999;

        padding: 25px 22px;

        transform: translateX(100%);

        transition: transform 0.35s ease;
    }

    /* ACTIVE STATE */

    .mobile-menu.active {

        transform: translateX(0);
    }

    /* ================= TOP ================= */

    .mobile-menu-top {

        display: flex;

        align-items: center;

        justify-content: space-between;

        margin-bottom: 40px;
    }

    .mobile-logo {

        height: 42px;
    }

    .close-menu {

        background: none;

        border: none;

        color: white;

        font-size: 34px;

        cursor: pointer;
    }

    /* ================= LINKS ================= */

    .mobile-links {

        display: flex;

        flex-direction: column;

        gap: 12px;
    }

    .mobile-links a,
    .mobile-dropdown-btn {

        width: 100%;

        background: rgba(255,255,255,0.04);

        border: 1px solid rgba(255,255,255,0.05);

        border-radius: 12px;

        padding: 16px 18px;

        color: white;

        text-decoration: none;

        font-size: 17px;

        font-weight: 600;

        display: flex;

        justify-content: space-between;

        align-items: center;

        cursor: pointer;
    }

    /* ================= SUBMENU ================= */

    .mobile-submenu {

        display: none;

        flex-direction: column;

        padding-left: 14px;

        margin-top: 10px;

        gap: 10px;
    }

    .mobile-submenu a {

        background: rgba(255,255,255,0.03);

        font-size: 15px;

        color: #cbd5e1;
    }

    /* OPEN SUBMENU */

    .mobile-dropdown.active .mobile-submenu {

        display: flex;
    }

    /* ================= BOTTOM ================= */

    .mobile-menu-bottom {

        margin-top: 40px;

        border-top: 1px solid rgba(255,255,255,0.08);

        padding-top: 25px;
    }

    .mobile-whatsapp {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        width: 100%;

        padding: 16px;

        border-radius: 12px;

        background: var(--accent-green);

        color: black;

        text-decoration: none;

        font-weight: 700;

        margin-bottom: 18px;
    }

    .mobile-menu-bottom p {

        color: #94a3b8;

        text-align: center;

        font-size: 14px;
    }
}
