/* ==========================================================================
   MERGED STYLESHEET
   Section 1: new-style.css
   Section 2: style.css
   ========================================================================== */

/* ==========================================================================
   SECTION 1: new-style.css
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #e11d48;
    --primary-dark: #be123c;
    --primary-light: #fda4af;
    --primary-glow: rgba(225, 29, 72, 0.15);
    --primary-glow-strong: rgba(225, 29, 72, 0.4);
    --dark: #0f172a;
    --dark-muted: #334155;
    --light: #f8fafc;
    --light-accent: #f1f5f9;
    --white: #ffffff;
    --gray-muted: #64748b;
    --border: #e2e8f0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px var(--primary-glow-strong);

    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white);
    color: var(--dark-muted);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    transition: var(--transition-fast);
}

/* Animations Definitions */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(225, 29, 72, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(225, 29, 72, 0.5);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Scroll Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 1.25rem 0;
}

header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 3.2rem;
    width: auto;
    display: block;
}

.nav-drawer {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: #dc2626;
}

.nav-links a.active {
    color: #dc2626;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.login-btn {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
    margin-right: 0.5rem;
}

.login-btn:hover {
    color: #dc2626;
}

header .btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
}

.mobile-nav-actions {
    display: none;
}

.mobile-header-right {
    display: none;
}

/* Drawer logo: hidden on desktop */
.mobile-drawer-logo {
    display: none;
}

/* Circular hamburger button - hidden on desktop */
.mobile-nav-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1.1rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    flex-shrink: 0;
}

.mobile-nav-toggle:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.mobile-nav-toggle:active {
    transform: scale(0.95);
}

/* Toggle icon states */
.mobile-nav-toggle .hamburger-icon {
    display: block;
}

.mobile-nav-toggle .close-icon {
    display: none;
}

.mobile-nav-toggle.open .hamburger-icon {
    display: none;
}

.mobile-nav-toggle.open .close-icon {
    display: block;
}

/* Backdrop overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(3px);
    z-index: 997;
    transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.active {
    display: block;
}

/* Mobile responsive menu */
@media (max-width: 992px) {
    header {
        padding: 1rem 0rem;
    }

    header.scrolled {
        padding: 0.65rem 0rem;
    }

    /* Solid header background when drawer is open so logo stays visible */
    header.nav-open {
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        z-index: 1002;
    }

    .mobile-book-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    header.nav-open .mobile-book-btn {
        opacity: 0;
        pointer-events: none;
    }

    .logo {
        position: relative;
        z-index: 1002;
    }

    /* ── Drawer container ── */
    .nav-drawer {
        display: flex;
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100%;
        background-color: var(--white);
        box-shadow: 6px 0 30px rgba(0, 0, 0, 0.12);
        transition: left var(--transition-normal);
        z-index: 999;
        flex-direction: column;
        overflow: hidden;
    }

    .nav-drawer.open {
        left: 0;
    }

    /* ── Zone 1: Logo header — matches header logo ── */
    .drawer-header {
        flex-shrink: 0;
        padding: 1.1rem 1.5rem;
        display: flex;
        align-items: center;
    }

    .drawer-header a {
        display: inline-flex;
        align-items: center;
    }

    .drawer-header .logo-img {
        height: 3.2rem;
        width: auto;
    }

    /* ── Zone 2: Scrollable nav links — matches header .nav-links ── */
    .drawer-body {
        flex: 1 1 auto;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        list-style: none;
        padding: 0 1.5rem;
        margin: 0;
    }

    .drawer-body li {
        border-bottom: 1px solid var(--border);
    }

    .drawer-body li a {
        display: block;
        padding: 1rem 0;
        font-size: 0.95rem;
        font-weight: 600;
        color: #1e293b;
        width: 100%;
        transition: var(--transition-fast);
    }

    .drawer-body li a:hover,
    .drawer-body li a.active {
        color: #dc2626;
        padding-left: 0.4rem;
    }

    /* ── Zone 3: Pinned bottom — matches header nav-actions ── */
    .drawer-footer {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem 1.5rem;
        border-top: 1px solid var(--border);
    }

    .drawer-footer .login-btn {
        font-size: 0.95rem;
        font-weight: 600;
        color: #1e293b;
        margin-right: 0;
        padding: 0.2rem 0;
    }

    .drawer-footer .login-btn:hover {
        color: #dc2626;
    }

    .drawer-footer .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 1.6rem;
        font-size: 0.9rem;
        background-color: var(--primary);
        color: var(--white);
        border-radius: var(--radius-full);
    }

    .drawer-footer .btn-primary:hover {
        background-color: var(--primary-dark);
    }

    /* Hamburger toggle */
    .mobile-nav-toggle {
        display: flex;
        position: relative;
        z-index: 1002;
        margin-right: 0.25rem;
    }

    /* Hide desktop nav elements */
    .nav-links {
        display: none !important;
    }

    .nav-actions {
        display: none;
    }

    .mobile-nav-actions {
        display: none;
    }

    .mobile-drawer-logo {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 7rem 0 4rem 0;
    background-color: var(--white);
    overflow: hidden;
}

.hero-banner {
    background-color: #dc2626;
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-left {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    color: var(--white);
}

.hero-badge i {
    margin-right: 0.5rem;
}

.hero-left h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-left p {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    justify-content: right;
}

.hero-right-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-customer-bar {
    background-color: var(--white);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border);
}

.customer-avatars {
    display: flex;
}

.customer-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.customer-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.customer-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
}

.customer-text p {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

@media (max-width: 992px) {
    .hero {
        padding: 6rem 0 3rem 0;
    }

    .hero-banner {
        padding: 2.5rem 2rem;
    }

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-right-card {
        max-width: 100%;
    }

    .hero-img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .hero-right {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .hero {
        padding: 5rem 0 2rem 0;
    }

    .hero-banner {
        padding: 2rem 1.5rem;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .hero-left p {
        margin-bottom: 2rem;
    }

    .hero-img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 5rem 0 1.5rem 0;
    }

    .hero-banner {
        padding: 1.75rem 1.25rem;
    }

    .hero-left h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-left p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.78rem;
        margin-bottom: 1.25rem;
        padding: 0.4rem 1rem;
    }
}

/* Why Choose Ganvin Section */
.why-us {
    padding: 0rem 0rem 5rem 0rem;
    background-color: var(--white);
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: #000000;
    font-size: 1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-card.highlighted {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
}

.why-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: #F2F4F6;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.why-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.2;
}

.icon-hq {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    border-radius: 3px;
    padding: 0.5px 2.5px;
    line-height: 1;
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
}

.why-card h3 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-normal);
}

.why-card p {
    color: #000000;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    transition: var(--transition-normal);
}

.why-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    margin-top: auto;
    text-align: center;
}

.why-card .why-btn {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
}

.why-card .why-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.why-card:hover h3,
.why-card:hover p {
    color: var(--white);
}

.why-card:hover .why-icon {
    background-color: #ffffff;
    border: none;
    color: var(--primary);
}

.why-card:hover .why-btn {
    background-color: var(--white);
    color: var(--primary);
    border: none;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-card.highlighted:hover {
        transform: translateY(-8px);
    }
}

/* Services Section */
.services {
    padding: 2rem 0px 3rem;
    background-color: rgb(225 29 72 / 5%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.service-card:hover .service-img-container img {
    transform: scale(1.08);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.btn-arrow {
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform var(--transition-fast);
}

.service-btn:hover .btn-arrow {
    transform: translate(2px, -2px);
}

.service-card:not(.highlighted-service):hover .service-btn {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.service-card.highlighted-service .service-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.service-card.highlighted-service .service-btn:hover {
    background-color: var(--primary-dark);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* App Promo Section */
.app-promo {
    padding: 5rem 0;
    background-color: var(--white);
}

.app-promo-card {
    background-color: #dc2626;
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.app-promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.app-promo-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 500;
}

.app-promo-content p {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.app-badges {
    display: flex;
    gap: 1rem;
}

.app-badges img {
    height: 45px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.app-badges img:hover {
    transform: scale(1.05);
}

.app-mockups {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -4rem;
    margin-top: 6px;
}

.app-mockup-img {
    height: 100%;
    object-fit: contain;
}

@media (max-width: 992px) {
    .app-promo-card {
        padding: 3rem 2rem;
    }

    .app-promo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .app-mockups {
        height: 280px;
        margin-bottom: -3rem;
        margin-top: 0;
    }
}

/* Offers Section */
.offers {
    padding: 0 0 5rem 0;
    background-color: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    border-radius: var(--radius-md);
    position: relative;
    width: 100%;
    aspect-ratio: 520 / 243;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.offer-card:hover {
    transform: translateY(-8px);
}

/* Offer Card 1 */
.offer-card-1 {
    background: url('../images/new/offer-1.png') center/100% 100% no-repeat;
}

/* Offer Card 2 */
.offer-card-2 {
    background: url('../images/new/offer-2.png') center/100% 100% no-repeat;
}

/* Offer Card 3 */
.offer-card-3 {
    background: url('../images/new/offer-3.png') center/100% 100% no-repeat;
}

@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background-color: #f9fafb;
    background-color: rgb(225 29 72 / 5%);
    overflow: hidden;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3.5rem;
    align-items: center;
}

.testimonials-left {
    display: flex;
    flex-direction: column;
}

.testimonials-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.testimonials-left p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonials-nav {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    cursor: pointer;
}

.prev-btn {
    border: 2px solid #dc2626;
    color: #dc2626;
    background: transparent;
}

.prev-btn:hover {
    background-color: #dc2626;
    color: var(--white);
}

.next-btn {
    border: 2px solid #dc2626;
    background-color: #dc2626;
    color: var(--white);
}

.next-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.testimonials-right {
    overflow: hidden;
    width: 100%;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform var(--transition-normal);
    width: 100%;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    position: relative;
    flex: 0 0 calc((100% - 1.5rem) / 2);
    width: calc((100% - 1.5rem) / 2);
    flex-shrink: 0;
    align-items: center;
}

.testimonial-avatar-img {
    width: 130px;
    height: 175px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.testimonial-main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-user-header {
    margin-bottom: 0.5rem;
}

.testimonial-user-header h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: var(--gray-muted);
    margin-bottom: 0;
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background-color: #dc2626;
    color: var(--white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.rating {
    color: #fbbf24;
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        align-items: flex-start;
    }

    .testimonial-avatar-img {
        width: 110px;
        height: 150px;
        border-radius: 16px;
    }

    .testimonial-quote {
        top: 2rem;
        right: 1.5rem;
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.4rem;
        border-radius: 0.85rem;
    }
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background-color: var(--white);
}

.cta-banner {
    background-color: #dc2626;
    border-radius: var(--radius-lg);
    padding: 3.5rem 4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-content {
    text-align: left;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cta-banner p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-banner .btn-white {
    background-color: var(--white);
    color: #000000;
    box-shadow: none;
    border: 1px solid transparent;
}

.cta-banner .btn-white:hover {
    background-color: #f1f5f9;
    color: #000000;
    transform: translateY(-2px);
}

.cta-banner .btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    background-color: transparent;
}

.cta-banner .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
    }

    .cta-banner p {
        margin: 0 auto;
    }

    .cta-btns {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-banner {
        padding: 2.5rem 2rem;
    }

    .cta-banner h2 {
        font-size: 1.85rem;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-btns .btn {
        width: 100%;
    }
}

/* Frequently Asked Questions */
.faq {
    padding: 0 0 5rem 0;
    background-color: var(--white);
}

.faq-section-header {
    text-align: left;
    margin-bottom: 3.5rem;
}

.faq-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-radius: var(--radius-lg);
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.faq-item.highlighted.faq-open {
    background-color: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
}

.faq-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
}

.faq-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.faq-item.highlighted.faq-open .faq-number {
    background-color: var(--white);
    color: #dc2626;
}

.faq-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    flex-grow: 1;
    margin-right: 2.5rem;
    transition: var(--transition-fast);
}

.faq-item.highlighted.faq-open .faq-header h3 {
    color: var(--white);
}

.faq-toggle-icon {
    position: absolute;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #dc2626;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1;
}

.faq-toggle-icon::before {
    content: '+';
}

.faq-item.faq-open .faq-toggle-icon::before {
    content: '−';
}

.faq-item.highlighted.faq-open .faq-toggle-icon {
    color: var(--white);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-content p {
    padding: 0 2rem 1.5rem 5.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-muted);
}

.faq-item.highlighted.faq-open .faq-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Active FAQ Item states */
.faq-item.faq-open {
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.faq-item.faq-open .faq-content {
    max-height: 200px;
}

/* FAQ Footer Card styling */
.faq-footer-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
}

.faq-footer-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.faq-footer-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.faq-footer-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.faq-footer-text p {
    font-size: 0.9rem;
    color: var(--gray-muted);
    margin: 0;
}

.faq-contact-btn {
    background-color: #dc2626;
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .faq-footer-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }

    .faq-contact-btn {
        width: 100%;
    }

    .faq-content p {
        padding-left: 2rem;
    }
}

/* Footer Section */
footer {
    background-color: #dc2626;
    color: var(--white);
    padding: 5rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-img {
    filter: brightness(0) invert(1);
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.85;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(4px);
    color: var(--white);
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    opacity: 0.85;
}

.footer-info i {
    margin-top: 3px;
    font-size: 1.1rem;
}

.footer-get-touch p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.25rem;
}

.footer-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1.5px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
    transition: var(--transition-normal);
    margin-top: 0.5rem;
    cursor: pointer;
}

.footer-wa-btn:hover {
    background-color: #ffffff;
    color: #dc2626;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--white);
    color: #dc2626;
    transform: translateY(-3px);
}

.footer-legal-links {
    display: flex;
    align-items: center;
}

.footer-legal-links a {
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--white);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.footer-pipe {
    margin: 0 0.75rem;
    opacity: 0.4;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-pipe {
        display: none;
    }
}

/* About Us Page Custom Styles */

.about-vision {
    padding: 5rem 0;
    background-color: var(--white);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-visuals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vision-img-block {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow-sm);
}

.vision-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.vision-img-block:hover img {
    transform: scale(1.05);
}

.vision-stat-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    height: 240px;
}

.vision-stat-card.highlighted {
    background-color: #dc2626;
    border-color: #dc2626;
    color: var(--white);
}

.vision-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.vision-stat-card.highlighted h3 {
    color: var(--white);
}

.vision-stat-card p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    font-weight: 500;
    line-height: 1.4;
}

.vision-stat-card.highlighted p {
    color: rgba(255, 255, 255, 0.9);
}

.vision-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
}

.vision-right p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-muted);
    margin-bottom: 1.25rem;
}

.vision-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.vision-feature-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.vision-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.vision-feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    color: rgb(220, 38, 38);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #F2F4F6;
}

.vision-feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.5;
}

.vision-feature-card span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

/* Mission Section Custom Styles */
.about-mission {
    padding: 5.5rem 0;
    background-color: rgb(225 29 72 / 5%);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.mission-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.mission-card.highlighted {
    background-color: #dc2626;
    color: var(--white);
    background-color: var(--white);
    border: 1px solid var(--border);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.mission-card:hover h3,
.mission-card:hover p {
    color: var(--white);
}

.mission-card:hover .mission-icon {
    background-color: #ffffff;
    border: none;
    color: var(--primary);
}

.mission-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.75rem;
    background-color: #F2F4F6;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.35rem;
    transition: var(--transition-normal);
    border: 1px solid var(--border);
}

.mission-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    stroke-width: 2.2;
}

.mission-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.mission-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--dark-muted);
    margin: 0;
}

/* Core Services (About Page) */
.services-about {
    background-color: transparent;
    padding: 2rem 0px 0;
}

.about-services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.about-services-header .header-left {
    max-width: 600px;
}

.about-services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-weight: 700;
}

.about-services-header p {
    font-size: 1rem;
    color: var(--dark-muted);
}

.view-all-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.view-all-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.view-all-link i {
    transition: transform var(--transition-fast);
}

.view-all-link:hover i {
    transform: translateX(4px);
}

.service-btn-red {
    color: #dc2626;
    border: 1.5px solid #dc2626;
    background-color: transparent;
    transition: var(--transition-normal);
}

.service-btn-red:hover {
    background-color: #dc2626;
    color: var(--white);
    border-color: #dc2626;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .vision-visuals {
        grid-template-columns: 1fr;
    }

    .vision-stat-card {
        height: 180px;
        padding: 1.5rem;
    }

    .vision-img-block {
        height: 180px;
    }

    .vision-features {
        grid-template-columns: 1fr;
    }
}

/* Contact Us Page Custom Styles */

.contact-intro {
    position: relative;
    padding: 8rem 0 3.5rem 0;
    text-align: center;
    background-color: var(--white);
    background-image:
        radial-gradient(circle at 0% 100%, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.03) 40%, transparent 75%),
        radial-gradient(circle at 100% 0%, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.03) 40%, transparent 75%);
    overflow: hidden;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fff1f2;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.contact-intro h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.contact-intro p {
    font-size: 1rem;
    color: var(--dark-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    padding: 2rem 0 4rem 0;
}

.contact-form-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    font-family: var(--font-body);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background-color: var(--white);
    transition: var(--transition-fast);
}

.form-input::placeholder {
    color: #94a3b8;
}

.form-input:focus {
    border-color: #dc2626;
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.1rem;
    padding-right: 3rem;
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    background-color: #dc2626;
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    cursor: pointer;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #F2F4F6;
    border: 1px solid var(--border);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.contact-info-text p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.5;
    margin: 0;
}

.contact-store-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 280px;
}

.contact-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.contact-store-card:hover .contact-store-img {
    transform: scale(1.03);
}

.contact-store-overlay {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    width: calc(100% - 2.5rem);
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.contact-store-details {
    display: flex;
    flex-direction: column;
}

.contact-store-details h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.15rem;
}

.contact-store-details p {
    font-size: 0.85rem;
    color: var(--dark-muted);
    font-weight: 500;
    margin: 0;
}

.directions-btn {
    background-color: #dc2626;
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.directions-btn:hover {
    background-color: var(--primary-dark);
}

/* WhatsApp CTA Banner */
.whatsapp-cta-section {
    padding: 2rem 0 5rem 0;
}

.whatsapp-cta-banner {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.25) 100%),
        url('../images/executive.png') no-repeat center right;
    background-size: cover;
    border-radius: var(--radius-lg);
    padding: 4rem 3.5rem;       /* was 2.5rem — increases top/bottom space */
    min-height: 380px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.whatsapp-cta-content {
    text-align: left;
}

.whatsapp-cta-banner h2 {
    color: #ffffff;
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.whatsapp-cta-banner p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.whatsapp-btn {
    background-color: var(--white, #ffffff);
    color: #e11d48;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    flex-shrink: 0;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Overrides for Contact Page */
@media (max-width: 992px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .whatsapp-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .whatsapp-cta-content {
        text-align: center;
    }

    .whatsapp-cta-banner p {
        margin: 0 auto;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-badge {
        padding: 0.4rem 1rem;
    }

    .contact-intro h1 {
        font-size: 2.25rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

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

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-store-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .directions-btn {
        width: 100%;
    }
}

/* Service Page Specific Styles */

/* 1. Hero Section */
.service-hero {
    padding: 6rem 0 0 0;
    background-color: var(--white);
    padding-top: 7rem;
}

.service-hero-banner {
    background-color: #dc2626;
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.service-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.service-hero-left h1 {
    font-size: 3.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.service-hero-left p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 540px;
}

.service-hero-btns {
    display: flex;
    gap: 1rem;
}

.service-hero-btns .btn-white {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    background-color: var(--white);
    color: #dc2626;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
}

.service-hero-btns .btn-white:hover {
    background-color: var(--light-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-hero-btns .btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
}

.service-hero-btns .btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Right Column (Image Card) */
.service-hero-right {
    display: flex;
    justify-content: right;
}

.service-hero-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.service-hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.service-customer-bar {
    background-color: var(--white);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border);
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.customer-avatars img {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -0.65rem;
    object-fit: cover;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.customer-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.customer-text p {
    font-size: 0.8rem;
    color: var(--gray-muted);
    margin: 0;
}


/* 2. Process Section */
.process-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-card {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-4px);
}

.process-header {
    margin-bottom: 1.5rem;
}

.process-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 12px;
    background-color: #dc2626;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.process-card p {
    font-size: 0.95rem;
    color: var(--dark-muted);
    line-height: 1.6;
}


/* 3. Why Steam Section */
.why-steam-section {
    padding: 2rem 0px 3rem;
    background-color: rgb(225 29 72 / 5%);
}

.why-steam-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-steam-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.why-steam-card:nth-child(1) {
    grid-column: span 4;
}

.why-steam-card:nth-child(2) {
    grid-column: span 8;
}

.why-steam-card:nth-child(3) {
    grid-column: span 8;
}

.why-steam-card:nth-child(4) {
    grid-column: span 4;
}

.why-steam-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-steam-card.white-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
}

.why-steam-card.red-card {
    background-color: #dc2626;
    color: var(--white);
}

.why-steam-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.white-card .why-steam-icon {
    color: #dc2626;
    background-color: #F2F4F6;
    border: 1px solid var(--border);
}

.red-card .why-steam-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.why-steam-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.red-card h3 {
    color: var(--white);
}

.why-steam-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.white-card p {
    color: var(--dark-muted);
}

.red-card p {
    color: rgba(255, 255, 255, 0.95);
}

.steam-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    margin-top: auto;
    padding: 0;
}

.steam-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.white-card .steam-features-list li {
    color: var(--dark);
}

.red-card .steam-features-list li {
    color: var(--white);
}

.white-card .steam-features-list li i {
    color: #dc2626;
}

.red-card .steam-features-list li i {
    color: var(--white);
    opacity: 0.85;
}


/* 4. Pricing Investment Section */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 3rem 2.5rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted {
    background-color: #dc2626;
    color: var(--white);
    border-color: #dc2626;
    transform: scale(1.04);
    margin-top: 1rem;
}

.pricing-card.highlighted:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: #dc2626;
    padding: 0.3rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.pricing-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.pricing-card:not(.highlighted) .pricing-icon {
    background-color: rgba(220, 38, 38, 0.08);
    color: #dc2626;
}

.pricing-card.highlighted .pricing-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.pricing-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-card.highlighted h3 {
    color: var(--white);
}

.pricing-desc {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pricing-card:not(.highlighted) .pricing-desc {
    color: var(--gray-muted);
}

.pricing-card.highlighted .pricing-desc {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-price .price-val {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.pricing-price .unit {
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-card:not(.highlighted) .pricing-price .unit {
    color: var(--gray-muted);
}

.pricing-card.highlighted .pricing-price .unit {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    width: 100%;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
}

.pricing-card:not(.highlighted) .pricing-features li {
    color: var(--dark-muted);
}

.pricing-card.highlighted .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card:not(.highlighted) .pricing-features li i {
    color: #dc2626;
}

.pricing-card.highlighted .pricing-features li i {
    color: var(--white);
    opacity: 0.85;
}

.pricing-card .btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-align: center;
    display: inline-block;
    transition: var(--transition-fast);
}

.pricing-card .btn-outline-primary {
    border: 2px solid #dc2626;
    color: #dc2626;
    background-color: transparent;
}

.pricing-card .btn-outline-primary:hover {
    background-color: #dc2626;
    color: var(--white);
}


/* 5. CTA Banner Section */
.service-cta-section {
    padding: 0 0 5rem 0;
    background-color: var(--white);
}

.service-cta-banner {
    background-color: #dc2626;
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.service-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    line-height: 1.6;
}

.service-cta-btns {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}


/* Responsive Adaptations */
@media (max-width: 992px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-hero-banner {
        padding: 3rem 3rem;
        padding: 2.5rem 2rem;
    }

    .service-hero-card {
        max-width: 100%;
    }

    .service-hero-left h1 {
        font-size: 2.75rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-steam-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-steam-card:nth-child(1),
    .why-steam-card:nth-child(2),
    .why-steam-card:nth-child(3),
    .why-steam-card:nth-child(4) {
        grid-column: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card.highlighted {
        transform: none;
    }

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

    .service-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem;
        gap: 2rem;
    }

    .service-cta-btns {
        width: 100%;
    }

    .service-cta-btns .btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .service-hero-banner {
        padding: 2rem 1.5rem;
        padding: 2.5rem 2rem;
    }

    .service-hero-left h1 {
        font-size: 2.25rem;
    }

    .service-hero-left p {
        font-size: 1rem;
    }

    .service-hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .service-hero-btns .btn {
        width: 100%;
    }

    .service-hero-card {
        border-radius: var(--radius-md);
    }

    .service-hero-img {
        height: 220px;
    }

    .service-customer-bar {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .customer-avatars img {
        width: 2rem;
        height: 2rem;
    }

    .why-steam-card {
        padding: 2rem 1.5rem;
    }

    .steam-features-list {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .service-cta-banner {
        padding: 2.5rem 2rem;
    }

    .service-cta-content h2 {
        font-size: 1.75rem;
    }

    .service-cta-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==========================================================================
   CART PAGE CUSTOM STYLES & LAYOUT
   ========================================================================== */

.cart-page-body {
    background-color: #faf6ee;
}

.cart-main-content {
    padding: 2.5rem 0 5rem 0;
    min-height: 50vh;
}

/* Cart Intro Header Section */
.cart-intro {
    position: relative;
    padding: 8rem 0 3.5rem 0;
    text-align: center;
    background-color: var(--white);
    background-image:
        radial-gradient(circle at 0% 100%, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.03) 40%, transparent 75%),
        radial-gradient(circle at 100% 0%, rgba(225, 29, 72, 0.12) 0%, rgba(225, 29, 72, 0.03) 40%, transparent 75%);
    overflow: hidden;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fff1f2;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.cart-intro h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.cart-intro p {
    font-size: 1rem;
    color: var(--dark-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.cart-banner-wrapper {
    margin-bottom: 3rem;
    width: 100%;
}

.cart-banner {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.cart-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cart-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Cart Icon In Nav Header */
.cart-icon-btn, .mobile-cart-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--light-accent);
    color: var(--dark);
    margin-right: 0.5rem;
    transition: var(--transition-fast);
}

.cart-icon-btn:hover, .mobile-cart-icon-btn:hover {
    background-color: var(--primary-glow);
    color: var(--primary);
    transform: translateY(-2px);
}

.cart-icon-btn.active, .mobile-cart-icon-btn.active {
    color: var(--primary);
    background-color: var(--primary-glow);
}

.cart-badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.mobile-cart-icon-btn {
    margin-right: 0.75rem;
}

/* Grid Layout */
.cart-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

/* Left Column Area */
.cart-left-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Service Dropdown Selector */
.cart-service-dropdown {
    margin-bottom: 2.5rem;
    position: relative;
    width: 100%;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    background-color: #fffbeb;
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: var(--radius-md);
    cursor: pointer;
    user-select: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.dropdown-header:hover {
    background-color: #fef3c7;
    border-color: rgba(225, 29, 72, 0.3);
    box-shadow: var(--shadow-md);
}

.dropdown-header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.dropdown-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(225, 29, 72, 0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
}

.dropdown-current-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.25px;
}

.dropdown-header-right {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform var(--transition-normal);
}

.cart-service-dropdown.active .dropdown-header-right {
    transform: rotate(180deg);
}

/* Dropdown Content Card */
.dropdown-content-card {
    display: none;
    background-color: #fffbeb;
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
}

.cart-service-dropdown.active .dropdown-content-card {
    display: block;
    animation: slideDown var(--transition-normal) ease-in-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.95rem 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.25px;
    user-select: none;
}

.dropdown-list-item .list-item-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.dropdown-list-item .item-icon {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.dropdown-list-item .check-icon {
    display: none;
    color: var(--primary);
    font-size: 1rem;
}

.dropdown-list-item.active {
    background-color: rgba(225, 29, 72, 0.04);
    border-color: rgba(225, 29, 72, 0.25);
    color: var(--primary);
}

.dropdown-list-item.active .check-icon {
    display: block;
}

.dropdown-list-item:hover {
    background-color: rgba(225, 29, 72, 0.06);
    border-color: rgba(225, 29, 72, 0.35);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

/* Empty panel style */
.empty-service-panel {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-sm);
}

.empty-panel-icon {
    font-size: 3.5rem;
    color: var(--gray-muted);
    margin-bottom: 1.5rem;
}

.empty-service-panel h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.empty-service-panel p {
    font-size: 1rem;
    color: var(--dark-muted);
    margin-bottom: 1.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Active Content Panels Container */
.cart-content-panels-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cart-panel-content {
    display: none;
    animation: fadeIn var(--transition-normal) ease-in-out;
}

.cart-panel-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category Card */
.cart-category-card {
    background-color: var(--white);
    border: 1px solid rgba(225, 29, 72, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(225, 29, 72, 0.02), 0 2px 4px -2px rgba(225, 29, 72, 0.02);
    position: relative;
    transition: var(--transition-normal);
}

.cart-category-card:last-child {
    margin-bottom: 0;
}

.cart-category-card:hover {
    border-color: rgba(225, 29, 72, 0.18);
    transform: translateY(-2px);
}

.category-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

.category-card-header h3 {
    font-size: 1.15rem;
    color: var(--dark);
    font-weight: 700;
}

.remove-category-btn {
    color: var(--primary-light);
    font-size: 1.3rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
}

.remove-category-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Item Rows */
.category-card-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: #fefaf0;
    border: 1px solid rgba(225, 29, 72, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.cart-item-row:hover {
    background-color: #fff6e5;
    border-color: rgba(225, 29, 72, 0.12);
}

.item-visual-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.item-icon-bg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #fff1f2;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.item-label-text {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.item-details-meta {
    display: flex;
    flex-direction: column;
}

.item-sub-price {
    font-size: 0.85rem;
    color: var(--gray-muted);
    margin-top: 0.15rem;
}

/* Quantity controls */
.item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.quantity-change-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-change-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.15);
}

.quantity-number-val {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 18px;
    text-align: center;
}

/* Summary Card */
.checkout-summary-card {
    background-color: #fffbeb;
    border: 1px solid rgba(225, 29, 72, 0.15);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    transition: var(--transition-normal);
}

.checkout-summary-card:hover {
    box-shadow: var(--shadow-lg);
}

.checkout-summary-card h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px dashed rgba(225, 29, 72, 0.12);
    padding-bottom: 1rem;
}

.summary-breakdown-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
}

.summary-line-label {
    color: var(--dark-muted);
}

.summary-line-value {
    color: var(--dark);
}

.free-delivery-promo-msg {
    font-size: 0.8rem;
    color: #92400e;
    background-color: #fef3c7;
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-sm);
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.summary-divider-line {
    border-top: 1px solid rgba(225, 29, 72, 0.12);
    margin: 0.5rem 0;
}

.total-highlight-row {
    font-size: 1.35rem;
}

.total-highlight-row .summary-line-label {
    font-weight: 800;
    color: var(--dark);
}

.total-highlight-row .summary-line-value {
    font-weight: 800;
}

.font-red {
    color: var(--primary) !important;
}

.checkout-card-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-primary-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(225, 29, 72, 0.25);
    transition: var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-heading);
}

.booking-primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(225, 29, 72, 0.35);
}

.booking-outline-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-heading);
}

.booking-outline-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Success Modal Overlay */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: translateY(50px);
    transition: transform var(--transition-normal);
}

.booking-modal-overlay.active .success-modal-card {
    transform: translateY(0);
}

.success-icon-container {
    font-size: 4.5rem;
    color: #10b981;
    margin-bottom: 1.25rem;
    animation: float 4s ease-in-out infinite;
}

.success-modal-card h2 {
    font-size: 1.85rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.success-modal-card p {
    font-size: 1rem;
    color: var(--dark-muted);
    line-height: 1.5;
}

.order-receipt-summary {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--dark-muted);
}

.receipt-row .bold {
    font-weight: 700;
    color: var(--dark);
}

.receipt-footer-text {
    font-size: 0.85rem !important;
    color: var(--gray-muted) !important;
    margin-bottom: 2rem;
}

.modal-close-btn {
    width: 100%;
    padding: 0.95rem;
    background-color: var(--dark);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-heading);
}

.modal-close-btn:hover {
    background-color: var(--dark-muted);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-nav-tabs-column {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0.75rem;
        scroll-behavior: smooth;
        scrollbar-width: thin;
    }
    
    .cart-nav-tabs-column::-webkit-scrollbar {
        height: 6px;
    }
    
    .cart-nav-tabs-column::-webkit-scrollbar-thumb {
        background-color: rgba(225, 29, 72, 0.15);
        border-radius: var(--radius-full);
    }
    
    .cart-tab-btn {
        flex: 1 0 auto;
        margin-bottom: 0;
        padding: 0.85rem 1.25rem;
        gap: 0.75rem;
    }
    
    .cart-tab-btn .chevron-icon {
        display: none;
    }
    
    .cart-tab-btn.active {
        border-left: 1px solid rgba(225, 29, 72, 0.25);
        border-bottom: 4px solid var(--primary);
        padding-left: 1.25rem;
        padding-bottom: 0.65rem;
    }
    
    .checkout-summary-card {
        position: static;
    }
    
    .cart-intro h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .cart-intro {
        padding: 6.5rem 0 2.5rem 0;
    }
    
    .cart-intro h1 {
        font-size: 2rem;
    }
    
    .cart-main-content {
        padding: 2.5rem 0 4rem 0;
    }
    
    .cart-banner-wrapper {
        margin-bottom: 2rem;
    }
    
    .cart-tab-btn {
        padding: 0.75rem 1rem;
    }
    
    .tab-thumb {
        width: 34px;
        height: 34px;
    }
    
    .tab-btn-text h3 {
        font-size: 0.95rem;
    }
    
    .tab-btn-text span {
        display: none;
    }
    
    .cart-panel-content {
        padding: 0;
    }
    
    .cart-category-card {
        padding: 1.25rem 1rem;
        margin-bottom: 1.25rem;
    }
    
    .cart-item-row {
        padding: 0.85rem 1rem;
    }
    
    .item-icon-bg {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .item-label-text {
        font-size: 0.9rem;
    }
    
    .item-quantity-controls {
        gap: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .quantity-change-btn {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
    
    .checkout-summary-card {
        padding: 1.75rem 1.25rem;
    }
    
    .checkout-summary-card h2 {
        font-size: 1.3rem;
    }
    
    .success-modal-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Cart Toast Notification */
.cart-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10001;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    border-left: 4px solid var(--primary);
}

.cart-toast.active {
    transform: translateY(0);
    opacity: 1;
}

.cart-toast-msg {
    font-weight: 500;
    font-size: 0.95rem;
}

.cart-toast-link {
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: underline;
    margin-left: 0.5rem;
}

.cart-toast-link:hover {
    color: var(--primary);
}

/* Contact Form Status Message Banner */
.form-message-banner {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all var(--transition-normal);
}

.form-message-banner.error-banner {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #991b1b;
}

.form-message-banner.success-banner {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    color: #166534;
}

/* Validation Highlights */
.form-input.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Button Loading States */
.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--dark-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background-color: var(--light-accent);
    color: var(--primary);
}

.mobile-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: var(--light-accent);
    margin-top: 0.5rem;
    display: none;
}

.nav-dropdown:hover .mobile-dropdown, .nav-dropdown.active .mobile-dropdown {
    display: block;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.at-bottom {
    bottom: 120px; /* enough to clear the footer's legal-links row — adjust to taste */
}


.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   SECTION 2: style.css
   ========================================================================== */

html {
    background-color: #FEF1E0 !important;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    /* font-family: Poppins; */
    font-family: var(--font-body);
    background: #FEF1E0 url('../images/Group12724.svg') 0% 0% no-repeat padding-box !important;
    
}
                    /* common element styles */
                    
                    .gan-btn-primary {
                        background-color: #A41B13 ;
                        border: none;
                        padding: 10px;
                        border-radius: 5px;
                        margin: 10px 0;
                        color: #FEF1E0;
                        font-weight: bold;
                    }
                    
                    .gan-btn-lte {
                        color: #000;
                        background: #FEF1E0;
                        border: solid 1px #A41B13 ;
                        padding: 5px 15px;
                        border-radius: 5px;
                    }
                    
                    .gan-red {
                        color: #A41B13 ;
                    
                    }
                    
                    .gan-hash {
                        color: #FEF1E0;
                    }
                    
                    .gan-input {
                        background-color: #FEF1E0 !important;
                        padding: 10px !important;
                        border: none;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px !important;
                        width: 95% !important;
                    }
                    
                    @media (max-width: 768px) {
                        .gan-input {
                            width: 100% !important;
                        }
                    }
                    
                    .invalid-feedback {
                        padding-left: 27px;
                    }
                    
                    .check-avail-input {
                        width: 75%;
                        margin: 0 auto;
                    }
                    
                    .aln-r {
                        float: right;
                    }
                    
                    .align-c {
                        text-align: center;
                    }
                    
                    .pad-1p {
                        padding: 1%;
                    }
                    
                    .margin-15px {
                        margin: 15px;
                    }
                    
                    .margin-b-20 {
                        margin-bottom: 20px;
                    }
                    
                    .margin-3-0-p {
                        margin: 3% 0%;
                    }
                    /* common element style ends */
                    
                    .section-top {
                        background: #A41B13 ;
                        font-weight: bold;
                        color: #FEF1E0;
                    }
                    
                    .btn-square {
                        padding: 10px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-weight: normal;
                        list-style: none;
                        margin: 0;
                    }
                    
                    .section-menu {
                        filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.161));
                        background: #FEF1E0;
                    }
                    
                    .menu-location {
                        width: 40%;
                        height: auto;
                        float: left;
                        color: #000;
                    }
                    
                    .menu-location select {
                        height: 48px;
                    }
                    
                    .menu-list {
                        float: left;
                        width: 100%;
                        height: 75px;
                        padding: 10px 5px;
                    }
                    
                    .menu-list ul {
                        width: 100%;
                        height: auto;
                    }
                    
                    .menu-list ul li {
                        float: left;
                        list-style: none;
                        font-size: 25px;
                        min-width: 18%;
                        padding: 3px 9px;
                        margin: 4px;
                        color: #000;
                    }
                    
                    .menu-sign {
                        float: left;
                        padding: 10px 5px;
                    }
                    
                    .menu-signed {
                        float: left;
                        padding: 3% 0%;
                        display: flex;
                    }
                    
                    .menu-signed span {
                        float: left;
                        padding: 5px 10px;
                    }
                    
                    .menu-signed span img {
                        width: 25px;
                    }
                    
                    .menu-sign button {
                        background-color: #A41B13 ;
                    }
                    
                    .navbar-toggler {
                        padding: 0.50rem 0.75rem !important;
                    }
                    
                    @media (max-width: 600px) {
                        .navbar-brand img {
                            max-width: 135px;
                        }
                    }
               
                  
                    
                    .get-start {
                        width: 251px;
                        height: 67px;
                        font-size: 27px;
                        margin: 0% 25%;
                        text-decoration: auto;
                    }
                    
                    .get-start:hover {
                        color: #FEF1E0;
                    }
                    
                    .banner-section {       
                        padding: 60px 20px;
                        text-align: left;
                    }
                
                    .banner-section h2 {
                        font-size: 4rem;
                        font-weight: bold;
                    }
                
                    .banner-section .highlight {
                        color: #A41B13;
                    }
                
                    .banner-section p {
                        font-size: 1.5rem;
                        margin: 15px 0;
                    }
                
                    .banner-btn {
                        background-color: #A41B13;
                        color: #fff;
                        padding: 12px 25px;
                        border: none;
                        border-radius: 6px;
                        font-size: 1rem;
                        cursor: pointer;
                        transition: 0.3s ease;
                        
                    }
                
                    .banner-btn:hover {
                        background-color: #7a1410;
                    }
                    @media (max-width: 992px) {
                        .banner-section h2 {
                            font-size: 2rem;
                            text-align: center;
                        }
                
                        .banner-section p {
                            text-align: center;
                        }
                
                        .banner-section {
                            text-align: center;
                        }
                        .about-text h1 {
                            text-align: center;
                        }
                    }
                    .about-section {
                        padding: 60px 20px;
                    }
                
                    .about-image img {
                        border-radius: 12px;
                        width: 100%;
                        height: auto;
                    }
                
                    .about-text h1 {
                        font-size: 2rem;
                        font-weight: bold;
                    }
                
                    .about-text span {
                        color: #A41B13;
                    }
                
                    .about-text p {
                        font-size: 1rem;
                        line-height: 1.6;
                    }
                
                    /* ====== Download App Section ====== */
                    .download-section {
                        background-color: #FEF1E0;
                        padding: 60px 20px;
                        text-align: center;
                    }
                
                    .download-section h1 {
                        font-size: 2.5rem;
                        font-weight: bold;
                    }
                
                    .download-section p {
                        margin: 20px 0;
                        font-size: 1rem;
                        line-height: 1.6;
                    }
                
                    .download-buttons img {
                        width: 160px;
                        margin: 10px;
                    }
                
                    
                    @media (max-width: 768px) {
                        .banner-section {
                            padding: 40px 15px;
                        }
                
                        .about-section {
                            padding: 40px 15px;
                        }
                
                        .download-section h1 {
                            font-size: 2rem;
                        }
                    }
                    
                    .appointment {
                        background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../images/executive.png) center center no-repeat;
                        background-size: cover;
                    }
                    /* footer */
                    
                    .footer-area {
                        background: url(../images/01.jpg);
                        background-repeat: no-repeat;
                        background-size: cover;
                        background-position: center;
                        position: relative;
                        z-index: 1;
                    }
                    
                    .footer-area::before {
                        content: "";
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 100%;
                        background: #A41B13 ;
                        opacity: 0.9;
                        z-index: -1;
                    }
                    
                    .footer-widget {
                        position: relative;
                        z-index: 1;
                    }
                    
                    .social-icons a {
                        width: 50px;
                        height: 50px;
                        line-height: 40px;
                        display: inline-block;
                        text-align: center;
                        border-radius: 6px;
                        margin-right: 5px;
                        margin-bottom: 5px;
                        background: #FEF1E0;
                    }
                    
                    .pb-70 {
                        padding-bottom: 70px;
                    }
                    
                    .pt-100 {
                        padding-top: 100px;
                    }
                    
                    .footer-widget-box {
                        margin-bottom: 20px;
                    }
                    
                    .footer-widget-box p {
                        color: #FEF1E0;
                        padding-right: 18px;
                    }
                    
                    .footer-logo img {
                        width: 200px;
                        margin-bottom: 30px;
                    }
                    
                    .copyright {
                        padding: 20px 0;
                        border-top: 1px solid rgb(255 255 255);
                    }
                    
                    .footer-menu a {
                        color: #FEF1E0;
                    }
                    
                    li {
                        list-style: none;
                    }
                    
                    ul {
                        margin: 0;
                        padding: 0;
                    }
                    
                    .footer-list li a {
                        color: #FEF1E0;
                        transition: all .5s ease-in-out;
                    }
                    
                    .footer-list li a i {
                        margin-right: 5px;
                        color: #FEF1E0;
                    }
                    
                    .footer-menu a {
                        margin-right: 15px;
                        padding-right: 15px;
                        border-right: 1px solid rgb(255 255 255);
                    }
                    .footer-menu a:last-child {
                        border-right: none;
                    }
                    
                    .contact {
                        display: flex;
                        
                        flex-direction: row;
                    }
                    
                    .subscribe-form .form-control {
                        padding: 16px 20px;
                        border-radius: 8px;
                        box-shadow: none;
                        border: none;
                    }
                    
                    .subscribe-form .theme-btn {
                        margin-top: 20px;
                        width: 100%;
                    }
                    
                    .theme-btn {
                        font-size: 16px;
                        color: #FEF1E0;
                        padding: 14px 22px;
                        transition: all 0.5s;
                        text-transform: capitalize;
                        position: relative;
                        border-radius: 8px;
                        font-weight: 500;
                        text-align: center;
                        overflow: hidden;
                        border: none;
                        background: #A41B13 ;
                        box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
                        z-index: 1;
                    }
                    
                    .theme-btn::before {
                        content: "";
                        height: 300px;
                        width: 300px;
                        background: #193963;
                        border-radius: 50%;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translateY(-50%) translateX(-50%) scale(0);
                        transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                        z-index: -1;
                    }
                    
                    .copyright .copyright-text {
                        color: #FEF1E0;
                        margin-bottom: 0px;
                        font-size: 16px;
                    }
                    
                    .section-bag {
                        height: auto;
                        color: #000;
                        padding-top: 7rem;
                    }
                    
                    .bag-banner {
                        height: 300px;
                        background: transparent url('../images/bag-banner.png') 0% 0% no-repeat padding-box;
                    }
                    
                    .bag-list {
                        margin: 10px;
                    }
                    
                    .bag-list-h {
                        color: #000;
                        font-weight: bold;
                        font-size: 16px;
                    }
                    
                    .bag-items ul {
                        background: #FEF1E0;
                        padding: 0% 2%;
                    }
                    
                    .bag-items ul li {
                        list-style: none;
                        width: 100%;
                        padding: 5px;
                        box-shadow: 0px 1px 6px #00000029;
                        height: 100px;
                        border-radius: 10px;
                    }
                    
                    .bag-li-head {
                        margin-left: 3%;
                    }
                    
                    .bag-li-img {
                        opacity: 1;
                        width: 12%;
                        display: inline-block;
                        padding: 10px 0px;
                    }
                    
                    .bag-li-img img {
                        height: 50px;
                    }
                    
                    .bag-li-item {
                        font-size: 14px;
                        width: 28%;
                        display: inline-block;
                        padding: 10px 0px;
                    }
                    
                    .bag-li-price {
                        font-size: 14px;
                        width: 30%;
                        display: inline-block;
                        padding: 10px 0px;
                    }
                    
                    .bag-li-qty {
                        font-size: 16px;
                        width: 20%;
                        display: inline-block;
                        border-radius: 5px;
                        text-align: center;
                        height: 40px;
                        padding: 5px;
                    }
                    
                    @media (max-width: 1200px) {
                        .bag-li-qty {
                            width: 28%;
                        }
                        .bag-li-item {
                            width: 24%;
                        }
                    }
                    
                    .bag-qty-txt {
                        width: 25px;
                        text-align: center;
                    }
                    
                    .bag-payment {
                        padding: 10px;
                        box-shadow: 0px 1px 6px #00000029;
                        background: #FEF1E0;
                        color: #000;
                        padding: 25px;
                        margin: 10px 20px 0 0;
                        border-radius: 10px;
                    }
                    
                    .bag-payment ul {
                        width: 100%;
                        padding: 0% 5%;
                    }
                    
                    .bag-payment ul li {
                        list-style: none;
                        height: 60px;
                    }
                    
                    .bag-payment .head {
                        color: #000;
                        text-align: center;
                        font-weight: bold;
                        font-size: 25px;
                    }
                    
                    .bag-payment .item {
                        color: #000;
                    }
                    
                    .bag-payment .total {
                        border-top: 1px solid #FEF1E0;
                        color: #A41B13 ;
                        font-weight: bold;
                        padding-top: 10px;
                    }
                    
                    .bag-payment .button {
                        color: #FEF1E0;
                        text-align: center;
                    }
                    
                    .bag-payment .button button {
                        width: 100%;
                    }
                    
                    @media (max-width: 768px) {
                        .bag-payment {
                            margin: 10px 20px 0 20px;
                            margin-bottom: 30px;
                        }
                    }
                    
                    .bag-qty-txt {
                        width: 32%;
                        text-align: center;
                    }
                    
                    .section-subscribe h2 {
                        font-weight: bold;
                    }
                    
                    .switch-field {
                        display: flex;
                        justify-content: center;
                        margin-bottom: 36px;
                        overflow: hidden;
                        height: 50px;
                    }
                    
                    .switch-field input {
                        position: absolute !important;
                        clip: rect(0, 0, 0, 0);
                        height: 1px;
                        width: 1px;
                        border: 0;
                        overflow: hidden;
                    }
                    
                    .switch-field label {
                        background-color: #FEF1E0;
                        color: rgba(0, 0, 0, 0.6);
                        font-size: 14px;
                        line-height: 1;
                        text-align: center;
                        padding: 18px 20px;
                        margin-right: -1px;
                        border: 1px solid rgb(0 0 0 / 6%);
                        box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
                        transition: all 0.1s ease-in-out;
                    }
                    
                    .switch-field label:hover {
                        cursor: pointer;
                    }
                    
                    .switch-field input:checked+label {
                        background-color: #A41B13 ;
                        box-shadow: none;
                        color: #FEF1E0;
                        font-weight: bold;
                    }
                    
                    .switch-field label:first-of-type {
                        border-radius: 10px 0 0 10px;
                        width: 160px;
                    }
                    
                    .switch-field label:last-of-type {
                        border-radius: 0 10px 10px 0;
                        width: 160px;
                    }
                    
                    .subscribe-left {
                        height: auto;
                    }
                    
                    .subscribe-right {
                        height: auto;
                    }
                    
                    .subscribe-left button {
                        width: 80%;
                        margin: 1% 10%;
                    }
                    
                    .subscribe-feature {
                        width: 95%;
                        background: #FEF1E0;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px;
                        margin: 0 auto;
                    }
                    
                    .subscribe-feature h2 {
                        color: #A41B13 ;
                        font-weight: bold;
                        font-size: 40px;
                        text-align: center;
                        margin: 20px 20px 0px 20px;
                    }
                    
                    .subscribe-feature h3 {
                        color: #A41B13 ;
                        font-weight: bold;
                        font-size: 40px;
                        text-align: center;
                    }
                    
                    .subscribe-feature img {
                        height: 200px;
                        margin: 2% 40%
                    }
                    
                    .subscribe-feature p {
                        color: #FEF1E0;
                        font-weight: bold;
                        font-size: 25px;
                        text-align: center;
                    }
                    
                    .subscribe-feature ul {
                        padding: 2% 5%;
                        margin-left: 7%;
                    }
                    
                    .subscribe-feature ul li {
                        font-size: 20px;
                        list-style: url('../images/ganvin-checkmark-circle.svg');
                    }
                    
                    .subscribe-feature button {
                        text-align: center;
                        margin: 5% 10%;
                    }
                    
                    .subscribe-feature-h {
                        text-align: left;
                        font-weight: bold;
                        font-size: 25px;
                        margin-left: 5%;
                    }
                    
                    .subscribe-feature .subscribe-plan-head {
                        background: #FEF1E0;
                        color: #FEF1E0;
                        font-weight: bold;
                        font-size: 26px;
                        text-align: center;
                        border-radius: 10px 10px 0px 0px;
                        padding: 10px;
                    }
                    
                    .subscribe-feature .active {
                        background: #A41B13  !important;
                    }
                    
                    .section-payment {
                        color: #000;
                        padding-top: 7rem;
                    }
                    
                    .section-payment h3 {
                        font-weight: bold;
                        font-size: 25px;
                        text-align: center;
                    }
                    
                    .section-payment h2 {
                        font-weight: bold;
                        font-size: 2rem;
                    }
                    
                    .payment-left {
                        padding: 35px;
                        background: #FEF1E0;
                        min-height: 450px;
                        border-radius: 10px;
                        box-shadow: 0px 1px 6px #00000029;
                        margin: 20px 15px 30px 40px;
                    }
                    
                    .payment-right {
                        padding: 35px;
                        background: #FEF1E0;
                        height: 325px;
                        border-radius: 10px;
                        box-shadow: 0px 1px 6px #00000029;
                        margin: 20px 40px 30px 15px;
                    }
                    
                    .qr_code {
                        margin-top: 15px;
                        height: 232px;
                        border-radius: 12px;
                        line-height: 19px;
                        display: inline-block;
                        width: 100%;
                        text-align: center;
                    }
                    
                    @media (max-width: 1024px) {
                        .section-payment h3 {
                            font-size: 20px;
                        }
                    }
                    
                    @media (max-width: 768px) {
                        .payment-right {
                            margin: 0 40px 30px 40px;
                            height: 300px;
                        }
                        .payment-left {
                            margin: 20px 40px 30px 40px;
                            height: 420px;
                        }
                        .section-payment h3 {
                            font-size: 20px;
                        }
                    }
                    
                    @media (max-width: 320px) {
                        .payment-left {
                            height: 475px;
                        }
                    }
                    
                    .payment-right ul li {
                        list-style: none;
                        line-height: 40px;
                    }
                    
                    .payment-total {
                        font-weight: bold;
                        font-size: 24px;
                        color: #A41B13 ;
                    }
                    
                    .payment-right .amount {
                        text-align: right;
                    }
                    
                    .section-profile {
                        min-height: 750px;
                        padding-top: 7rem;
                    }
                    
                    .profile-left {
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 5px;
                        background: #FEF1E0;
                        padding: 15px 5px;
                        margin: 15px;
                    }
                    
                    .profile-right {
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 5px;
                        background: #FEF1E0;
                        padding: 15px 10px 30px 10px;
                        margin: 15px;
                    }
                    
                    .profile-head {
                        padding: 15px 5px 0px 15px;
                        margin: 5px 15px 0px 15px;
                    }
                    
                    .profile-head h2 {
                        font-weight: bold;
                    }
                    
                    .profile-head p {
                        font-size: 20px;
                    }
                    
                    .profile-left ul li {
                        list-style: none;
                        height: 60px;
                        padding: 10px 5px;
                        color: #000;
                        font-size: 19px;
                        margin: 10px 0px;
                        cursor: pointer;
                    }
                    
                    .profile-left ul li a:hover {
                        color: #A41B13  !important;
                    }
                    
                    .profile-left ul li:hover {
                        color: #A41B13 ;
                        font-size: 17px;
                    }
                    
                    .profile-left .active {
                        color: #A41B13  !important;
                        cursor: default;
                    }
                    
                    .profile-left ul li a {
                        color: #000;
                    }
                    
                    .profile-left .active a {
                        color: #A41B13  !important;
                    }
                    
                    .profile-left ul li img {
                        width: 32px;
                        margin-left: 10px;
                        display: inline-block;   /* override the global img{display:block} reset */
                        vertical-align: middle;
                    }
                    
                    .profile-name {
                        border-bottom: solid 1px #ccc;
                        margin: 0;
                        padding: 0;
                    }
                    
                    .profile-img {
                        float: left;
                        margin: 10px 20px;
                    }
                    
                    .profile-img img {
                        width: 130px;
                        border-radius: 50%;
                    }
                    
                    .profile-upload {
                        float: left;
                        margin: 7% 10px;
                    }
                    
                    .profile-delete {
                        float: left;
                        margin: 7% 0px;
                    }
                    
                    .profile-edit-head {
                        margin: 25px 0px 25px 25px;
                    }
                    
                    @media (max-width: 768px) {
                        .profile-edit-head {
                            margin: 20px 0;
                        }
                    }
                    
                    .profile-default-address {
                        padding: 10px;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px;
                    }
                    
                    .profile-select-address {
                        padding: 12px;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px;
                        margin-bottom: 10px;
                    }
                    
                    @media (max-width: 1000px) {
                        .profile-select-address {
                            margin-right: 0 !important;
                        }
                    }
                    
                    @media (max-width: 560px) {
                        #bag-item-div {
                            display: none !important;
                        }
                    }
                    
                    @media (max-width: 500px) {
                        .profile-select-address label {
                            font-size: 10px !important;
                        }
                        #bag-item-div {
                            display: none !important;
                        }
                        #time1 {
                            display: none;
                        }
                        #date1 {
                            display: none;
                        }
                    }
                    
                    @media (max-width: 560px) {
                        .bag-content {
                            font-size: 12px !important;
                        }
                    }
                    
                    .profile-select-address label {
                        font-size: 23px;
                        font-weight: bold;
                    }
                    
                    .profile-select-address p {
                        font-size: 15px;
                    }
                    
                    .profile-default-address h3 {
                        font-size: 23px;
                        font-weight: bold;
                    }
                    
                    .profile-default-address p {
                        font-size: 19px;
                    }
                    
                    .section-confirm-address {
                        padding: 1% 3%;
                        background: #FEF1E0;
                        border-radius: 10px;
                        box-shadow: 0px 1px 6px #00000029;
                        margin: 2% 2%;
                        padding-top: 7rem;

                    }
                    
                    .bag-pickup-address,
                    .bag-delivery-address {
                        padding: 20px 25px;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px;
                    }
                    
                    .bag-pickup-address.active,
                    .bag-delivery-address.active {
                        border-top: 4px solid #A41B13 ;
                    }
                    
                    .bag-address-new {
                        padding: 10px 18px;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px;
                        color: #A41B13 ;
                        margin: 15px 0px;
                        font-weight: 500;
                    }
                    
                    .bag-address-list {
                        padding: 20px 25px;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 10px;
                    }
                    
                    .bag-address-list :hover {
                        border-color: solid 1px #A41B13 ;
                    }
                    
                    .profile-changepass {
                        height: 60px;
                        width: 40%;
                        margin: 25px 0 20px 25px;
                    }
                    
                    .profile-changpass-input {
                        margin: 2% 3%;
                        width: 45%;
                        height: 60px;
                    }
                    
                    .order-status p {
                        box-shadow: 0px 1px 0px #00000029;
                    }
                    
                    .order-status-disable {
                        color: #959090 !important;
                    }
                    
                    .edit-pro-input {
                        margin: 10px 20px;
                        width: 75%;
                    }
                    
                    .order-status-l {
                        float: left;
                        width: 20%;
                        padding: 0% 2%;
                        font-weight: bold;
                    }
                    
                    .order-status-m {
                        width: 5%;
                        float: left;
                        text-align: center;
                        color: #A41B13 ;
                        font-size: 35px;
                    }
                    
                    .order-status-r {
                        width: 70%;
                        float: left;
                        padding: 0% 2%;
                    }
                    
                    .edit-pro-btn {
                        width: 25%;
                    }
                    
                    .section-availability {
                        padding: 40px;
                        background: #FEF1E0;
                        margin: 0 auto;
                        text-align: center;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 15px;
                    }
                    
                    .section-availability h2 {
                        font-size: 35px;
                    }
                    
                    @media (max-width: 768px) {
                        .section-availability h2 {
                            font-size: 25px !important;
                        }
                    }
                    
                    @media (max-width: 320px) {
                        .back {
                            margin: 25px !important;
                        }
                    }
                    
                    .section-welcome {
                        background: #FEF1E0;
                    }
                    
                    .welcome-gender label {
                        float: left;
                        clear: none;
                        display: block;
                        height: 47px;
                        text-align: center;
                        padding: 10px 20px;
                        margin: 10px 10px 10px 0;
                        color: #A41B13 ;
                        background: #FEF1E0 !important;
                        border: 1px solid #ccc;
                    }
                    
                    .welcome-gender input[type=radio],
                    input.radio {
                        clear: none;
                        margin: 2px 0 0 2px;
                        opacity: 0;
                    }
                    
                    .welcome-gender input[type="radio"]:checked+label {
                        color: #FEF1E0;
                        background: #A41B13  !important;
                    }
                    
                    .welcome-text label {
                        width: 100%;
                        padding: 10px 0 10px;
                    }
                    
                    .welcome-text input {
                        width: 75%;
                    }
                    
                    @media (max-width: 768px) {
                        .welcome-gender label {
                            float: none !important;
                        }
                        .gan-btn-primary {
                            width: 100% !important;
                        }
                    }
                    
                    .reciept-head {
                        background: transparent url('../images/reciept-bg.svg') 0% 0% no-repeat padding-box;
                        min-height: 300px;
                        text-align: center;
                        background-position: center;
                        background-size: contain;
                        
                    }
                    
                    .subscription-head {
                        min-height: 220px;
                        text-align: center;
                        background-position: center;
                    }
                    
                    @media (max-width: 768px) {
                        .subscription-head img {
                            max-width: 200px;
                        }
                    }
                    
                    @media (max-width: 420px) {
                        .subscription-head img {
                            max-width: 160px;
                            min-height: 180px;
                        }
                    }
                    
                    .reciept-details {
                        color: #000;
                    }
                    
                    @media (max-width: 576px) {
                        .reciept-details h4 {
                            font-size: 13px !important;
                        }
                        .reciept-items .head {
                            font-size: 30px !important;
                        }
                        .reciept-items ul li .item-name {
                            font-size: 12px !important;
                        }
                        .reciept-items ul li .item-amount {
                            font-size: 11px !important;
                        }
                        .reciept-items ul li .item-price-desc {
                            font-size: 12px !important;
                        }
                        .reciept-items ul li .item-price {
                            font-size: 12px !important;
                        }
                        .reciept-head {
                            min-height: 110px !important;
                        }
                    }
                    
                    .reciept-details p {
                        color: #959090;
                        font-size: 20px;
                        text-align: justify;
                        box-shadow: 0px 1px 0px #00000029;
                        padding-bottom: 10px;
                    }
                    
                    .reciept-items {
                        width: 100%;
                    }
                    
                    .reciept-items ul {
                        width: 100%;
                    }
                    
                    .reciept-items ul li {
                        list-style: none;
                        padding: 10px 0px;
                    }
                    
                    .reciept-items .head {
                        font-size: 34px;
                        font-weight: bold;
                        color: #000;
                    }
                    
                    .reciept-items ul li .item-name {
                        width: 50%;
                        color: #959090;
                        float: left;
                        font-size: 25px;
                    }
                    
                    .reciept-items ul li .item-amount {
                        width: 20%;
                        float: left;
                        font-size: 25px;
                        text-align: right;
                        font-weight: 500;
                    }
                    
                    .reciept-items ul li .item-action {
                        width: 30%;
                        color: #000;
                        float: left;
                        font-size: 10px;
                        text-align: right;
                    }
                    
                    .reciept-items ul li .item-price-desc {
                        float: left;
                        font-size: 25px;
                        font-weight: 500;
                    }
                    
                    .reciept-items ul li .item-price {
                        width: 20%;
                        float: right;
                        font-size: 25px;
                        text-align: right;
                        font-weight: 500;
                    }
                    
                    .reciept-items ul li .item-action:hover {
                        width: 10%;
                        color: #000;
                        float: left;
                    }
                    
                    .reciept-items ul .reciept-item-total {
                        color: #A41B13;
                        font-weight: bold;
                        font-size: 28px;
                    }
                    
                    .reciept-items ul li .item-action:hover {
                        color: #A41B13 ;
                    }
                    /* my plans */
                    
                    @media (max-width: 520px) {
                        .ad img {
                            padding: 5px !important;
                        }
                    }
                    
                    .myplan-content {
                        padding: 2% 0%;
                        margin: 3% auto;
                        height: 200px;
                        width: 70%;
                        box-shadow: 0px 1px 6px #00000029;
                        text-align: center;
                        border-radius: 10px;
                    }
                    
                    .myplan-content h3 {
                        color: #A41B13 ;
                        font-weight: bold;
                        font-size: 32px;
                        line-height: 36px;
                    }
                    
                    .myplan-content p {
                        color: #959090;
                    }
                    
                    .myplan-content button {
                        height: 59px;
                        width: 30%;
                        font-size: 147%;
                    }
                    
                    .notification {
                        padding: 4% 4%;
                        margin: 0 auto;
                        height: 80%;
                        width: 90%;
                        background: #A41B13 ;
                        color: #FEF1E0;
                        border-radius: 10px;
                        box-shadow: 2px 2px 4px 3px #ddc6c6;
                    }
                    
                    @media (max-width: 600px) {
                        .notification_date {
                            padding: 10px 0px 0px 10px !important;
                        }
                        .notification_image img {
                            display: none;
                        }
                        .notification_value {
                            padding: 10px 0px 0px 2px !important;
                        }
                    }
                    
                    .notification-head {
                        height: 80%;
                        width: 90%;
                        font-weight: bolder;
                        color: #A41B13 ;
                    }
                    
                    .notification-content ul {
                        width: 100%;
                    }
                    
                    .notification-content ul li {
                        width: 100%;
                        height: 60px;
                        padding: 0% 1%;
                    }
                    
                    .section-signup {
                        height: 600px;
                        color: #000;
                    }
                    
                    .signup-left {
                        padding: 5%;
                    }
                    
                    .signup-left h3 {
                        margin: 0% 2%;
                        font-size: 58px;
                    }
                    
                    .signup-left label {
                        margin: 1% 2%;
                    }
                    
                    .signup-left input {
                        margin: 1% 2%;
                        height: 60px;
                        width: 50%;
                    }
                    
                    .signup-left button {
                        margin: 1% 2%;
                        height: 67px;
                        padding: 2%;
                        font-size: 20px;
                    }
                    
                    .signup-right {
                        height: 600px;
                        background: transparent url('../images/signup-mob-bg.svg') 0% 0% no-repeat padding-box;
                    }
                    
                    .section-verify {
                        height: 600px;
                        color: #000;
                    }
                    
                    .verify-left {
                        padding: 5%;
                        text-align: center;
                    }
                    
                    .gan-vrf-input {
                        text-align: center;
                    }
                    
                    .verify-left h3 {
                        margin: 0% 2%;
                        font-size: 58px;
                    }
                    
                    .verify-left label {
                        margin: 1% 2%;
                    }
                    
                    .verify-left input {
                        margin: 1% 1%;
                        height: 60px;
                        width: 60px;
                        text-align: center;
                    }
                    
                    .otp-input {
                        font-size: 30px;
                        font-weight: 700;
                    }
                    
                    .verify-left button {
                        margin: 1% 2%;
                        height: 67px;
                        padding: 2%;
                        font-size: 20px;
                    }
                    
                    .verify-right {
                        height: 600px;
                        background: transparent url('../images/signup-mob-bg.svg') 0% 0% no-repeat padding-box;
                    }
                    
                    .schedule-left {
                        padding: 1% 3%;
                        background: #FEF1E0;
                        border-radius: 10px;
                        box-shadow: inset 0 1px 3px rgb(0 0 0 / 30%), 0 1px rgb(255 255 255 / 10%);
                        margin: 10% 12%;
                    }
                    
                    .schedule-right {
                        padding: 1% 3%;
                        background: #FEF1E0;
                        border-radius: 10px;
                        box-shadow: inset 0 1px 3px rgb(0 0 0 / 30%), 0 1px rgb(255 255 255 / 10%);
                        margin: 10% 12%;
                    }
                    /* about us */
                    
                    .hero-header {
                        background: url(../images/about_image.png) center center no-repeat;
                        background-size: cover;
                    }
                    
                    ul#pills-tab {
                        border-bottom: 3px solid #A41B13 ;
                    }
                    
                    .nav-pills .nav-link.active,
                    .nav-pills .show>.nav-link {
                        background-color: #A41B13  !important;
                        padding: 15px 25px;
                        font-weight: 600;
                        font-size: 18px;
                        border-radius: 5px 5px 0 0;
                        color: #FEF1E0 !important;
                    }
                    
                    .nav-link {
                        color: #000 !important;
                        font-weight: 600 !important;
                        font-size: 22px;
                    }
                    /* subscription */
                    
                    @media (max-width: 768px) {
                        .subscribe-feature button {
                            text-align: center;
                            margin: 5% 10%;
                            padding: 20px;
                            max-width: 80%;
                        }
                    }
                    /* profile */
                    
                    @media (max-width: 768px) {
                        .edit-pro-input {
                            margin: 10px 0px;
                        }
                    }
                    
                    @media (max-width: 1200px) {
                        .edit_profile .edit-pro-input {
                            margin: 10px 0px;
                        }
                    }
                    
                    .edit {
                        max-width: 250px;
                    }
                    
                    @media (max-width: 1200px) {
                        .edit {
                            max-width: 240px;
                        }
                    }
                    
                    @media (max-width: 768px) {
                        .edit {
                            max-width: 240px;
                        }
                    }
                    
                    @media (max-width: 414px) {
                        .edit {
                            max-width: 245px;
                        }
                    }
                    
                    @media (max-width: 375px) {
                        .edit {
                            max-width: 230px;
                        }
                    }
                    
                    @media (max-width: 360px) {
                        .edit {
                            max-width: 220px;
                        }
                    }
                    
                    @media (max-width: 280px) {
                        .edit {
                            max-width: 130px;
                        }
                        .gan-btn-primary {
                            font-size: 12px;
                            max-width: 130px;
                        }
                    }
                    
                    @media (max-width: 1200px) {
                        .profile-img img {
                            width: 90px;
                        }
                    }
                    
                    @media (max-width: 768px) {
                        .profile-img img {
                            width: 70px;
                        }
                    }
                    /* Manage Password */
                    
                    @media (max-width: 768px) {
                        .profile-changpass-input {
                            margin: 2% 0%;
                        }
                        .profile-changepass {
                            margin: 20px 0;
                        }
                    }
                    /* Manage address */
                    
                    .manage {
                        padding-left: 35px !important;
                    }
                    
                    @media (max-width: 768px) {
                        .manage {
                            padding: 10px !important;
                        }
                    }
                    
                    @media (max-width: 768px) {
                        .profile-select-address .w3-badge {
                            display: none;
                        }
                    }
                    /* section-reciept */
                    
                    .section-reciept {
                        padding: 40px;
                        background: #FEF1E0;
                        margin: 0 auto;
                        text-align: center;
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 15px;
                        padding-top: 7rem;
                    }
                    
                    @media (max-width: 768px) {
                        .section-reciept .align-c p {
                            font-size: 19px !important;
                        }
                        .reciept-details p {
                            font-size: 16px;
                        }
                        .reciept-items ul li .item-name {
                            font-size: 20px;
                        }
                        .reciept-items ul li .item-amount {
                            font-size: 20px;
                        }
                        .reciept-head {
                            min-height: 200px;
                        }
                        .reciept-items ul {
                            padding: 0;
                        }
                    }
                    
                    @media (min-width: 576px) {
                        .reciept-head {
                            min-height: 200px;
                        }
                        .section-reciept .align-c p {
                            font-size: 15px;
                        }
                    }
                    /* mypage */
                    
                    .offer_area {
                        background: url(../images/mypage.png) no-repeat center;
                        background-size: cover;
                        height: 600px;
                    }
                    
                    @media (max-width: 991px) {
                        .offer_area {
                            background: #f6f6f6
                        }
                    }
                    
                    .offer_content {
                        padding: 132px 0px;
                    }
                    
                    .offer_content h3 {
                        font-size: 24px;
                        font-weight: 400;
                        color: #4a4a4a;
                    }
                    
                    .offer_content h2 {
                        font-size: 30px;
                        line-height: 50px;
                        color: #A41B13;
                        margin-bottom: 0px;
                        font-weight: bold;
                    }
                    
                    .main_btn {
                        display: inline-block;
                        background: #A41B13 ;
                        padding: 0px 32px;
                        letter-spacing: 0.25px;
                        color: #FEF1E0;
                        font-family: "Roboto", sans-serif;
                        font-size: 12px;
                        font-weight: 500;
                        line-height: 44px;
                        outline: none !important;
                        box-shadow: none !important;
                        text-align: center;
                        border: 1px solid #A41B13 ;
                        cursor: pointer;
                        text-transform: uppercase;
                        transition: all 300ms linear 0s;
                        border-radius: 5px;
                        font-weight: 800;
                    }
                    
                    .single-product {
                        text-align: center;
                        margin-bottom: 25px;
                    }
                    
                    .v-slide-group__wrapper {
                        contain: content;
                        display: flex;
                        flex: 1 1 auto;
                        overflow: hidden;
                    }
                    
                    .v-slide-group__content {
                        padding: 5px 0;
                    }
                    
                    .v-slide-group__content {
                        display: flex;
                        flex: 1 0 auto;
                        position: relative;
                        transition: .3s cubic-bezier(.25, .8, .5, 1);
                        white-space: nowrap;
                    }
                    
                    .v-chip {
                        margin: 4px 8px 4px 0;
                    }
                    
                    .theme--light.v-chip:not(.v-chip--active) {
                        background: #A41B13 ;
                        color: #FEF1E0;
                        font-weight: 600;
                        border-radius: 5px;
                    }
                    
                    .theme--light.v-chip {
                        border-color: rgba(0, 0, 0, .12);
                        color: rgba(0, 0, 0, .87);
                    }
                    
                    .v-chip.v-size--small {
                        font-size: 18px;
                        height: 35px;
                        font-weight: 600;
                    }
                    
                    .v-chip {
                        align-items: center;
                        display: inline-flex;
                        line-height: 20px;
                        max-width: 100%;
                        outline: none;
                        overflow: hidden;
                        padding: 0 12px;
                        position: relative;
                        text-decoration: none;
                        transition-duration: .28s;
                        transition-property: box-shadow, opacity;
                        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
                        vertical-align: middle;
                        white-space: nowrap;
                    }
                    
                    .pa-4 {
                        padding: 16px!important;
                    }
                    
                    .v-card--flat {
                        box-shadow: 0px 1px 6px #00000029;
                        border-radius: 5px !important;
                    }
                    
                    .order-2 {
                        order: 2!important;
                    }
                    
                    .v-btn:not(.v-btn--round).v-size--small {
                        height: 28px;
                        padding: 0 12.4444444444px;
                    }
                    
                    .accent--text {
                        color: var(--v-accent-base) !important;
                        caret-color: var(--v-accent-base) !important;
                    }
                    
                    .m-fs-t {
                        font-size: 1.07rem!important;
                        font-weight: 600!important;
                        word-break: break-word;
                        color: black;
                    }
                    
                    .align-center {
                        align-items: center!important;
                    }
                    
                    .mr-2 {
                        margin-right: 8px!important;
                    }
                    
                    .v-btn {
                        align-items: center;
                        border-radius: 5px;
                        font-weight: 500;
                        letter-spacing: .0892857143em;
                        justify-content: center;
                        outline: 0;
                        position: relative;
                        text-decoration: none;
                        text-indent: 0.0892857143em;
                        text-transform: uppercase;
                        transition-duration: .28s;
                        transition-property: box-shadow, transform, opacity;
                        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
                        user-select: none;
                        vertical-align: middle;
                        white-space: nowrap;
                        background-color: #A41B13  !important;
                        border: none;
                        color: #FEF1E0 !important;
                    }
                    /*** Nav Card ***/
                    
                    .nav-tabs {
                        margin-bottom: 9px;
                        padding-bottom: 0px;
                        position: relative;
                        border: 0;
                        display: flex;
                        justify-content: center;
                    }
                    
                    @media only screen and (min-width: 768px) and (max-width: 991px) {
                        .nav-tabs {
                            justify-content: start
                        }
                    }
                    
                    @media only screen and (min-width: 576px) and (max-width: 767px) {
                        .nav-tabs {
                            justify-content: start
                        }
                    }
                    
                    @media (max-width: 575px) {
                        .nav-tabs {
                            justify-content: start
                        }
                    }
                    
                    .nav-tabs .nav-item.show .nav-link,
                    .nav-tabs .nav-link.active {
                        background: none;
                        border-bottom: 2px solid #1B77E3;
                        z-index: 5;
                        position: relative
                    }
                    
                    .nav-tabs .nav-item {
                        display: block;
                        color: #161e46;
                        font-weight: bold;
                        text-transform: capitalize;
                        font-size: 16px
                    }
                    
                    .nav-tabs .nav-link {
                        border: 0;
                        border-bottom: 2px solid transparent;
                        padding: 10px 20px
                    }
                    
                    .mb-30 {
                        margin-bottom: 30px;
                    }
                    
                    .single-services img {
                        width: 100%;
                    }
                    
                    .mb-35 {
                        margin-bottom: 35px;
                    }
                    
                    .service-list .nav .active {
                        background: #A41B13 ;
                        color: #FEF1E0 !important;
                        border-radius: 10px 10px 0px 0px;
                        min-width: 150px;
                        text-align: center;
                    }

                                   
                    #modal-default .modal-content {
                        border-radius: 8px;
                        background-color: #FEF1E0;
                        border: none;
                    }

                    #modal-default .modal-header {
                        background-color: #A41B13;
                        color: #FEF1E0;
                        border-bottom: none;
                        border-radius: 8px 8px 0 0;
                        padding: 0.75rem 1rem;
                    }

                    #modal-default .modal-title {
                        font-size: 1.1rem;
                        color:#FEF1E0;
                        margin: 0;
                    }

                    #modal-default .modal-body {
                        padding: 1rem;
                    }

                    #modal-default .form-check-input[type="radio"] {
                        accent-color: #A41B13; /* simple red radio */
                        margin-right: 6px;
                    }

                    #modal-default label {
                        color: #A41B13;
                        font-size: 0.95rem;
                    }
   /* Container */
.service-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.radio-button input[type="radio"] {
    display: none;
}

/* Label as button */
.radio-button label {
    display: inline-block;
    padding: 10px 20px;
    border: solid #A41B13 1px;
    border-radius: 6px;
    background-color: #FEF1E0;
    color: #A41B13;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Checked state */
.radio-button input[type="radio"]:checked + label {
    background-color: #A41B13 !important;
    color: #FEF1E0 !important;  /* force white text */
  
}

/* Fix focus/active state too */
.radio-button label:active,
.radio-button label:focus {
    color: #FEF1E0 !important;
    background-color: #A41B13 !important;
}

.inline-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
}