*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
P,
UL,
li,
a {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ==========================================================================
   Topbar Styles
   ========================================================================== */
.top-bar {
    width: 100%;
    min-height: 38px;
    background: #17627d;
    color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 6px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* LEFT */
.top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.top-item i {
    font-size: 11px;
}

/* RIGHT */
.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-contact {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.25s ease;
    font-size: 12px;
    font-weight: 500;
}

.top-contact:hover {
    color: #deb881;
}

.top-social-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

/* ==========================================================================
   Header Styles
   ========================================================================== */
.site-header {
    width: 100%;
    height: 76px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: auto;
    max-height: 48px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
}

/* ================= NAVIGATION (DESKTOP) ================= */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    margin-left: 30px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    text-decoration: none;
    color: #115c79;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: color 0.25s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b78b52;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-nav ul li a:hover {
    color: #168ac2;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Visually Highlighted Primary Nav Item */
.main-nav ul li a.nav-highlight {
    color: #b78b52;
    padding: 6px 14px;
    border: 1px solid rgba(183, 139, 82, 0.5);
    border-radius: 20px;
    background: rgba(183, 139, 82, 0.08);
    transition: all 0.25s ease;
}

.main-nav ul li a.nav-highlight::after {
    display: none;
}

.main-nav ul li a.nav-highlight:hover {
    background: #b78b52;
    color: #ffffff;
    border-color: #b78b52;
    box-shadow: 0 4px 12px rgba(183, 139, 82, 0.25);
}

/* Header Right Actions */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 20px;
}

.header-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: #115c79;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid #115c79;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(17, 92, 121, 0.15);
}

.header-consult-btn:hover {
    background: #b78b52;
    border-color: #b78b52;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(183, 139, 82, 0.3);
}

.mobile-menu-cta {
    display: none;
}

/* ================= MOBILE MENU BUTTON ================= */
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: #115c79;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    margin-left: auto;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:focus-visible {
    outline: 2px solid #115c79;
    outline-offset: 2px;
}

.menu-toggle:hover {
    color: #168ac2;
    background: rgba(17, 92, 121, 0.06);
}

.menu-toggle.active {
    color: #b78b52;
    background: rgba(183, 139, 82, 0.08);
}

/* Backdrop Overlay for Mobile Menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 49, 59, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 1100px) {
    .header-container {
        padding: 0 25px;
    }

    .main-nav {
        margin-left: 20px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .main-nav ul li a {
        font-size: 13px;
        letter-spacing: 0.07em;
    }

    .logo img {
        max-height: 44px;
        max-width: 210px;
    }
}

/* Mobile & Tablet Navigation (< 992px) */
@media (max-width: 991px) {
    .site-header {
        height: 68px;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo img {
        max-height: 42px;
        max-width: 195px;
    }

    .menu-toggle {
        display: flex;
    }

    /* Full-width elegant slide-down mobile menu */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        margin-left: 0;
        background: #ffffff;
        border-top: 1px solid rgba(17, 92, 121, 0.08);
        border-bottom: 3px solid #b78b52;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transform: translateY(-8px);
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
        z-index: 1002;
        display: block;
        padding: 0;
    }

    .main-nav.active {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 12px 0 18px 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(17, 92, 121, 0.08);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 12px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.09em;
        border-radius: 6px;
        transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    }

    .main-nav ul li a::after {
        display: none;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a:active {
        background-color: rgba(17, 92, 121, 0.05);
        color: #b78b52;
        padding-left: 18px;
    }
}

/* Small mobile devices */
@media (max-width: 600px) {
    .top-bar {
        min-height: 34px;
    }

    .top-bar-inner {
        padding: 5px 15px;
    }

    .top-item {
        font-size: 11px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .site-header {
        height: 62px;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo img {
        max-height: 38px;
        max-width: 165px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .main-nav.active {
        max-height: 440px;
        padding: 8px 0 14px 0;
    }

    .main-nav ul {
        padding: 0 14px;
    }

    .main-nav ul li a {
        padding: 12px 10px;
        font-size: 12.5px;
    }
}

@media (max-width: 380px) {
    .logo img {
        max-height: 34px;
        max-width: 145px;
    }

    .top-bar-inner {
        padding: 4px 10px;
    }

    .top-right {
        gap: 6px;
    }
}

/* header end */

/* hero section start */
.wedding-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    background-image: url("../img/1\ 1736-768\ banner.png");
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Left luminous white/cream fade on desktop */
.wedding-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 253, 248, 1) 0%,
            rgba(255, 253, 248, 0.98) 25%,
            rgba(255, 253, 248, 0.88) 42%,
            rgba(255, 253, 248, 0.45) 62%,
            rgba(255, 253, 248, 0) 80%);
}

/* Subtle bottom fade to blend smoothly with cream enquiry section */
.wedding-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.9) 80%, rgba(255, 253, 248, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.wedding-hero-content {
    position: relative;
    z-index: 2;
    width: 55%;
    max-width: 660px;
    padding-left: 8%;
    padding-right: 20px;
    color: #17313b;
}

/* Eyebrow subtitle */
.hero-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.8px;
    color: #b78b52;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* Main heading */
.wedding-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 600;
    line-height: 1.1;
    color: #115c79;
    margin-bottom: 18px;
    margin-top: 6px;
}

/* Description */
.wedding-hero p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    color: #274856;
    margin-bottom: 26px;
    line-height: 1.45;
    font-weight: 500;
    max-width: 520px;
}

/* Hero Actions & Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13.5px 24px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
}

.primary-hero-btn {
    background: #b78b52;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(183, 139, 82, 0.3);
}

.primary-hero-btn:hover {
    background: #9a723c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(183, 139, 82, 0.45);
}

.secondary-hero-btn {
    background: rgba(255, 255, 255, 0.92);
    color: #115c79;
    border: 1.5px solid #115c79;
    box-shadow: 0 4px 12px rgba(17, 92, 121, 0.08);
}

.secondary-hero-btn:hover {
    background: #115c79;
    color: #ffffff;
    border-color: #115c79;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 92, 121, 0.25);
}

.btn-arrow {
    font-size: 14px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Trust Line */
.hero-trust-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #115c79;
    font-weight: 500;
    letter-spacing: 0.2px;
    flex-wrap: wrap;
}

.hero-trust-line .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-line .trust-pill i {
    color: #b78b52;
    font-size: 11.5px;
}

.hero-trust-line .trust-dot {
    color: #deb881;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   RESPONSIVE: TABLET (<= 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .wedding-hero {
        min-height: 490px;
        background-position: 70% center;
    }

    .wedding-hero-content {
        width: 65%;
        padding-left: 5%;
        padding-right: 20px;
    }

    .wedding-overlay {
        background: linear-gradient(90deg,
                rgba(255, 253, 248, 1) 0%,
                rgba(255, 253, 248, 0.96) 35%,
                rgba(255, 253, 248, 0.65) 65%,
                rgba(255, 253, 248, 0.1) 85%);
    }

    .wedding-hero h1 {
        font-size: clamp(34px, 4.5vw, 48px);
    }

    .wedding-hero p {
        font-size: 18px;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE: MOBILE & PHONES (<= 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .wedding-hero {
        min-height: auto;
        padding: 50px 0 54px 0;
        background-position: center 30%;
        align-items: center;
    }

    /* Luminous full-cover gradient for crystal-clear readability */
    .wedding-overlay {
        background: linear-gradient(180deg,
                rgba(255, 253, 248, 0.98) 0%,
                rgba(255, 253, 248, 0.95) 42%,
                rgba(255, 253, 248, 0.88) 75%,
                rgba(255, 253, 248, 0.97) 100%);
    }

    .wedding-hero::after {
        height: 40px;
    }

    .wedding-hero-content {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
        padding: 0 24px;
        text-align: left;
    }

    .hero-subtitle {
        font-family: 'Montserrat', sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.2px;
        color: #b78b52;
        margin-bottom: 10px;
    }

    .wedding-hero h1 {
        font-size: clamp(32px, 8vw, 42px);
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .wedding-hero p {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 24px;
        color: #274856;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 24px;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    /* Mobile Trust Line: Clean self-contained luxury badges, no awkward hanging dots */
    .hero-trust-line {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 10px;
    }

    .hero-trust-line .trust-dot {
        display: none;
    }

    .hero-trust-line .trust-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 11.5px;
        font-weight: 600;
        color: #115c79;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(183, 139, 82, 0.35);
        padding: 6px 12px;
        border-radius: 20px;
        box-shadow: 0 2px 8px rgba(17, 92, 121, 0.05);
        backdrop-filter: blur(4px);
    }

    .hero-trust-line .trust-pill i {
        color: #b78b52;
        font-size: 12px;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE: SMALL MOBILE (<= 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .wedding-hero {
        padding: 38px 0 42px 0;
    }

    .wedding-hero-content {
        padding: 0 18px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 1.8px;
    }

    .wedding-hero h1 {
        font-size: clamp(28px, 8.5vw, 36px);
        margin-bottom: 12px;
    }

    .wedding-hero p {
        font-size: 15.5px;
        margin-bottom: 20px;
    }

    .hero-btn {
        padding: 13px 18px;
        font-size: 11.5px;
    }

    .hero-trust-line {
        gap: 6px 8px;
    }

    .hero-trust-line .trust-pill {
        font-size: 11px;
        padding: 5px 10px;
    }
}

/* hero section end */

/* ==========================================================================
   COLLECTION CATEGORIES 3-CARDS SECTION
   ========================================================================== */
.collection-categories-section {
    position: relative;
    background-color: #fffdf8;
    padding: 70px 0 80px;
    overflow: hidden;
}

/* Floral Corner Accents */
.floral-corner {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.floral-top-left {
    top: 15px;
    left: 20px;
}

.floral-bottom-right {
    bottom: 15px;
    right: 20px;
}

.categories-container {
    position: relative;
    z-index: 2;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Collection Card */
.collection-category-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.collection-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(17, 92, 121, 0.1);
    border-color: #d8cdbf;
}

/* Image Container */
.card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f6f3ed;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-category-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

/* Content Area */
.card-content-wrap {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
}

.card-category-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #115c79;
    letter-spacing: 0.8px;
    line-height: 1.25;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.collection-category-card:hover .card-category-title {
    color: #0c475d;
}

/* Footer Row: Description & Arrow */
.card-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.card-category-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16.5px;
    color: #4a6772;
    line-height: 1.38;
    margin: 0;
}

.card-arrow-icon {
    font-size: 22px;
    color: #115c79;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}

.collection-category-card:hover .card-arrow-icon {
    transform: translateX(6px);
    color: #b78b52;
}

/* Responsive Styles for Categories */
@media (max-width: 991px) {
    .collection-categories-section {
        padding: 50px 0 60px;
    }

    .card-content-wrap {
        padding: 20px 18px 20px;
    }

    .card-category-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .card-category-desc {
        font-size: 15.5px;
    }
}

@media (max-width: 576px) {
    .collection-categories-section {
        padding: 35px 0 45px;
    }

    .floral-corner svg {
        width: 45px;
        height: 45px;
    }

    .floral-top-left {
        top: 8px;
        left: 10px;
    }

    .floral-bottom-right {
        bottom: 8px;
        right: 10px;
    }

    .card-content-wrap {
        padding: 16px 14px 16px;
    }

    .card-category-title {
        font-size: 18.5px;
    }

    .card-category-desc {
        font-size: 14.5px;
    }
}

/* ==========================================================================
   RING STYLES CAROUSEL SECTION
   ========================================================================== */
.ring-styles-section {
    position: relative;
    background: linear-gradient(180deg, #f7fafc 0%, #edf4f8 100%);
    padding: 60px 0 65px;
    overflow: hidden;
    border-top: 1px solid rgba(17, 92, 121, 0.08);
    border-bottom: 1px solid rgba(17, 92, 121, 0.08);
}

.styles-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 4%;
}

.styles-header {
    margin-bottom: 35px;
}

.styles-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2.8px;
    color: #4a7c92;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.styles-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 500;
    color: #115c79;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0;
}

/* Carousel Outer Wrapper */
.styles-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Carousel Track */
.styles-carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 15px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.styles-carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.styles-carousel-track.active-drag {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Style Item */
.style-item {
    flex: 0 0 175px;
    width: 175px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.style-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 10px 15px;
    width: 100%;
    transition: transform 0.3s ease;
}

.style-img-box {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.style-img-box img {
    max-width: 135px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.style-card:hover .style-img-box img {
    transform: translateY(-5px) scale(1.08);
    filter: drop-shadow(0 8px 18px rgba(17, 92, 121, 0.15));
}

.style-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: #115c79;
    letter-spacing: 0.3px;
    text-align: center;
    transition: color 0.25s ease;
}

.style-card:hover .style-name {
    color: #b78b52;
}

/* Vertical Dividers */
.style-divider {
    width: 1px;
    height: 75px;
    background-color: rgba(17, 92, 121, 0.14);
    flex-shrink: 0;
}

/* Nav Buttons */
.styles-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(17, 92, 121, 0.18);
    color: #115c79;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 14px rgba(17, 92, 121, 0.12);
    transition: all 0.25s ease;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.styles-nav-btn.prev-btn {
    left: -18px;
}

.styles-nav-btn.next-btn {
    right: -18px;
}

.styles-nav-btn:hover {
    background-color: #115c79;
    color: #ffffff;
    border-color: #115c79;
    transform: translateY(-50%) scale(1.08);
}

/* Responsive */
@media (max-width: 991px) {
    .ring-styles-section {
        padding: 45px 0 50px;
    }

    .style-item {
        flex: 0 0 150px;
        width: 150px;
    }

    .styles-nav-btn.prev-btn {
        left: 2px;
    }

    .styles-nav-btn.next-btn {
        right: 2px;
    }
}

@media (max-width: 576px) {
    .style-item {
        flex: 0 0 130px;
        width: 130px;
    }

    .style-img-box {
        height: 75px;
    }

    .style-img-box img {
        max-width: 110px;
        max-height: 70px;
    }

    .style-name {
        font-size: 12px;
    }

    .style-divider {
        height: 55px;
    }
}

/* ==========================================================================
   FEATURED ENGAGEMENT RINGS SECTION ("EXQUISITE BY DESIGN")
   ========================================================================== */
.featured-rings-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 70px 0 80px 0;
}

.featured-rings-container {
    max-width: 1550px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2%;
}

/* Header */
.featured-rings-header {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    margin-bottom: 45px;
}

.header-text-group {
    text-align: center;
}

.featured-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2.8px;
    color: #4a7c92;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.featured-main-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 3.2vw, 42px);
    font-weight: 600;
    color: #115c79;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.view-all-link {
    position: absolute;
    right: 0;
    bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #115c79;
    text-decoration: none;
    transition: all 0.25s ease;
}

.view-all-link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.view-all-link:hover {
    color: #b78b52;
}

.view-all-link:hover i {
    transform: translateX(4px);
}

/* 5-Column Grid */
.featured-rings-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

/* Product Card */
.featured-ring-card {
    background: #ffffff;
    border: 1px solid #efeae2;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 3px 12px rgba(17, 92, 121, 0.04);
}

.featured-ring-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(17, 92, 121, 0.12);
    border-color: rgba(183, 139, 82, 0.4);
}

/* Image Box */
.product-img-box {
    position: relative;
    width: 100%;
    height: 250px;
    background: #fbf9f6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-ring-card:hover .product-img-box img {
    transform: scale(1.06);
}

/* Wishlist Button */
.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(17, 92, 121, 0.12);
    color: #115c79;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.product-wishlist-btn:hover {
    background: #ffffff;
    color: #e63946;
    transform: scale(1.12);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-wishlist-btn.active {
    background: #ffffff;
    color: #e63946;
    border-color: rgba(230, 57, 70, 0.3);
    animation: heartPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPop {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.28);
    }

    100% {
        transform: scale(1);
    }
}

/* Product Info Box */
.product-info-box {
    padding: 16px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.product-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.product-title a {
    color: #115c79;
    text-decoration: none;
    transition: color 0.25s ease;
}

.product-title a:hover {
    color: #b78b52;
}

.product-stone {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #628394;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #115c79;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}

.product-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #115c79;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.25s ease;
}

.product-action-link i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.product-action-link:hover {
    color: #b78b52;
}

.product-action-link:hover i {
    transform: translateX(4px);
}

/* Responsive Breakpoints */
@media (max-width: 1280px) {
    .featured-rings-grid {
        gap: 16px;
    }

    .product-img-box {
        height: 175px;
    }

    .product-title {
        font-size: 19px;
    }
}

@media (max-width: 1024px) {
    .featured-rings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-img-box {
        height: 190px;
    }
}

@media (max-width: 768px) {
    .featured-rings-section {
        padding: 50px 0 60px 0;
    }

    .featured-rings-header {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 35px;
    }

    .view-all-link {
        position: static;
    }

    .featured-rings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-img-box {
        height: 160px;
    }

    .product-info-box {
        padding: 14px 12px 16px 12px;
    }

    .product-title {
        font-size: 18px;
    }

    .product-stone {
        font-size: 11.5px;
        margin-bottom: 8px;
    }

    .product-price {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .product-action-link {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .featured-rings-container {
        padding: 0 4%;
    }

    .featured-rings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img-box {
        height: 140px;
    }

    .product-wishlist-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }

    .product-info-box {
        padding: 10px 10px 14px 10px;
    }

    .product-title {
        font-size: 16px;
    }

    .product-stone {
        font-size: 11px;
    }

    .product-price {
        font-size: 13.5px;
    }
}

/* ==========================================================================
   PERSONALISED CONSULTATION SECTION ("LET'S FIND THE ONE")
   ========================================================================== */
.consultation-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Corner Botanical Foliage Accents */
.botanical-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.deco-top-right {
    top: -10px;
    right: -10px;
    width: 220px;
    height: 220px;
    opacity: 0.85;
}

.deco-top-right img,
.deco-bottom-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.deco-bottom-right {
    bottom: -35px;
    right: -25px;
    width: 190px;
    height: 190px;
    opacity: 0.75;
    transform: rotate(180deg) scaleX(-1);
}

/* Section Wrapper: Split Left Photo & Right Form */
.consultation-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 520px;
    position: relative;
    z-index: 2;
    padding: 40px 0;
    background: #eff7fa;
}

/* Left Visual Column */
.consultation-visual-col {
    position: relative;
    flex: 0 0 42%;
    width: 42%;
    min-height: 520px;
    overflow: hidden;
}

.consultation-img-holder {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.consultation-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    transition: transform 0.8s ease;
}

.consultation-visual-col:hover .consultation-main-img {
    transform: scale(1.03);
}

/* Golden Arch Decorative SVG Divider */
.consultation-curve-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1px;
    width: 95px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.consultation-curve-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Right Content Column */
.consultation-content-col {
    flex: 0 0 58%;
    width: 58%;
    padding: 45px 5% 45px 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Header */
.consultation-header {
    margin-bottom: 22px;
    max-width: 720px;
}

.consultation-sub-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.sub-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background-color: #d1b48c;
}

.consultation-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.2px;
    color: #b78b52;
    text-transform: uppercase;
}

.consultation-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 600;
    color: #115c79;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
    line-height: 1.15;
    text-transform: uppercase;
}

.consultation-form-tag {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    color: #b78b52;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    font-style: italic;
    line-height: 1.25;
}

.consultation-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #557b8e;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Consultation Form Card */
/* Consultation Form Card */
.consultation-form-card {
    background: #ffffff;
    border: 1px solid #dfc89d;
    outline: 1px solid rgba(223, 200, 157, 0.45);
    outline-offset: 6px;
    border-radius: 8px;
    padding: 32px 36px 26px;
    box-shadow: 0 16px 44px rgba(17, 92, 121, 0.08), 0 4px 16px rgba(183, 139, 82, 0.05);
    max-width: 820px;
    width: 100%;
    position: relative;
}

.consult-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
}

/* Form Field */
.consultation-field {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #dcd3c4;
    border-radius: 6px;
    padding: 8px 14px;
    gap: 12px;
    position: relative;
    min-height: 54px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.consultation-field:focus-within {
    border-color: #b78b52;
    box-shadow: 0 0 0 3px rgba(183, 139, 82, 0.16);
}

.consultation-field:focus-within .field-icon-badge {
    background: #b78b52;
    color: #ffffff;
}

.field-icon-badge {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(17, 92, 121, 0.07);
    color: #115c79;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.25s ease;
}

.field-icon-badge.whatsapp-icon-badge {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.consultation-field:focus-within .field-icon-badge.whatsapp-icon-badge {
    background: #25D366;
    color: #ffffff;
}

.field-icon-badge.dollar-badge,
.field-icon-badge.rupee-badge {
    font-size: 13.5px;
    font-weight: 600;
}

.field-input-box {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.field-input-box label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    color: #115c79;
    margin: 0 0 2px 0;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.required-star {
    color: #c0392b;
    font-weight: bold;
}

.consult-phone-wrap {
    display: flex;
    align-items: center;
    width: 100%;
}

.consult-phone-code {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #115c79;
    margin-right: 6px;
    padding-right: 6px;
    border-right: 1px solid #dcd3c4;
    user-select: none;
    line-height: 1;
}

.field-input-box input,
.field-input-box select,
.field-input-box textarea {
    border: none;
    outline: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #17313b;
    font-weight: 500;
    width: 100%;
    padding: 0;
    margin: 0;
}

.field-input-box input::placeholder,
.field-input-box textarea::placeholder {
    color: #8c9fa8;
    font-size: 12px;
}

.contact-textarea-field {
    grid-column: 1 / -1;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 10px;
    min-height: 105px;
}

.contact-textarea-field .textarea-badge {
    margin-top: 2px;
}

.contact-textarea-field textarea {
    resize: vertical;
    min-height: 65px;
    padding: 3px 0 0 0;
    line-height: 1.5;
}

.opt-text {
    font-size: 9.5px;
    font-weight: 500;
    color: #799aa9;
}

.select-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 22px;
}

.select-chevron {
    position: absolute;
    right: 14px;
    font-size: 11px;
    color: #799aa9;
    pointer-events: none;
}

.form-field-error {
    position: absolute;
    bottom: -17px;
    left: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    color: #c0392b;
    white-space: nowrap;
    pointer-events: none;
}

/* Action Buttons Grid */
.consult-actions-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 14px;
    margin-top: 22px;
    align-items: center;
}

.consult-submit-btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #115c79;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 14px rgba(17, 92, 121, 0.22);
}

.consult-submit-btn:hover {
    background: #b78b52;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(183, 139, 82, 0.38);
}

.consult-submit-btn:hover i {
    transform: translateX(3px);
}

.consult-whatsapp-btn {
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: #115c79;
    border: 1.5px solid #25D366;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 0 18px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.12);
}

.consult-whatsapp-btn i {
    font-size: 18px;
    color: #25D366;
    transition: color 0.3s ease;
}

.consult-whatsapp-btn:hover {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.consult-whatsapp-btn:hover i {
    color: #ffffff;
}

/* Trust Guarantee Footer */
.consult-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1ece2;
    flex-wrap: wrap;
}

.consult-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: #55727e;
}

.consult-trust-item i {
    color: #b78b52;
    font-size: 12px;
}

.consult-trust-bullet {
    color: #dfc89d;
    font-size: 12px;
}

/* Success Feedback */
.consult-success-msg {
    margin-top: 14px;
    padding: 12px 16px;
    background: #eaf7ee;
    border: 1px solid #b7e4c7;
    color: #1b6b37;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInMsg 0.3s ease;
}

@keyframes fadeInMsg {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Consultation Styles */
@media (max-width: 1200px) {
    .consultation-visual-col {
        flex: 0 0 36%;
        width: 36%;
    }

    .consultation-content-col {
        flex: 0 0 64%;
        width: 64%;
    }
}

@media (max-width: 991px) {
    .consultation-wrapper {
        flex-direction: column;
    }

    .consultation-visual-col {
        flex: 0 0 auto;
        width: 100%;
        height: 320px;
        min-height: 320px;
    }

    .consultation-curve-divider {
        display: none;
    }

    .consultation-content-col {
        flex: 0 0 auto;
        width: 100%;
        padding: 40px 5%;
    }

    .consultation-form-card {
        padding: 28px 24px 22px;
    }
}

@media (max-width: 640px) {
    .consult-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .consult-actions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .consult-submit-btn,
    .consult-whatsapp-btn {
        width: 100%;
    }

    .consultation-form-card {
        padding: 22px 16px 18px;
        outline: none;
    }

    .consultation-visual-col {
        height: 240px;
        min-height: 240px;
    }

    .consultation-title {
        font-size: 28px;
    }

    .botanical-deco {
        width: 130px;
        height: 130px;
        opacity: 0.55;
    }
}

/* JEWELLERY CTS SECTION start */
.jewellery-cta-section {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-image: url("../img/cta banner 1736-768.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 252, 246, 0.96) 0%, rgb(255 255 255 / 45%) 26%, rgb(255 252 246 / 38%) 46%, rgb(255 255 255 / 1%) 55%, rgb(197 197 197 / 60%) 74%, rgb(170 170 170 / 94%) 100%);
    pointer-events: none;
    z-index: 1;
}

.cta-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1550px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.cta-banner-row {
    row-gap: 25px;
}

/* Left Content */
.cta-banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-banner-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8c7b6d;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta-banner-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 600;
    line-height: 1.12;
    color: #115c79;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

/* Action Buttons */
.cta-banner-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background-color: #216f8e;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #216f8e;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(33, 111, 142, 0.15);
}

.cta-btn-primary:hover {
    background-color: #115c79;
    border-color: #115c79;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 92, 121, 0.25);
}

.cta-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #115c79;
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #94adb8;
    transition: all 0.25s ease;
}

.cta-btn-whatsapp i {
    font-size: 18px;
    color: #25D366;
    transition: transform 0.25s ease;
}

.cta-btn-whatsapp:hover {
    background-color: #ffffff;
    border-color: #25D366;
    color: #0b455b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.cta-btn-whatsapp:hover i {
    transform: scale(1.15);
}

/* Right Content: Trust Badges */
.cta-banner-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-features-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 14px 22px;
    border-radius: 8px;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    min-width: 85px;
}

.cta-feature-icon {
    color: #115c79;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.cta-feature-item:hover .cta-feature-icon {
    transform: translateY(-3px) scale(1.05);
    color: #b78b52;
}

.cta-feature-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #115c79;
    letter-spacing: 0.2px;
    white-space: normal;
    line-height: 1.25;
}

.cta-feature-divider {
    width: 1px;
    height: 42px;
    background-color: rgba(17, 92, 121, 0.22);
}

/* Responsive Styles for CTA Section */
@media (max-width: 991px) {
    .jewellery-cta-section {
        min-height: auto;
        padding: 45px 0;
        background-position: center;
    }

    .cta-banner-overlay {
        background: linear-gradient(180deg,
                rgba(255, 252, 246, 0.95) 0%,
                rgba(255, 252, 246, 0.88) 50%,
                rgba(255, 252, 246, 0.95) 100%);
    }

    .cta-banner-right {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .cta-features-group {
        justify-content: flex-start;
        gap: 20px;
        padding: 12px 18px;
    }
}

@media (max-width: 576px) {
    .cta-banner-container {
        padding: 0 20px;
    }

    .cta-banner-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-whatsapp {
        width: 100%;
        text-align: center;
    }

    .cta-features-group {
        width: 100%;
        justify-content: space-around;
        gap: 10px;
        padding: 10px;
    }

    .cta-feature-item {
        min-width: 65px;
    }

    .cta-feature-label {
        font-size: 11px;
    }
}

/* JEWELLERY CTS SECTION end */

/* footer start */
.footer {
    background-color: #115c79;
    color: #ffffff;
    padding: 40px;
}

/* 
.footerrow {
    margin: 0 5% !important;
} */

.footerrow img {
    max-height: 50px;
}

.footerrow ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

.footerrow h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', Georgia, serif;
}


.footerrow ul li {
    margin-bottom: 8px;
}

.footerrow ul a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.footerrow ul a:hover {
    color: #deb881;
    padding-left: 4px;
}

/* Mobile Update / Newsletter Form */
.footer-subtitle {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.35;
}

.footer-form {
    width: 100%;
    max-width: 340px;
}

.footer-input-wrap {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.footer-input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 10px 16px;
    background-color: #ffffff;
    border: 1px solid #115c79;
    border-radius: 0;
    color: #115c79;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-input::placeholder {
    color: #777777;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    opacity: 1;
}

.footer-input:focus {
    border-color: #b78b52;
    box-shadow: 0 0 0 2px rgba(183, 139, 82, 0.3);
}

.footer-btn {
    width: 48px;
    height: 46px;
    flex-shrink: 0;
    background-color: #ffffff;
    color: #115c79;
    border: none;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
}

.footer-btn:hover {
    background-color: #b78b52;
    color: #ffffff;
}

.footer-btn:active {
    transform: scale(0.96);
}

.footer-bottom {
    padding: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #115c79;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Footer Responsive Adjustments */
@media (max-width: 991px) {
    .footer {
        padding: 50px 20px;
    }

    .footerrow {
        margin: 0 !important;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 15px;
    }

    .footerrow h4 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .footerrow ul a {
        font-size: 19px;
    }

    .footer-subtitle {
        font-size: 18px;
        margin-bottom: 14px;
    }
}

/* footer end */

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #115c79;
    color: #deb881;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 995;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.9);
    box-shadow: 0 4px 18px rgba(17, 92, 121, 0.35), 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        visibility 0.35s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background-color: #0d465c;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(17, 92, 121, 0.45), 0 0 16px rgba(222, 184, 129, 0.35);
    transform: translateY(-4px) scale(1.05);
}

.back-to-top:focus-visible {
    outline: 2px solid #deb881;
    outline-offset: 3px;
}

.back-to-top:active {
    transform: translateY(-1px) scale(0.98);
}

/* SVG Scroll Progress Ring */
.back-to-top .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.back-to-top .progress-ring-circle {
    transition: stroke-dashoffset 0.12s linear;
}

/* Arrow Icon */
.back-to-top-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    color: #deb881;
    transition: transform 0.25s ease, color 0.25s ease;
}

.back-to-top:hover .back-to-top-icon {
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 22px;
        right: 22px;
        width: 44px;
        height: 44px;
    }

    .back-to-top-icon {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .back-to-top,
    .back-to-top .progress-ring-circle,
    .back-to-top-icon {
        transition: none !important;
    }
}

/* ==========================================================================
   4. QUICK ENQUIRY FORM BELOW HERO
   ========================================================================== */
.quick-enquiry-section {
    position: relative;
    background: #fffdf8;
    padding: 65px 0 75px 0;
    margin-top: 0;
    border-bottom: 1px solid #ede7dc;
}

.quick-enquiry-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 25px;
}

.quick-enquiry-card {
    background: #ffffff;
    border: 1px solid #dfc89d;
    outline: 1px solid rgba(223, 200, 157, 0.45);
    outline-offset: 6px;
    border-radius: 6px;
    box-shadow: 0 16px 44px rgba(17, 92, 121, 0.08), 0 4px 16px rgba(183, 139, 82, 0.05);
    padding: 44px 50px 38px;
    position: relative;
}

.quick-header-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.quick-header-ornament .ornament-line {
    width: 45px;
    height: 1px;
    background: #deb881;
}

.quick-header-ornament i {
    color: #b78b52;
    font-size: 13px;
}

.quick-sub-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #b78b52;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.quick-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: #115c79;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.quick-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: #4a6772;
    max-width: 680px;
    margin: 0 auto 36px auto;
    line-height: 1.4;
}

.quick-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 24px;
    align-items: flex-start;
}

.quick-field-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.quick-field-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #115c79;
    letter-spacing: 0.3px;
}

.quick-field-group .req-star {
    color: #c0392b;
}

.quick-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #dcd3c4;
    border-radius: 4px;
    height: 50px;
    transition: all 0.25s ease;
}

.quick-input-wrap:focus-within {
    border-color: #b78b52;
    box-shadow: 0 0 0 3px rgba(183, 139, 82, 0.18);
}

.quick-input-wrap .field-icon {
    position: absolute;
    left: 15px;
    color: #799aa9;
    font-size: 14px;
    pointer-events: none;
}

.quick-input-wrap .phone-prefix {
    padding-left: 14px;
    padding-right: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #115c79;
    border-right: 1px solid #e0d7c7;
    margin-right: 6px;
}

.quick-input-wrap input,
.quick-input-wrap select {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 0 16px 0 42px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #17313b;
}

.quick-input-wrap .phone-prefix+input {
    padding-left: 4px;
}

.quick-input-wrap.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 36px;
}

.quick-input-wrap .select-chevron {
    position: absolute;
    right: 16px;
    font-size: 11px;
    color: #799aa9;
    pointer-events: none;
}

.quick-submit-group {
    justify-content: flex-end;
}

.quick-submit-spacer {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.3px;
    visibility: hidden;
    user-select: none;
    margin-bottom: 0;
}

.quick-submit-error-spacer {
    min-height: 16px;
    margin-top: 2px;
    visibility: hidden;
}

.quick-submit-btn {
    height: 50px;
    width: 100%;
    background: #115c79;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 14px rgba(17, 92, 121, 0.22);
}

.quick-submit-btn:hover {
    background: #b78b52;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(183, 139, 82, 0.38);
}

.quick-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.field-error-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #c0392b;
    min-height: 16px;
    display: block;
    margin-top: 2px;
}

/* Trust Badges Row */
.quick-trust-badges {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #f0eae0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.quick-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: #55727e;
    font-weight: 500;
}

.quick-trust-pill i {
    color: #b78b52;
    font-size: 12.5px;
}

.trust-sep {
    color: #deb881;
    font-size: 12px;
}

.quick-success-banner {
    margin-top: 20px;
    padding: 16px 22px;
    background: #edf7ed;
    border: 1px solid #b7dfb9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1e4620;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    animation: fadeIn 0.4s ease;
}

.quick-success-banner i {
    font-size: 22px;
    color: #2e7d32;
    flex-shrink: 0;
}

/* ==========================================================================
   5. RING STYLE DISCOVERY ENHANCEMENTS
   ========================================================================== */
.styles-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    color: #55727e;
    max-width: 600px;
    margin: 0 auto;
}

.ring-style-trigger {
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.style-select-prompt {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #b78b52;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.style-card:hover .style-select-prompt {
    opacity: 1;
    transform: translateY(0);
}

.style-card:hover {
    transform: translateY(-4px);
}

/* ==========================================================================
   6. CATEGORIES SECTION ENHANCEMENTS
   ========================================================================== */
.categories-header {
    margin-bottom: 35px;
}

.categories-sub-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #b78b52;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.categories-main-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: 600;
    color: #115c79;
    margin: 0;
}

.card-step-badge {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 5;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #b78b52;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(183, 139, 82, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.category-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #115c79;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.category-explore-btn:hover {
    color: #b78b52;
    transform: translateX(4px);
}

.category-explore-btn .arrow-icon {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.category-explore-btn:hover .arrow-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   7. FEATURED RINGS ENHANCEMENTS
   ========================================================================== */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #115c79;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
}

.product-short-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14.5px;
    color: #557584;
    line-height: 1.35;
    margin: 0 0 10px 0;
    min-height: 36px;
}

.product-actions-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0eae1;
}

.product-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #115c79;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.product-enquire-btn:hover {
    background: #b78b52;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(183, 139, 82, 0.3);
}

.product-view-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #5a7d8d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.product-view-btn:hover {
    color: #115c79;
}

/* ==========================================================================
   8. YOUR RING JOURNEY SECTION
   ========================================================================== */
.ring-journey-section {
    background: #fffdf8;
    padding: 85px 0 95px 0;
    position: relative;
    border-top: 1px solid #ede7dc;
    border-bottom: 1px solid #ede7dc;
}

.journey-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 30px;
}

.journey-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #b78b52;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.journey-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: #115c79;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.journey-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: #4a6772;
    max-width: 640px;
    margin: 0 auto 50px auto;
}

.journey-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    margin-bottom: 50px;
}

.journey-step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 8px;
}

.step-num-badge {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
    font-weight: 700;
    color: #b78b52;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.step-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(183, 139, 82, 0.4);
    box-shadow: 0 6px 18px rgba(17, 92, 121, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #115c79;
    margin-bottom: 16px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.journey-step-item:hover .step-icon-wrap {
    background: #115c79;
    color: #deb881;
    border-color: #115c79;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 10px 24px rgba(17, 92, 121, 0.22);
}

.step-connector {
    flex: 0 0 35px;
    height: 1.5px;
    background: linear-gradient(90deg, #d8cbba, #b78b52, #d8cbba);
    margin-top: 48px;
    opacity: 0.7;
}

.step-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #115c79;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.step-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #55727e;
    line-height: 1.5;
    margin: 0;
}

.journey-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 32px;
    background: #b78b52;
    color: #ffffff;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(183, 139, 82, 0.3);
}

.journey-cta-btn:hover {
    background: #9c733f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(183, 139, 82, 0.45);
}

/* ==========================================================================
   9. WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose-section {
    background: #ffffff;
    padding: 85px 0 90px 0;
}

.why-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 30px;
}

.why-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #b78b52;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.why-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: #115c79;
    margin: 0 0 12px 0;
}

.why-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: #4a6772;
    max-width: 640px;
    margin: 0 auto 50px auto;
}

.usp-card {
    background: #fffdf9;
    border: 1px solid #ebe4d8;
    border-radius: 6px;
    padding: 30px 22px 28px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.usp-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #d6c6b2;
    box-shadow: 0 14px 34px rgba(17, 92, 121, 0.09);
}

.usp-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(17, 92, 121, 0.07);
    color: #115c79;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.usp-card:hover .usp-icon-wrap {
    background: #b78b52;
    color: #ffffff;
    transform: scale(1.08);
}

.usp-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 21px;
    font-weight: 600;
    color: #115c79;
    margin: 0 0 10px 0;
}

.usp-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #55727e;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   10. TESTIMONIAL SECTION
   ========================================================================== */
.testimonials-section {
    background: #fbf9f4;
    padding: 85px 0 95px 0;
    border-top: 1px solid #ede7dc;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonials-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #b78b52;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.testimonials-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: #115c79;
    margin: 0 0 12px 0;
}

.testimonials-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    color: #4a6772;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

/* Testimonials Slider Layout */
.testimonials-slider-container {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 54px;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    padding: 16px 6px 24px 6px;
}

.testimonials-slider-track {
    display: flex;
    gap: 24px;
    cursor: grab;
    user-select: none;
    will-change: transform;
    touch-action: pan-y;
}

.testimonials-slider-track.active-drag {
    cursor: grabbing;
}

.testimonial-slide {
    flex: 0 0 var(--slide-width, calc((100% - 48px) / 3));
    width: var(--slide-width, calc((100% - 48px) / 3));
    max-width: var(--slide-width, 100%);
    min-width: 0;
    display: flex;
    height: auto;
    box-sizing: border-box;
}

.testimonial-slide .testimonial-card {
    width: 100%;
    height: 100%;
    margin: 0;
}

/* Slider Navigation Buttons */
.testimonial-nav-btn {
    position: absolute;
    top: calc(50% - 10px);
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #d8cbbe;
    color: #115c79;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(17, 92, 121, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    outline: none;
}

.testimonial-prev-btn {
    left: 0;
}

.testimonial-next-btn {
    right: 0;
}

.testimonial-nav-btn:hover {
    background: #115c79;
    color: #ffffff;
    border-color: #115c79;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(17, 92, 121, 0.22);
}

.testimonial-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-nav-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(183, 139, 82, 0.4);
}

/* Dots Pagination */
.testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dcd2c4;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.testimonial-dot:hover {
    background: #b78b52;
    transform: scale(1.2);
}

.testimonial-dot.active {
    width: 28px;
    border-radius: 12px;
    background: #b78b52;
    box-shadow: 0 2px 8px rgba(183, 139, 82, 0.35);
}

.testimonial-dot:focus-visible {
    box-shadow: 0 0 0 3px rgba(183, 139, 82, 0.35);
}

/* Testimonial Responsive Breakpoints */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .testimonials-slider-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-slider-container {
        padding: 0 36px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonial-prev-btn {
        left: -4px;
    }

    .testimonial-next-btn {
        right: -4px;
    }
}

@media (max-width: 640px) {
    .testimonials-slider-container {
        padding: 0 16px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
    }

    .testimonials-slider-track {
        gap: 16px;
    }

    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
        background: rgba(255, 255, 255, 0.95);
    }

    .testimonial-prev-btn {
        left: -2px;
    }

    .testimonial-next-btn {
        right: -2px;
    }
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #ebe4d8;
    border-radius: 8px;
    padding: 34px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(17, 92, 121, 0.05);
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(17, 92, 121, 0.1);
    border-color: #d6c6b2;
}

.testimonial-stars {
    color: #deb881;
    font-size: 14px;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    line-height: 1.45;
    font-style: italic;
    color: #274856;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.testimonial-author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #f1ece2;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(183, 139, 82, 0.15);
    color: #b78b52;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #115c79;
    margin: 0 0 2px 0;
}

.author-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #658593;
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-tag i {
    color: #2e7d32;
    font-size: 11px;
}

/* Trust Stats Bar */
.trust-stats-bar {
    margin-top: 55px;
    background: #ffffff;
    border: 1px solid #ede7dc;
    border-radius: 8px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 6px 20px rgba(17, 92, 121, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #115c79;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6c8a98;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #e5ddd0;
}

/* ==========================================================================
   11. CONSULTATION FORM ENHANCEMENTS & ANIMATIONS
   ========================================================================== */
@keyframes fieldHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(183, 139, 82, 0.8);
        border-color: #b78b52;
    }

    40% {
        box-shadow: 0 0 0 8px rgba(183, 139, 82, 0.3);
        border-color: #b78b52;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(183, 139, 82, 0);
        border-color: #115c79;
    }
}

.field-highlight-pulse {
    animation: fieldHighlight 1.8s ease;
    border-color: #b78b52 !important;
}

.form-field-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #c0392b;
    margin-top: 3px;
    display: block;
    min-height: 15px;
}

/* ==========================================================================
   13. FINAL CTA BANNER ENHANCEMENTS
   ========================================================================== */
.cta-banner-desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    color: #187fa7;
    margin-bottom: 24px;
    line-height: 1.4;
}

.footer-brand-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-top: 10px;
    width: 80%;
}

/* ==========================================================================
   14. STICKY MOBILE CTA BAR & DESKTOP FLOATING WHATSAPP
   ========================================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(183, 139, 82, 0.35);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 990;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    align-items: center;
    gap: 12px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-sticky-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-cta-btn {
    flex: 1;
    height: 44px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}

.mobile-whatsapp-btn:hover {
    background: #1ebc59;
    color: #ffffff;
}

.mobile-consult-btn {
    background: #115c79;
    color: #ffffff;
    border: 1px solid #115c79;
}

.mobile-consult-btn:hover {
    background: #b78b52;
    border-color: #b78b52;
    color: #ffffff;
}

/* Desktop Floating WhatsApp */
.desktop-floating-whatsapp {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 994;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulseWhatsApp 3s infinite;
}

.desktop-floating-whatsapp:hover {
    background-color: #1fba59;
    color: #ffffff;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 8px 26px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp-tooltip {
    position: absolute;
    left: 64px;
    background: #17313b;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: all 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.desktop-floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   17. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-fade {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-fade.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children transitions inside grid */
.journey-steps-grid.revealed .journey-step-item:nth-child(1) {
    transition-delay: 0.05s;
}

.journey-steps-grid.revealed .journey-step-item:nth-child(3) {
    transition-delay: 0.15s;
}

.journey-steps-grid.revealed .journey-step-item:nth-child(5) {
    transition-delay: 0.25s;
}

.journey-steps-grid.revealed .journey-step-item:nth-child(7) {
    transition-delay: 0.35s;
}

.journey-steps-grid.revealed .journey-step-item:nth-child(9) {
    transition-delay: 0.45s;
}

/* ==========================================================================
   18. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .quick-form-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-steps-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-connector {
        display: none;
    }

    .journey-step-item {
        flex: 0 0 30%;
        margin-bottom: 24px;
    }
}

@media (max-width: 991px) {
    .header-consult-btn {
        display: none;
    }

    .mobile-menu-cta {
        display: block;
        padding: 12px 20px;
    }

    .mobile-consult-btn-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #115c79;
        color: #ffffff;
        padding: 12px;
        border-radius: 6px;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .quick-enquiry-section {
        margin-top: 0;
        padding: 50px 0 60px;
    }

    .quick-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 20px;
    }

    .quick-submit-group {
        grid-column: auto;
    }

    .journey-step-item {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .desktop-floating-whatsapp {
        display: none;
    }

    .mobile-sticky-cta {
        display: flex;
    }

    .quick-enquiry-card {
        padding: 30px 22px 26px;
        outline-offset: 4px;
    }

    .quick-title {
        font-size: 28px;
    }

    .quick-desc {
        font-size: 16px;
        margin-bottom: 22px;
    }

    .journey-step-item {
        flex: 0 0 100%;
        margin-bottom: 24px;
    }

    .trust-stats-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 640px) {
    .quick-form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .quick-submit-group {
        grid-column: 1;
        margin-top: 6px;
    }

    .quick-submit-spacer,
    .quick-submit-error-spacer {
        display: none !important;
    }

    .quick-enquiry-card {
        padding: 24px 16px 20px;
        outline: none;
    }

    .quick-title {
        font-size: 24px;
    }

    .quick-desc {
        font-size: 15px;
    }

    .quick-submit-btn {
        font-size: 11px;
        padding: 0 10px;
    }
}