/* Custom CSS for Get2Cash Redesign */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --primary-color: #000000;
    --secondary-color: #DDA530;
    --secondary-color-hover: #c49127;
    --hover-bg: #f5f5f5;
    --transition-speed: 0.3s;
    --text-muted: #6b6b6b;
}

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

body {
    /* Use premium Outfit font */
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

/* Top Marquee Banner */
.top-marquee {
    background-color: var(--secondary-color);
    color: #000000;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 500;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

/* Top Info Bar (between marquee and navbar) */
.topbar {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.85rem;
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.topbar-warning-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.topbar-warning-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-link {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    text-underline-offset: 3px;
}

.topbar-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.topbar-link:focus-visible {
    color: #ffffff;
    text-decoration: underline;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-icon {
    font-size: 1rem;
}

.topbar-item-text {
    display: flex;
    flex-direction: column;
}

.topbar-item-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

.topbar-item-value {
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .topbar-inner {
        padding: 0.5rem 1.5rem;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .topbar-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 0.8rem;
        gap: 0.5rem;
        text-align: left;
    }

    .topbar-warning-text {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        flex: 1;
        min-width: 0;
    }

    .topbar-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        justify-content: space-between;
    }

    .topbar-item {
        justify-content: flex-start;
        flex: 1;
    }

    .topbar-item:last-child {
        justify-content: flex-end;
        text-align: right;
    }

    /* "Learn more >" as a borderless button/link on mobile & tablet */
    .topbar-link {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        white-space: nowrap;
        padding: 0;
        border: none;
        background: transparent;
        text-decoration: none;
    }

    .topbar-link::after {
        content: " >";
    }
}

@media (max-width: 480px) {
    .topbar-right {
        gap: 0.75rem;
    }

    .topbar-item-label {
        font-size: 0.7rem;
    }

    .topbar-item-value {
        font-size: 0.75rem;
    }
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-marquee 20s linear infinite;
    min-width: 200%;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.top-marquee span {
    margin: 0 1.5rem;
    /* The gap between keywords */
    display: inline-flex;
    white-space: nowrap;
}

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

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

/* Navbar System */
.navbar-container {
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* light premium shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.navbar-logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.navbar-logo a:hover img {
    transform: scale(1.03);
    /* micro-animation */
}

/* Navbar Menu Items - Desktop */
.navbar-menu {
    display: block;
}

.navbar-menu ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.navbar-menu .menu-item {
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
    display: block;
}

.navbar-menu .menu-item.active {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.navbar-menu .menu-item:not(.active):hover {
    background-color: var(--hover-bg);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

/* Submenu / Dropdown Styles */
.navbar-menu .has-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    /* Golden Theme */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 6px;
    padding: 0.8rem 0;
    list-style: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.navbar-menu .has-dropdown:hover .dropdown-menu,
.navbar-menu .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.8rem;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    border-bottom: none;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(0, 0, 0, 0.08);
    /* Highlight contrast on gold */
    color: #ffffff;
}

/* Arrow toggle specific styles */
.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.mobile-nav-footer {
    display: none;
    /* Hide in desktop */
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Toggle Active Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar-content {
        height: 80px;
        padding: 0 1.5rem;
    }

    .navbar-logo img {
        height: 55px;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        overflow-y: auto;
        /* Critical fix for mobile scrolling lock */
        background-color: #ffffff;
        padding: 85px 1.5rem 40px;
        /* Slightly refined top block */
        display: flex;
        flex-direction: column;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-menu ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.2rem;
        /* Reduced from 1rem to compress layout */
    }

    .navbar-menu .menu-item {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        /* Trim excessive bulkiness */
        font-size: 1.15rem;
        border-radius: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-menu .menu-item.active {
        background-color: transparent;
        color: var(--secondary-color);
        font-weight: 700;
    }

    /* Mobile Dropdown Fix - Accordion */
    .navbar-menu .has-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-menu .has-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-arrow {
        padding: 0.5rem;
        cursor: pointer;
        display: inline-flex;
        border-radius: 4px;
        transition: transform 0.3s ease;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #fbf8f1;
        /* Solid light gold background for contrast */
        display: block;
        min-width: 100%;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        border-radius: 0;
        border: none;
        transition: max-height 0.3s ease-out;
    }

    /* When active, expand menu */
    .navbar-menu .has-dropdown.active .dropdown-menu {
        max-height: 1000px;
        /* arbitrary large value for smooth accordion without JS calc */
        transition: max-height 0.5s ease-in;
    }

    .navbar-menu .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }



    .dropdown-menu li a {
        padding: 1.2rem 1.5rem;
        /* Generous touch target size (>40px) */
        font-size: 1.05rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(221, 165, 48, 0.2);
        /* Clear separator */
        text-align: left;
        color: #111111;
        /* Strong dark contrast to override transparent white */
    }

    .dropdown-menu li a:hover,
    .dropdown-menu li a:active,
    .dropdown-menu li a:focus {
        padding-left: 1.5rem;
        /* Fixed hover on mobile */
        background-color: rgba(221, 165, 48, 0.15);
        /* Visible highlight on tap */
        color: #000000;
    }

    .navbar-action {
        display: none;
        /* Hide Gold Rate button in mobile header */
    }

    /* Add Gold Rate button inside mobile menu */
    .mobile-nav-footer {
        display: block;
        /* Show in mobile */
        margin-top: auto;
        padding: 2rem 0;
        width: 100%;
    }

    .mobile-nav-footer .btn-primary {
        width: 100%;
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar-menu {
        width: 100%;
    }
}

/* Right side action button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    /* highly rounded pill shape */
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Main Content Area */
main {
    min-height: calc(100vh - 100px);
    width: 100%;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 135px);
    /* Full height minus navbar and marquee */
    min-height: 500px;
    overflow: hidden;
    background-color: var(--bg-color);
}

/* About Two-Column Section */
.about-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-image-wrapper {
    border: 4px solid var(--secondary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.about-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text-col p {
    font-size: 1.05rem;
    color: #000;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-btn {
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .about-container {
        padding: 0 2rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-container {
        padding: 0 1.5rem;
    }

    .about-text-col h2 {
        font-size: 1.9rem;
    }
}

/* Gold Items Two-Column Cards */
.gold-items-section {
    padding: 3.5rem 0 4rem;
    background-color: #ffffff;
}

.gold-items-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.gold-item-card {
    background-color: #fffaf0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(221, 165, 48, 0.4);
    padding: 1.5rem 1.5rem 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.gold-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
    border-color: var(--secondary-color);
    background-color: #fff4d6;
}

.gold-item-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.gold-item-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gold-item-card:hover .gold-item-image img {
    transform: scale(1.05);
}

.gold-item-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.gold-item-card p {
    font-size: 1.02rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .gold-items-container {
        padding: 0 2rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gold-items-container {
        padding: 0 1.5rem;
    }
}

/* Services Section: 2 Rows (intro + 3 columns) */
.services-section {
    padding: 4rem 0 4.5rem;
    background: #fafafa;
}

.services-header-row {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 1.5rem;
}

.services-header-row h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header-row p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.services-cards-row {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 4rem 2rem;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    align-items: stretch;
    gap: 2.5rem;
    scrollbar-width: none; /* Firefox */
}
.services-cards-row::-webkit-scrollbar {
    display: none; /* Chrome */
}

.service-card {
    flex: 0 0 calc(33.333% - 1.666rem);
    scroll-snap-align: center;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    padding: 1.5rem 1.5rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    border-color: var(--secondary-color);
}

.service-image {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05) translateY(-5px);
}

.service-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* "Learn More" Button in Service Cards */
.btn-learn-more {
    display: inline-block;
    margin-top: auto; 
    padding: 0.8rem 1.5rem;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    align-self: flex-start;
}
.btn-learn-more:hover {
    background-color: var(--secondary-color, #c49127);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Image Popup Modal */
.image-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.image-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.image-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.image-popup-overlay.active .image-popup-content {
    transform: scale(1);
}
.image-popup-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: contain;
    display: block;
}
.image-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.image-popup-close:hover {
    color: var(--secondary-color, #c49127);
}
@media (max-width: 768px) {
    .image-popup-close {
        top: -35px;
        right: -10px;
    }
}

@media (max-width: 1200px) {
    .services-cards-row {
        padding: 1rem 2rem;
    }
    .service-card {
        flex: 0 0 calc(50% - 1.25rem);
    }
}

@media (max-width: 900px) {
    .service-card {
        flex: 0 0 100%;
    }

    .services-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {
    .services-header-row h1 {
        font-size: 2.1rem;
    }

    .services-cards-row {
        padding: 0 1.5rem;
    }
}

/* Reasons Section (icons row) */
.reasons-section {
    padding: 4rem 0 4.5rem;
    background: #ffffff;
}

.reasons-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
}

.reasons-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.reasons-header h2 span {
    color: var(--secondary-color);
}

.reasons-underline {
    width: 210px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(221, 165, 48, 0.1), var(--secondary-color), rgba(221, 165, 48, 0.1));
    margin: 0.75rem auto 0;
}

.reasons-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 1.5rem 0.75rem 1rem;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.reason-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.reason-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reason-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.reason-card:hover {
    background-color: #fffaf0;
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1100px) {
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .reasons-section {
        padding: 3rem 0 3.5rem;
    }

    .reasons-header h2 {
        font-size: 2rem;
    }

    .reasons-grid {
        padding: 0 1.5rem;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }
}

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

/* Super Easy Process Section */
.process-section {
    padding: 4rem 0 4.5rem;
    background: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1.5rem;
}

.process-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.process-header h2 span {
    color: var(--secondary-color);
}

.process-steps {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}

.process-card {
    background: #fffdf6;
    border-radius: 20px;
    padding: 2.5rem 1.8rem 2.2rem;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(221, 165, 48, 0.35);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
    border-color: var(--secondary-color);
    background-color: #fff7e0;
}

.process-step-indicator {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.process-step-number {
    font-weight: 700;
    color: var(--secondary-color);
}

.process-card-content {
    margin-top: 0.5rem;
    text-align: center;
}

.process-image {
    height: 110px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.process-card:hover .process-image img {
    transform: translateY(-4px) scale(1.05);
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.process-card p {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .process-steps {
        padding: 0 2rem;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .process-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 768px) {
    .process-header h2 {
        font-size: 2.1rem;
    }

    .process-steps {
        padding: 0 1.5rem;
    }
}

/* Strip Slider Section (SVG strips with arrows & dots) */
.strip-slider-section {
    padding: 2.5rem 0 3rem;
    background: #050505;
    /* dark band behind the strip, like reference */
}

/* Why Choose Us & Form Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: #faf7f0;
    /* Keeping consistent with about section */
}

.why-choose-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 4rem;
    align-items: start;
}

.why-choose-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

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

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img,
.feature-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Right Column: Contact Form Box (New Design) */
.get-in-touch-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    /* Soft, premium light shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-badge {
    display: inline-block;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(221, 165, 48, 0.4);
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.form-title-new {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    /* Dark/black text for white theme */
    margin-bottom: 2.5rem;
    font-family: 'Outfit', serif;
    /* Matching the serif-like feel from reference but using native premium font */
}

.new-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.new-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

/* Light theme inputs matching standard design */
.new-contact-form input[type="text"],
.new-contact-form input[type="tel"] {
    width: 100%;
    background-color: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.new-contact-form input::placeholder {
    color: #999;
}

.new-contact-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(221, 165, 48, 0.15);
    /* Soft gold ring */
}

/* Custom Radio Buttons */
.form-row-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-group-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-main-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.custom-radio {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    user-select: none;
    color: #444;
    /* Dark grey for light theme readability */
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-mark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-color: transparent;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.2s ease;
}

/* On mouse-over, add a grey border color */
.custom-radio:hover input~.radio-mark {
    border-color: #999;
}

/* When the radio button is checked, customize red/gold look from reference */
.custom-radio input:checked~.radio-mark {
    border-color: #E23744;
    /* Reference shows a distinct red ring */
}

.radio-mark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-radio input:checked~.radio-mark:after {
    display: block;
}

/* Inner dot color */
.custom-radio .radio-mark:after {
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E23744;
    /* Reference shows red inner dot */
}

/* Gold Submit Button */
.btn-enquire {
    background: linear-gradient(180deg, #DDA530 0%, #c49622 100%);
    /* Gold gradient like reference */
    color: #000;
    font-weight: 700;
    font-size: 1.05rem;
    text-shadow: 0 1px 0px rgba(255, 255, 255, 0.4);
    /* Slight text pop */
    margin-top: 1rem;
    padding: 1.1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: capitalize;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(221, 165, 48, 0.3);
}

/* Responsive specific to new sections */
@media (max-width: 1100px) {
    .why-choose-container {
        padding: 0 2rem;
        grid-template-columns: 1fr 400px;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-choose-title {
        text-align: center;
        margin-bottom: 2rem;
    }

    .why-choose-features .features-grid {
        max-width: 700px;
        margin: 0 auto;
    }
}

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

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

    .why-choose-section {
        padding: 4rem 0;
    }

    .why-choose-container {
        padding: 0 1.5rem;
    }

    .why-choose-title {
        font-size: 2.5rem;
    }
}

/* Footer Section */
.faq-section {
    padding: 4rem 0 4.5rem;
    background: #fafafa;
}

.reviews-section {
    padding: 4rem 0 4.5rem;
    background: #ffffff;
}

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.reviews-head {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0.75rem auto 0;
}

.reviews-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.reviews-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
}

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

.reviews-btn-ghost {
    background: transparent;
    color: var(--primary-color);
}

.reviews-btn-ghost:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.reviews-list {
    margin-top: 2rem;
}

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

.review-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.2rem 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.review-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.review-rating {
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--secondary-color);
    white-space: nowrap;
}

.review-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.review-text {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reviews-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 1.25rem 0;
}

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

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

.faq-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(221, 165, 48, 0.12);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.9rem;
}

.gradient-text {
    background: linear-gradient(90deg, #caa032, #c49127);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.faq-item.active {
    border-color: rgba(221, 165, 48, 0.9);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    background-color: #fffdf6;
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 1.4rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-question span {
    text-align: left;
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before {
    content: "+";
    font-weight: 700;
}

.faq-item.active .faq-icon::before {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.4rem;
    transition: max-height 0.25s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 0.1rem;
    padding-bottom: 1.1rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.strip-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
}

.strip-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.strip-slide.strip-active {
    opacity: 1;
    visibility: visible;
}

.strip-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 2px solid rgba(221, 165, 48, 0.9);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    background: #111111;
}

.strip-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.strip-nav-btn:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.strip-prev {
    left: 0.75rem;
}

.strip-next {
    right: 0.75rem;
}

.strip-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.strip-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(221, 165, 48, 0.6);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.strip-dot.strip-dot-active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .strip-slider-container {
        padding: 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .strip-slider-container {
        padding: 0 1.5rem;
    }

    .strip-nav-btn {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        left: 0.3rem;
        right: 0.3rem;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* 1st column larger than 2nd */
    gap: 4rem;
    align-items: center;
    height: 100%;
}

/* Slide Text Styling */
.slide-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    animation: slideUpFade 1s forwards ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-text {
    animation-delay: 0.3s;
}

.slide-text h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.slide-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 90%;
}

/* Slide Image Styling */
.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s forwards ease-out;
    opacity: 0;
    transform: translateX(50px);
}

.slide.active .slide-image {
    animation-delay: 0.5s;
}

.slide-image img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border: none;
    cursor: pointer;
    font-size: 30px;
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-nav:hover {
    background: var(--secondary-color);
    color: white;
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-content img {
        max-width: 95vw;
        max-height: 70vh;
    }
}


/* Slider Pagination Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

/* Keyframe Animations */
@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr 1fr;
        padding: 0 3rem;
        gap: 2rem;
    }

    .slide-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 600px;
        /* Increased to fit content on small screens */
    }

    .slide-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 5.5rem 1.5rem 3rem;
        text-align: center;
        gap: 1.5rem;
        align-content: center;
    }

    .slide-text {
        align-items: center;
        order: 1;
    }

    .slide-text h1 {
        font-size: 2.2rem;
        /* Reduced from 2.8rem */
        margin-bottom: 1rem;
    }

    .slide-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .slide-image {
        order: 2;
    }

    .slide-image img {
        max-height: 30vh;
        /* Reduced to leave room for text */
    }

    .slider-btn {
        display: none;
    }
}

/* Gallery Section Styles */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    font-weight: 500;
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0;
    }

    .gallery-container {
        padding: 0 1.5rem;
    }

    .gallery-header h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 5rem 0 2rem;
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 1.5rem;
}

.footer-contact-item h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-contact-item p,
.footer-contact-item a {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

.footer-branch h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.footer-branch p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1.5fr 1.5fr;
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .footer-container {
        padding: 0 2rem;
    }

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

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

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-col h1,
    .footer-col h3 {
        margin-bottom: 1rem;
    }
}

/* Contact Us Page Styles */
.contact-section {
    padding: 6rem 0;
    background-color: #fcfcfc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-form-wrapper p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(221, 165, 48, 0.1);
}

textarea.form-control {
    resize: none;
    height: 150px;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(221, 165, 48, 0.1);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.info-text p,
.info-text a {
    color: var(--text-muted);
    font-size: 1rem;
}

.info-text a:hover {
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 10rem 0 6rem;
    background-color: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 7rem;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    text-align: justify;
}

/* Values/Why Choose Us Section */
.values-section {
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(221, 165, 48, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-container {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content p {
        text-align: center;
        font-size: 1.1rem;
    }

    .about-image {
        max-width: 450px;
        margin: 0 auto 4rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

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

/* Hero Banner (Static) */
.hero-banner {
    background: linear-gradient(135deg, #c49127, #ffc310);
    padding: 6rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-text h4 {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-text h1 {
    color: #000;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.banner-text p {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.banner-text .btn-primary {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.banner-text .btn-primary:hover {
    background-color: transparent;
    color: #000;
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@media (max-width: 1024px) {
    .banner-container {
        padding: 0 2rem;
        gap: 3rem;
    }

    .banner-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 4rem 0;
        text-align: center;
    }

    .banner-container {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .banner-text p {
        margin: 0 auto 2.5rem;
    }

    .banner-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Home Pop-up Modal Styles (Recreated White Theme) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #ffffff;
    width: 780px;
    max-width: 95%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: #333;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #000;
    color: #fff;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

/* Visual Side (Yellow) */
.modal-visual-side {
    background: #c49127;
    /* Exact yellow from SVG side */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.main-visual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #c49127;
}

/* Form Side (White) */
.modal-form-side {
    padding: 3rem 2.5rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title-main {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.popup-quote-form .form-group {
    margin-bottom: 1.2rem;
}

.popup-quote-form input[type="text"],
.popup-quote-form input[type="tel"] {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fbfbfb;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.popup-quote-form input:focus {
    border-color: var(--secondary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(221, 165, 48, 0.1);
}

.form-section {
    margin-bottom: 1.5rem;
}

.section-label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.radio-group-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.custom-radio-popup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.custom-radio-popup input {
    display: none;
}

.radio-circle {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.custom-radio-popup input:checked+.radio-circle {
    border-color: var(--secondary-color);
}

.radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.custom-radio-popup input:checked+.radio-circle::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-quote-submit {
    width: 100%;
    background: linear-gradient(180deg, #edc653 0%, #c49622 100%);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(196, 150, 34, 0.3);
    transition: all 0.3s ease;
}

.btn-quote-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 150, 34, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-visual-side {
        padding: 0;
        min-height: 250px;
    }

    .main-visual-img {
        object-fit: contain;
    }

    .modal-form-side {
        padding: 2rem 1.5rem;
    }

    .form-title-main {
        font-size: 1.7rem;
    }
}

/* Floating Action Buttons */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.float-btn img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    z-index: 1;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--secondary-color);
}

/* Add a subtle pulse to the Call button */
.float-call::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: pulse-ring 2s infinite;
    opacity: 0;
    z-index: 0;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 500px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Gold rate today section */
.gold-rate-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

/* Main Container */
.gold-rate-container {
    max-width: 1350px;
    /* Content width control */
    margin: auto;
    /* Center alignment */
    padding-left: 20px;
    /* Left space */
    padding-right: 20px;
    /* Right space */

    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content */
.gold-rate-text {
    flex: 2;
}

.gold-rate-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.gold-rate-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Right Box */
.gold-rate-info {
    flex: 1;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
}

.gold-rate-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.gold-rate-info ul {
    padding-left: 18px;
}

.gold-rate-info li {
    margin-bottom: 10px;
}

.gold-rate-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #c49127;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

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

    .gold-rate-container {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gold-rate-text h2 {
        font-size: 26px;
    }

}


.gold-price-section {
    padding: 80px 0;
    background: #fffaf0;
    font-family: 'Outfit', sans-serif;
}

.gold-price-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-sizing: border-box;
}

.gold-price-left {
    flex: 1;
}

.gold-badge {
    display: inline-block;
    background: #c49127;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.gold-price-left h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 18px;
}

.gold-price-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.gold-price-card {
    flex: 0 0 380px;
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f1e3b0;
}

.gold-price-card h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 18px;
}

.gold-rate-value {
    font-size: 42px;
    font-weight: 700;
    color: #c79600;
    margin-bottom: 10px;
}

.gold-rate-unit {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.gold-rate-time {
    font-size: 14px;
    color: #777;
    margin-bottom: 22px;
}

.gold-price-btn {
    display: inline-block;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.gold-price-btn:hover {
    background: #c79600;
    color: #111;
}

@media (max-width: 991px) {
    .gold-price-container {
        padding: 0 40px;
        gap: 35px;
    }

    .gold-price-left h2 {
        font-size: 32px;
    }

    .gold-price-card {
        flex: 0 0 330px;
    }
}

@media (max-width: 768px) {
    .gold-price-section {
        padding: 55px 0;
    }

    .gold-price-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .gold-price-left h2 {
        font-size: 26px;
    }

    .gold-price-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .gold-price-card {
        width: 100%;
        flex: unset;
    }

    .gold-rate-value {
        font-size: 34px;
    }
}

/* =============================================
   Image Marquee Strip (Before Footer)
   ============================================= */
.img-marquee-section {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    background: #0d0d0d;
    padding: 28px 0;
    line-height: 0;
}

.img-marquee-track {
    display: flex;
    width: max-content;
    animation: img-scroll-left 30s linear infinite;
    will-change: transform;
}

.img-marquee-track:hover {
    animation-play-state: paused;
}

.img-marquee-item {
    flex-shrink: 0;
    width: 400px;
    height: 255px;
    overflow: hidden;
    border-radius: 14px;
    border: 3px solid #DDA530;
    background: #111;
    margin: 0 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(221, 165, 48, 0.15);
}

.img-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.img-marquee-item:hover img {
    transform: scale(1.08);
}

@keyframes img-scroll-left {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .img-marquee-item {
        width: 260px;
        height: 165px;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .img-marquee-item {
        width: 200px;
        height: 130px;
        margin: 0 6px;
    }
}

/* =============================================
   Video Testimonials Section
   ============================================= */
.video-testimonial-section {
    background-color: #c49127;
    padding: 4rem 1.5rem;
}

.video-testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-testimonial-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-testimonial-header h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-testimonial-header p {
    color: #000;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.video-slider {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
}

.video-slider::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.video-card {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    height: auto;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.play-btn-overlay svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 5px;
}

.video-wrapper:hover .play-btn-overlay {
    background: rgba(221, 165, 48, 0.9);
}

.video-wrapper.is-playing .play-btn-overlay {
    display: none;
}

.video-info {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.video-info .customer-name {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.video-info .customer-location {
    color: #555;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .video-testimonial-section {
        padding: 3rem 1rem;
    }
    
    .video-testimonial-header h2 {
        font-size: 2rem;
    }
    
    .video-card {
        flex: 0 0 280px;
    }
}

/* =============================================
   Video Modal Overlay
   ============================================= */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 16 / 9;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
    outline: none;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    padding: 0;
}

.video-modal-close:hover {
    color: #c49127;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin-top: 20px;
    }
    .video-modal-close {
        top: -40px;
        font-size: 35px;
    }
}