/* ==================== ROOT VARIABLES ==================== */
:root {
    --orange: #C86836;
    --orange-light: #C86836;
    --orange-bg: #FDF5F0;
    --dark: #2D2D2D;
    --footer-bg: #C86836;
    --section-light: #FBF6F2;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.text-orange {
    color: var(--orange) !important;
}

img {
    max-width: 100%;
}

.fw-bold {
    font-weight: 500 !important;
}

/* ==================== BUTTONS ==================== */
.btn-primary-orange {
    background-color: var(--orange);
    border-color: var(--orange);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 18px;
}

.btn-primary-orange:hover {
    background-color: #B04E22;
    border-color: #B04E22;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(200, 90, 42, 0.3);
}

.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 18px;
    padding: 15px 0px;
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.btn-outline-dark {
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-light {
    border-radius: 50px;
    font-weight: 600;
}

.btn-light {
    border-radius: 50px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 0px 0;
}

.navbar .nav-link {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #333 !important;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--orange) !important;
}

/* ==================== HERO SECTION ==================== */
section {
    padding: 90px 0;
}
.hero-h1{
    font-size: 65px;
    font-weight: 700;
}

.hero-section {
    background-color: #111;
    padding: 0;
    position: relative;
}

.hero-video {
    display: block;
    width: 100%;
    height: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-logo-wrapper {
    padding: 60px 0;
}

.hero-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
}

/* ==================== DECORATIVE BAR ==================== */
.decorative-bar {
    display: flex;
    height: 50px;
    overflow: hidden;
}

.bar-orange {
    flex: 1;
    background: var(--orange);
    transform: skewX(-20deg);
    margin: 0 -20px;
}

.bar-dark {
    flex: 0.6;
    background: var(--dark);
    transform: skewX(-20deg);
    margin: 0 -20px;
}

.bar-orange-2 {
    flex: 1;
    background: var(--orange);
    transform: skewX(-20deg);
    margin: 0 -20px;
}

/* ==================== SECTION BACKGROUNDS ==================== */
.section-light {
    background-color: var(--section-light);
}

.section-orange {
    background-color: var(--orange);
}

.section-orange-gradient {
    background: linear-gradient(135deg, var(--orange) 0%, #A04520 100%);
}

/* ==================== PAIN POINT CARDS ==================== */
.pain-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.icon-box-sm {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background-color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

/* ==================== PARTNERS ==================== */
.partners-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.printing {
    padding-left: 35px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
    justify-content: start;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-img-wrapper {

    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    /* background: #f8f8f8; */
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-info {
    text-align: left;
}

.service-info h5 {
    font-size: 24px;
    color: #222;
}

/* ==================== FULL SERVICE CARD ==================== */
.full-service-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    padding: 40px;
}

.addon-box {
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    max-width: 400px;
}

/* ==================== ACCORDION ==================== */
.accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    padding: 16px 0;
    font-size: 1rem;
}

.accordion-button:not(.collapsed) {
    color: #333;
}

/* Right chevron arrow ">" that rotates to "v" when expanded */
.platform-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C85A2A'%3e%3cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.platform-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C85A2A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding-top: 0;
}

.accordion-item {
    background: transparent;
}

/* Platform accordion image transition */
.platform-img-wrapper img {
    transition: opacity 0.3s ease;
}

/* ==================== WHY CHOOSE CARDS ==================== */
.why-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==================== FEATURE LIST ==================== */
.feature-list li {
    line-height: 1.4;
}

.feature-list strong {
    font-weight: 500;
}

/* ==================== FOOTER ==================== */
.footer-dark {
    background-color: var(--footer-bg);
}

.footer-dark h6 {
    font-size: 22px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--orange);
    color: #fff;
}

.border-secondary {
    color: #fff !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-section {
        min-height: 350px;
    }

    .navbar .d-flex.align-items-center.gap-3 {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: 280px;
    }

    .decorative-bar {
        height: 30px;
    }

    .partners-track {
        gap: 30px;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .service-info {
        text-align: center;
    }

    .service-img-wrapper {
        width: 100%;
        height: 100%;
    }
}

/* ==================== SMOOTH SCROLL ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== SELECTION COLOR ==================== */
::selection {
    background-color: var(--orange);
    color: #fff;
}

/* ==================== ABOUT PAGE ==================== */

/* --- Hero Section --- */
.about-hero-section {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
    background: var(--section-light);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-pattern {
    position: absolute;
    inset: 0;
    background-color: var(--orange);
    color: var(--white);
}

.about-badge-pill {
    display: inline-block;
    background: #fff;
    color: #e8956a;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    border: #fff;
}

.about-hero-title {
    font-size: 65px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero-title .text-highlight {
    position: relative;
}

.about-hero-subtitle {
    font-size: 22px;
    color: var(--white);

    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.about-hero-subtitle strong {
    color: var(--white);

}

.about-hero-scroll-indicator {
    display: flex;
    justify-content: center;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    /* animation: scrollPulse 2s ease-in-out infinite; */
}

/* @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 30px; }
    50% { opacity: 1; height: 45px; }
} */

/* --- Section Labels & Titles --- */
.about-label-tag {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-label-tag-light {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.35;
}

/* --- Our Story Section --- */
.about-story-section {
    background: #fff;
}

.story-content {
    position: relative;
}

.story-paragraph {
    display: flex;
    gap: 20px;
    padding: 0 0 24px;
    position: relative;
}

.story-paragraph::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 16px;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.story-paragraph:last-child::before {
    display: none;
}

.story-dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 50%;
    background: #eee;
    margin-top: 4px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.story-dot.active {
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(200, 104, 54, 0.2);
}

.story-paragraph p {
    color: #555;
    line-height: 1.75;
    margin: 0;
    font-size: 1.02rem;
}

.story-highlight p {
    color: var(--dark);
    font-size: 1.1rem;
}

.story-result-card {
    background: var(--orange-bg);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid rgba(200, 104, 54, 0.15);
}

.story-result-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.story-result-card h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.story-result-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-result-tagline {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
    font-style: italic;
}

.story-quote-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #eee;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.quote-mark {
    margin-bottom: 12px;
    opacity: 0.6;
}

.story-quote-card blockquote {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 12px;
    font-style: italic;
}

.quote-attribution {
    color: #888;
    font-size: 0.95rem;
    margin: 0;
}

.story-closing {
    padding-top: 20px;
}

.story-closing-text {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    background: var(--orange-bg);
    padding: 24px 36px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.story-closing-text strong {
    color: var(--dark);
}

/* --- Vision & Mission Section --- */
.about-vm-section {
    background: var(--section-light);
}

.vm-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #e8956a);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.vm-card:hover::before {
    opacity: 1;
}

.vm-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.vm-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), #e8956a);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vm-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
}

.vm-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 20px;
}

.vm-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    border-radius: 3px;
    margin-bottom: 20px;
}

.vm-text {
    color: #666;
    line-height: 1.7;
    font-size: 1.02rem;
    margin-bottom: 8px;
}

/* --- Values Section --- */
.about-values-section {
    background: #fff;
}

.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 104, 54, 0.2);
}

.value-card:hover::after {
    width: 60px;
}

.value-card:hover .value-icon-circle {
    background: var(--orange);
    color: #fff;
    transform: scale(1.1);
}

.value-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--orange-bg);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.value-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.value-text {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* --- What Makes Us Different Section --- */
.about-different-section {
    /* background: var(--section-light); */
    background-color: var(--orange);

}

.different-subtitle {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.different-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.different-check-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.different-check-item:hover {
    border-color: rgba(200, 104, 54, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transform: translateX(4px);
}

.check-icon-box {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

.different-check-item span {
    color: #444;
    font-size: 0.98rem;
    font-weight: 500;
}

.different-visual {
    display: flex;
    justify-content: center;
}

.different-visual-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #eee;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
}

.visual-flow-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.flow-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--orange-bg), #fde8db);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
}

.visual-flow-item h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.visual-flow-item p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.flow-connector {
    display: flex;
    justify-content: center;
    padding-left: 23px;
}

/* --- Looking Ahead Section --- */
.about-ahead-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    /* background: linear-gradient(160deg, var(--orange) 0%, #A04520 60%, #7a3318 100%); */
    background: var(--section-light);
}

.about-ahead-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-ahead-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.ahead-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ahead-text {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 16px;
}

.ahead-subtitle {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
}

.btn-ahead-primary {
    background: #fff;
    color: var(--orange);
    border-radius: 10px;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-ahead-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-ahead-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-ahead-outline:hover {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- About Page Responsive --- */
@media (max-width: 991.98px) {
    .about-hero-title {
        font-size: 2.4rem;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

    .ahead-title {
        font-size: 1.8rem;
    }

    .vm-card {
        padding: 30px;
    }

    .different-visual-card {
        max-width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-h1{
       font-size: 1.9rem;
    }
    .about-hero-section {
        padding: 80px 0 70px;
    }

    .about-hero-title {
        font-size: 1.9rem;
    }

    .about-hero-subtitle {
        font-size: 1.05rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }

    .ahead-title {
        font-size: 1.5rem;
    }

    .story-closing-text {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .vm-card {
        padding: 24px;
    }

    .vm-title {
        font-size: 1.15rem;
    }

    .value-card {
        padding: 28px 20px;
    }

    .different-check-item {
        padding: 12px 16px;
    }

    .btn-ahead-primary,
    .btn-ahead-outline {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
}

/* ==================== CONTACT PAGE ==================== */

/* --- Contact Hero --- */
.hero {
    background: linear-gradient(135deg, #5C3A1E 0%, #3E2510 100%);
    padding: 70px 0;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Contact Section --- */
.contact-section {
    background: #f5f0eb;
    padding: 80px 0;
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
} */

/* --- Contact Form --- */
.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form>p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0d8d0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(200, 104, 54, 0.12);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--orange);
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #B04E22;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 90, 42, 0.35);
}

/* --- Contact Info Cards --- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 .icon {
    font-size: 1.3rem;
}

.info-card p {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 4px;
    line-height: 1.6;
}

.info-card p strong {
    color: var(--dark);
    font-weight: 600;
}

.info-card a {
    color: var(--orange);
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #B04E22;
}

/* --- Quick Actions --- */
.quick-actions {
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.quick-actions h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: #fdf8f5;
    border: 1.5px solid #f0e6dd;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    border-color: var(--orange);
    background: #fff;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(200, 104, 54, 0.1);
}

.action-btn .icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--orange-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 2px;
}

.action-btn-content p {
    font-size: 0.82rem;
    color: #888;
    margin: 0;
}

/* --- Map Section --- */
.map-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.map-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: #f9f5f1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-placeholder .icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 12px;
}

.map-placeholder p {
    font-size: 0.95rem;
    color: #888;
    margin: 0;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    padding: 28px 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-color: rgba(200, 104, 54, 0.2);
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--section-light);
    padding: 80px 0;
    text-align: center;
}

.cta-section .container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-white {
    display: inline-block;
    background: #c86836;
    color: #fff;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    background: #f9f5f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--orange);
}

/* --- Contact Page Responsive --- */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-card {
        padding: 22px;
    }

    .quick-actions {
        padding: 22px;
    }

    .map-section,
    .faq-section,
    .cta-section {
        padding: 50px 0;
    }

    .map-section h2,
    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 1.7rem;
    }

    .map-placeholder {
        height: 250px;
    }
}


/* =======================signup========================== */

/* Hero Section */
.signup-hero {
    background-color: var(--orange);
    color: var(--white);

    padding: 100px 0 40px;
}

.signup-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.signup-hero h1 {
    font-size: 65px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.signup-hero p {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.signup-hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.signup-hero-badges span {
    color: #fff;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.badge-icon {
    font-size: 24px;
}

/* Main Booking Section */
.booking-section {
    padding: 60px 0;
    background: #f5f0eb;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Side - Benefits */
.benefits-column h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-content p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* What to Expect */
.what-to-expect {
    background: var(--light-panel);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.what-to-expect h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 20px;
}

.what-to-expect ul {
    list-style: none;
}

.what-to-expect li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
    font-size: 15px;
}

.what-to-expect li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

/* Right Side - Booking Form */
.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.booking-form-container h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.booking-form-container .subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 15px;
}

.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.form-progress:before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--light-panel);
    z-index: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-panel);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-step.active .step-number {
    background: var(--primary);
    color: var(--white);
}

.progress-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-label {
    font-size: 12px;
    color: var(--gray);
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-panel);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Calendar Selector */
.calendar-container {
    margin: 25px 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-size: 18px;
    color: var(--dark);
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-nav button {
    background: var(--light-panel);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.calendar-nav button:hover {
    background: var(--primary);
    color: var(--white);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.calendar-day {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    padding: 8px 0;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.date-button {
    background: var(--white);
    border: 2px solid var(--light-panel);
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    font-weight: 500;
}

.date-button:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--bg);
}

.date-button.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.date-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.time-slot {
    background: var(--white);
    border: 2px solid var(--light-panel);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: var(--primary);
    background: var(--bg);
}

.time-slot.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-signup {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    flex: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 104, 54, 0.3);
}

.btn-secondary {
    background: var(--light-panel);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--gray);
    color: var(--white);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    color: var(--success);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--gray);
    margin-bottom: 10px;
}

.booking-details {
    background: var(--light-panel);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.booking-details h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.booking-details p {
    margin: 8px 0;
    color: var(--dark);
}

/* Testimonial */
.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid var(--primary);
}

.testimonial-content {
    font-style: italic;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--gray);
    font-size: 14px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.trust-badge-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.trust-badge-text {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

:root {
    --primary: #C86836;
    --bg: #FFF6F1;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --dark-panel: #2C1A0E;
    --mid-panel: #6B3520;
    --light-panel: #F5E6D8;
    --gray: #7A6A5A;
    --accent-dark: #8B4513;
    --success: #27AE60;
}

/* Responsive */
@media (max-width: 968px) {
    .signup-hero h1 {
        font-size: 36px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        position: relative;
        top: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .signup-hero-badges {
        flex-direction: column;
        align-items: center;
    }
}



/* ========================================products================================= */


/* product Section */
.product-hero {
    background-color: var(--orange);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.product-hero h1 {
    font-size: 65px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.product-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.product-hero-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    /* height: 250px; */
    background: var(--light-panel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 30px;
}

.product-title {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-description {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin: 20px 0;
}

.product-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--dark);
    font-size: 14px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-panel);
}

.product-price {
    font-size: 14px;
    color: var(--gray);
}

.btn-order {
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn-order:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Featured Product */
.featured-product {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 50px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.featured-product:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.featured-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.95;
    max-width: 700px;
}

.featured-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
    max-width: 800px;
}

.featured-features li {
    list-style: none;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
}

.featured-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Comparison Table */
.comparison-section {
    background: var(--white);
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: var(--dark-panel);
    color: var(--white);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.comparison-table th:first-child {
    width: 35%;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--light-panel);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 18px 20px;
    background: var(--white);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark);
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.dash-icon {
    color: var(--gray);
}

/* ==================== STRENGTHEN PRACTICES SECTION ==================== */
.strengthen-section {
    background: #fff;
    padding: 90px 0;
}

.strengthen-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.strengthen-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.strengthen-content {
    padding-left: 20px;
}

.strengthen-tag {
    display: inline-block;
    background: var(--orange-bg);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.strengthen-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.strengthen-check-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--section-light);
    border-radius: 12px;
    border: 1px solid #f0e8e0;
    transition: all 0.3s ease;
}

.strengthen-check-item:hover {
    border-color: rgba(200, 104, 54, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.strengthen-check-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.strengthen-check-item h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.strengthen-check-item p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .strengthen-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .strengthen-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767.98px) {
    .strengthen-section {
        padding: 60px 0;
    }

    .strengthen-img-wrapper {
        min-height: 280px;
        padding: 30px;
    }

    .strengthen-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-badge {
        font-size: 0.82rem;
        padding: 10px 16px;
    }

    .strengthen-check-item {
        padding: 14px 16px;
    }
}

/* ==================== BUILT FOR O&P TEAMS SECTION ==================== */
.built-for-section {
    background: var(--section-light);
    padding: 90px 0;
}

.built-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.built-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #e8956a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.built-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 104, 54, 0.2);
}

.built-card:hover::before {
    opacity: 1;
}

.built-card-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-bg);
    color: var(--orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.built-card:hover .built-card-icon {
    background: var(--orange);
    color: #fff;
    transform: scale(1.05);
}

.built-card h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.built-card p {
    color: #777;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767.98px) {
    .built-for-section {
        padding: 60px 0;
    }

    .built-card {
        padding: 24px 20px;
    }
}