﻿@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
/* CSS Variables */
:root {
    --color-orange: #f36d1a;
    --color-orange-dark: #d55a15;
    --color-yellow: #ffd700;
    --color-yellow-dark: #ffc107;
    --color-black: #2c2c2c;
    --color-white: #ffffff;
    --color-gray-light: #f3f3f3;
    --color-gray-dark: #555;
    --color-text-light: #e0e0e0;
    --color-text-dark: #444;
    --color-border: #bbb;
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 20px rgba(0, 0, 0, 0.15);
    --border-radius-small: 5px;
    --border-radius-medium: 8px;
    --border-radius-large: 25px;
    --border-radius-xl: 115px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    overflow-x: hidden;
    background: #262626;
    scroll-behavior: smooth !important;
}

/* Global Button Styles */
.btn {
    padding: 12px 20px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content:center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
}

    .btn-primary:hover {
        background: var(--color-orange-dark);
        box-shadow: 0 6px 20px rgba(243, 109, 26, 0.4);
    }

.btn-secondary {
    background: var(--color-black);
    color: var(--color-white);
}

    .btn-secondary:hover {
        background: var(--color-gray-dark);
    }

.btn-tertiary {
    background: var(--color-yellow);
    color: var(--color-black);
}

    .btn-tertiary:hover {
        background: var(--color-yellow-dark);
    }

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.btn-outline-dark {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-border);
}

    .btn-outline-dark:hover {
        border-color: var(--color-black);
    }

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
}

    .btn-white:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }



/* Universal Form Styles */
input,
select,
textarea {
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    background: var(--color-white);
    color: var(--color-black);
    font-size: 14px;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
    outline: none;
}

    /* Placeholder style */
    input::placeholder,
    textarea::placeholder {
        color: var(--color-gray-dark);
        opacity: 0.8;
    }

    /* Focus / Active State */
    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--color-orange);
        outline: none;
    }

    /* Disabled State */
    input:disabled,
    select:disabled,
    textarea:disabled {
        background: var(--color-gray-light);
        cursor: not-allowed;
        opacity: 0.7;
    }

/* Dropdown (select) */
select {
    padding-right: 40px;
}


    /* Error state */
    input.error,
    select.error,
    textarea.error {
        border-color: red;
    }



/* Header Styles */
.header {
    background: var(--color-black);
    z-index: 1000;
    box-shadow: var(--shadow-small);
    transition: all var(--transition-normal);
}

    .header.scrolled {
        background: rgba(44, 44, 44, 0.95);
        backdrop-filter: blur(10px);
    }

.header-top {
    background: #1a1a1a;
    padding: 8px 0;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.header-top-left{
    display:flex;
    gap:20px;
}
.header-top-left div {
    color: var(--color-white);
    font-size: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 35px;
        height: 35px;
        background: var(--color-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--color-orange);
        transition: all var(--transition-normal);
        font-size: 14px;
    }

        .social-links a:hover {
            background: var(--color-orange);
            color: var(--color-white);
            transform: scale(1.1);
        }

.top-nav {
    display: flex;
    gap: 20px;
}

    .top-nav a {
        color: var(--color-white);
        text-decoration: none;
        font-size: 12px;
        transition: color var(--transition-normal);
    }

        .top-nav a:hover {
            color: var(--color-orange);
        }

.header-main {
    padding: 15px 0;
    position: sticky;
    background: var(--color-white);
    box-shadow: var(--shadow-small);
    top: 0;
    z-index: 3;
}

    .header-main * {
        text-wrap: nowrap;
    }

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo-text {
    background: var(--color-orange);
    color: var(--color-white);
    padding: 10px 15px;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-small);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

    .nav-links a {
        color: var(--color-black);
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        transition: color var(--transition-normal);
        position: relative;
    }

        .nav-links a:hover {
            color: var(--color-orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: var(--color-orange);
            transition: width var(--transition-normal);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-black);
    z-index: 9999;
    transition: left var(--transition-normal);
    overflow-y: auto;
}

    .mobile-menu.active {
        left: 0;
    }

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid var(--color-gray-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
}

    .mobile-nav-links li {
        border-bottom: 1px solid var(--color-gray-dark);
    }

    .mobile-nav-links a {
        display: block;
        padding: 15px 20px;
        color: var(--color-white);
        text-decoration: none;
        transition: background var(--transition-normal);
    }

        .mobile-nav-links a:hover {
            background: var(--color-orange);
        }

.mobile-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/grab-hire.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 18px;
    padding: 0 2rem;
    color: var(--color-white);
}

.company-name {
    color: var(--color-orange);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 34px;
    max-width: 600px;
    opacity: 0.95;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--color-orange);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-medium);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(243, 109, 26, 0.3);
}

    .cta-button:hover {
        background: var(--color-orange-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(243, 109, 26, 0.4);
    }

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-label {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-orange);
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-yellow);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Services Section */
.services-section {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-gray-light);
}

.services-heading {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 15px;
}

.services-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
}

.services-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.service-btn {
    border: 1.5px solid var(--color-black);
    padding: 12px 25px;
    border-radius: 40px;
    background: var(--color-white);
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-normal);
}

    .service-btn:hover {
        background: var(--color-orange);
        color: var(--color-white);
        border-color: var(--color-orange);
    }

/* Cards */
.services-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 90px auto 60px;
}

.step-card {
    background: var(--color-white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 15px;
    background: var(--color-yellow);
    color: var(--color-black);
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.step-card img {
    width: 90%;
    margin-top: -100px;
    display: block;
}

.step-title {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 10px;
}

.step-desc {
    font-size: 15px;
    color: var(--color-gray-dark);
    line-height: 1.5;
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    background: #ffc800;
    padding: 15px 0;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 15s linear infinite;
}

.carousel-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

    .carousel-item svg {
        fill: red;
    }

    .carousel-item span {
        font-weight: bold;
        color: #222;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Skip Office Section */
.so-section {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    background: var(--color-white);
    padding: 40px 0;
    border-radius: 0 0 var(--border-radius-xl) 0;
}

.so-video-container {
    flex: 1;
    min-width: 300px;
    max-width: 580px;
    height: 500px;
    background: var(--color-orange);
    border-radius: 0 60px 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: relative;
    box-shadow: var(--shadow-large);
}

    .so-video-container iframe {
        width: 80%;
        height: 290px;
        border-radius: 40px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
        border: none;
        position: absolute;
        right: -50px;
        top: 61px;
    }

.so-logo-side {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: sideways-lr;
    font-weight: bold;
    color: var(--color-white);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.so-content {
    flex: 1;
    min-width: 300px;
    padding: 20px 40px;
}

    .so-content p {
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 16px;
        color: var(--color-text-dark);
    }

.so-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Skip Bin Section */
.sb-section {
    color: var(--color-white);
    padding: 60px 50px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.sb-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sb-content {
    padding-right: 40px;
}

.sb-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--color-text-light);
}

.sb-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sb-feature {
    background-color: var(--color-yellow);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d32f2f;
    font-weight: bold;
    transition: transform var(--transition-normal);
}

    .sb-feature:hover {
        transform: scale(1.05);
    }

.sb-feature-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.sb-feature-text {
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Carousel for Skip Bins */
.sb-carousel-container {
    position: relative;
    overflow: hidden;
}

.sb-carousel {
    display: flex;
    transition: transform var(--transition-normal);
}

.sb-carousel-item {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 18px;
    margin-right: 20px;
    min-width: 220px;
    text-align: center;
    color: #333;
    flex-shrink: 0;
}

.sb-bin-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    margin: 0 auto 20px;
    overflow: hidden;
}

    .sb-bin-image img {
        width: 100%;
    }

.sb-bin-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sb-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.sb-carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    font-size: 35px;
    cursor: pointer;
    transition: background-color var(--transition-normal);
    padding: 2px 0 7px;
}

    .sb-carousel-btn:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .sb-carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Final Book Section */
.fb-cont {
    background: var(--color-orange);
}

.sb-hero-section {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-hero-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 60px;
}

.sb-skip-bin-image {
    flex: 1;
}

    .sb-skip-bin-image img {
        width: 100%;
        margin-top: -140px;
    }

.sb-hero-content {
    color: var(--color-white);
}

.sb-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.1;
}

.sb-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Features Grid Section */
.sb-features-section {
    background: #eeeeee;
    padding: 80px 20px;
    border-radius: var(--border-radius-xl) 0 0 0;
}

.sb-features-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sb-features-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.sb-features-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 60px;
}

.sb-features-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.sb-feature-item {
    background: var(--color-white);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.sb-feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sb-feature-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.sb-bottom-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

    .hero-content > *:nth-child(1) {
        animation-delay: 0.2s;
    }

    .hero-content > *:nth-child(2) {
        animation-delay: 0.4s;
    }

    .hero-content > *:nth-child(3) {
        animation-delay: 0.6s;
    }

    .hero-content > *:nth-child(4) {
        animation-delay: 0.8s;
    }

/* Skip Office Section */
.skip-section {
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 60px 50px;
    flex-wrap: wrap;
}

.skip-left {
    flex: 1;
    min-width: 300px;
}

.skip-tagline {
    color: var(--color-orange);
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 12px;
    display: inline-block;
    border-left: 3px solid var(--color-orange);
    padding-left: 8px;
}

.skip-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--color-black);
}

.skip-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.skip-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.skip-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.skip-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-large);
}

    .skip-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* General Sections */
.gm-section {
    padding: 4rem 1rem;
    background: #fff;
}

.gm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gm-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gm-subtitle {
    color: #4f46e5;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.gm-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-top: 0.5rem;
}

.gm-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 1rem auto 0;
}

/* Grid */
.gm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gm-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
    .gm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sb-skip-bin-image img {
        margin-top: -70px;
    }

    .btn {
        padding-inline: 10px;
    }
}

@media (min-width: 1024px) {
    .gm-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.gm-card {
    border-radius: 0.5rem;
    padding: 2rem;
}

.gm-card-green {
    background: #ecfdf5;
}

.gm-card-red {
    background: #fef2f2;
}

.gm-card-gray {
    background: #f3f4f6;
}

.gm-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gm-list {
    list-style: none;
    padding: 0;
}

    .gm-list li {
        margin: 0.5rem 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
    }

.gm-list-green {
    color: #065f46;
}

.gm-list-red {
    color: #991b1b;
}

.gm-icon {
    margin-right: 0.5rem;
}

/* Input & Button */
.gm-input-group {
    display: flex;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    overflow: hidden;
}

.gm-input {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
}

.gm-btn-primary {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
}

    .gm-btn-primary:hover {
        background: #4338ca;
    }

.gm-result {
    margin-top: 1rem;
    padding: 1rem;
    background: #f3f4f6;
    border-radius: 0.375rem;
    display: none;
}


/* FAQ (Accordion) */
.faq-cont {
    background: #eeeeee;
}

.faq-section {
    max-width: 1600px;
    margin: auto;
    padding: 60px 50px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.faq-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.faq-item {
    background: var(--color-light);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

    .faq-question:hover {
        background: #eee;
    }

    .faq-question.active {
        background: var(--color-orange);
        color: var(--color-white);
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
    padding: 0 20px;
}

    .faq-answer p {
        padding: 15px 0;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #444;
    }

.faq-question::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>") no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    top: 30%;
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }
}

/* Testimonial */

.testimonials-container {
    background: white;
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 40px 50px;
}

.company-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    flex-shrink: 0;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

.company-title {
    color: #1a73e8;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ff9500;
    font-size: 20px;
}

    .star.half {
        position: relative;
        color: #ddd;
    }

        .star.half::before {
            content: '★';
            position: absolute;
            left: 0;
            color: #ff9500;
            width: 50%;
            overflow: hidden;
        }

.buttons {
    display: flex;
    gap: 10px;
}




/* Carousel */
.testimonials-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    width: -webkit-fill-available;
}

.reviews-container {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
    padding: 10px;
    width: max-content;
    /* track */
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    height: 220px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.reviewer-info h4 {
    font-size: 14px;
    color: #1a73e8;
    margin-bottom: 2px;
}

.reviewer-info .time {
    font-size: 12px;
    color: #666;
}

.google-icon {
    width: 16px;
    height: 16px;
    margin-left: auto;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

    .review-stars .star {
        color: #ff9500;
        font-size: 16px;
    }

.review-content {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    max-height: 100px;
    overflow-y: auto;
    flex: 1;
    padding-right: 5px;
}

    .review-content::-webkit-scrollbar {
        width: 4px;
    }

    .review-content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }

    .review-content::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }

        .review-content::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

/* Navigation arrows */
.nav-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .nav-arrow:hover {
        background: white;
        color: #333;
    }

    .nav-arrow.prev {
        left: 0px;
    }

    .nav-arrow.next {
        right: 0px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-wrapper {
        width: -webkit-fill-available;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonials-container, .faq-section, .skip-section, .pl-header, .pl-container {
        padding: 30px 25px;
    }

    .company-info {
        min-width: unset;
        width: 100%;
    }

    .review-card {
        width: 260px;
    }

    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .review-card {
        width: 240px;
    }

    .company-info {
        padding: 20px;
    }
}


.products-section {
    padding: 60px 20px;
    background: var(--color-gray-light);
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.products-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
}

    .products-title .highlight {
        color: var(--color-orange);
    }

.view-all-link {
    font-weight: 600;
    text-decoration: none;
    color: var(--color-orange);
    transition: color var(--transition-fast);
}

    .view-all-link:hover {
        color: var(--color-orange-dark);
    }

.products-wrapper {
    position: relative;
}

.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

    .products-scroll::-webkit-scrollbar {
        display: none;
    }

.product-card {
    flex: 0 0 270px;
    background: var(--color-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
}

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-small);
    }

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: var(--border-radius-medium);
    border-top-right-radius: var(--border-radius-medium);
}

.product-content {
    padding: 15px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 10px;
}

.product-link {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-orange);
}

    .product-link:hover {
        color: var(--color-orange-dark);
    }

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    bottom: -65px;
    transform: translateY(-58%);
    background: var(--color-orange);
    color: var(--color-white);
    border: none;
    font-size: 17px;
    cursor: pointer;
    padding: 8px 15px 10px;
    border-radius: 50%;
    box-shadow: var(--shadow-small);
    transition: background var(--transition-fast);
    z-index: 0;
}

    .scroll-btn:hover {
        background: var(--color-orange-dark);
    }

.left-btn {
    left: 46%;
}

.right-btn {
    right: 46%;
}






/* Page Header */
.pl-header {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-gray-light);
}

    .pl-header h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .pl-header p {
        font-size: 1rem;
        color: var(--color-gray-dark);
    }

.filters-section {
    padding: 10px 50px;
    border-bottom: 1px solid var(--color-gray-light);
}

.filters-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.filter-select {
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    font-size: 14px;
    background: var(--color-white);
    cursor: pointer;
}

.search-box input {
    padding: 12px 45px 12px 15px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-dark);
}

.filter-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-box {
    position: relative;
}
/* Product Grid Container */
.pl-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 50px;
}

.pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 270px));
    gap: 25px;
}

/* Product Card */
.pl-card {
    background: var(--color-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    padding: 14px;
}

    .pl-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-large);
    }

    .pl-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: var(--border-radius-medium);
        background: #f8f9fa;
    }

/* Card Content */
.pl-card-content {
    padding-top: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pl-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-black);
}

.pl-card-desc {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin-bottom: 15px;
    flex-grow: 1;
}

.stock-status {
    font-size: 12px;
    color: #666;
}

.pl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pl-price {
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-orange);
}
.place-order-btn {
    width: 100%;
    background: #f36d1a;
    color: white;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}
.security-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 12px;
    color: #666;
}


/* Responsive Tweaks */
@@media (max-width: 768px) {
    .pl-header h1 {
        font-size: 2rem;
    }

    .pl-card img {
        height: 180px;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .search-box input {
        width: 100%;
    }

    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .filter-group {
        justify-content: space-between;
    }

    .search-box input {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-buttons .btn:last-child {
        display: none;
    }

    .nav-links {
        gap: 20px;
    }

    .sb-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-content {
        padding-right: 0;
        text-align: center;
    }

    .sb-features {
        justify-content: center;
        max-width: 320px;
        margin: 0 auto;
    }
    .checkout-container {
        grid-template-columns: 1fr !important;
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .left-btn {
        left: 38%;
    }

    .right-btn {
        right: 38%;
    }
    .header-top {
        display: none;
    }

    .main-nav .nav-links,
    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-section {
        height: 80vh;
    }

    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .phone-info {
        align-items: center;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .services-heading {
        font-size: 26px;
    }

    .services-description {
        font-size: 15px;
    }

    .services-steps {
        gap: 60px;
    }

    .step-card {
        max-width: 100%;
    }

    .so-section {
        flex-direction: column;
        gap: 10px;
    }

    .so-video-container {
        width: 100%;
    }

    .so-content {
        padding: 25px 20px;
    }

    .so-logo-side {
        display: none;
    }

    .so-video-container iframe {
        height: 210px;
        position: static;
    }

    .sb-section {
        padding: 40px 15px;
    }

    .sb-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sb-feature {
        width: 120px;
        height: 120px;
    }

    .sb-carousel-item {
        min-width: 280px;
        padding: 20px;
    }

    .sb-bin-image {
        width: 180px;
        height: 130px;
    }

    .sb-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .sb-hero-title {
        font-size: 2.5rem;
    }

    .sb-features-grid {
        gap: 15px;
    }

    .sb-feature-item {
        width: 150px;
        height: 150px;
    }

    .carousel-track {
        gap: 30px;
    }

    .carousel-item img {
        width: 24px;
        height: 24px;
    }

    .carousel-item span {
        font-size: 14px;
    }

    .skip-section {
        flex-direction: column;
        text-align: center;
    }

    .skip-buttons {
        justify-content: center;
    }

    .skip-title {
        font-size: 32px;
    }

    .skip-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
        padding: 8px 12px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .company-name {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .sb-hero-title {
        font-size: 2rem;
    }

    .sb-features-title {
        font-size: 2rem;
    }

    .sb-features {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 140px;
    }

    .sb-carousel-item {
        min-width: 250px;
    }

    .sb-hero-buttons,
    .sb-bottom-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
        justify-content: center;
    }

    .sb-features-grid {
        flex-direction: column;
        align-items: center;
    }
}
