:root {
    --gold-primary: #ab8139;
    --gold-hover: #96783d;
    --dark-gold: #966e27;
    --gold-light: #f9f5ed;
    --gold-banner-bg: #ab8139;
    --overlay-gold: rgba(220, 185, 120, 0.25);
    --text-dark: #333333;
    --text-muted: #6b7280;
    --gray-color: #f5f6f8;
    --font-family: 'Poppins';
    --gold-border: rgba(163, 130, 64, 0.2);
    --white: #ffffff;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(184, 150, 85, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 12px 35px rgba(184, 150, 85, 0.08);
    --shadow-hover: 0 20px 45px rgba(184, 150, 85, 0.18);
    --bg-light: #faf8f5;
    --golden-gradient-background: radial-gradient(circle at 50% 1%, rgba(184, 150, 85, 0.1) 0%, transparent 100%), linear-gradient(180deg, #ffffff 0%, var(--gold-light) 100%);
    --card-radius: 16px;
    --brand-dark: #2b2b2b;
    --brand-grey: #e1e1e1;
    --brand-text-sub: #757575;
}

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

html {
      /* Modern standard approach */
      scrollbar-color: var(--gold-primary) transparent;
      scrollbar-width: thin;
}

/* Webkit custom scrollbar approach for finer design control */
::-webkit-scrollbar {
      width: 5px;
}

::-webkit-scrollbar-track {
      background: transparent; /* Makes track background transparent */
}

::-webkit-scrollbar-thumb {
      background-color: #888888; /* Scrollbar color */
      border-radius: 4px;       /* Optional: rounded corners */
}

::-webkit-scrollbar-thumb:hover {
      background-color: var(--gold-hover); /* Hover color */
}

body, html {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    letter-spacing: .5px;
}

.theme-border {
    border: 1px solid var(--gold-banner-bg);
}

.bg-gray {
    background-color: var(--gray-color) !important;
}

.bg-golden-gradient {
    background: var(--golden-gradient-background) !important;
}

.bg-antiquewhite {
    --bs-bg-opacity: 1;
    background-color: antiquewhite !important;
}

/* ==========================================================================
   TOP BAR BELT (LOGO GOLD BACKGROUND)
   ========================================================================== */

.top-bar-belt {
    background-color: #b88a38;
    /* Exact Devotion Logo Gold Tone */
    font-size: 0.8rem;
    /* ~13px compact font size */
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background-color: #b88a38;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1050 !important;
    /* Forces top belt above sticky headers/navbars */
    overflow: visible !important;
    /* Allows dropdown menus to fly out freely */
    padding: 1px;
}

/* Links & Icons */
.belt-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.belt-link:hover {
    color: #ffffff;
    opacity: 0.85;
    transform: translateY(-1px);
}

.belt-link i {
    font-size: 0.9rem;
}

/* WhatsApp Icon Badge */
.whatsapp-highlight i {
    color: #25D366;
    /* Official WhatsApp Green */
    font-size: 1rem;
}

/* Vertical Dividers */
.belt-divider {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    user-select: none;
}

/* Dropdown Customization */
.belt-dropdown .dropdown-toggle::after {
    margin-left: 0.25em;
    vertical-align: 0.15em;
}

.belt-dropdown .dropdown-item {
    padding: 0.4rem 1rem;
    transition: all 0.2s ease;
}

.belt-dropdown .dropdown-item:hover,
.belt-dropdown .dropdown-item.active {
    background-color: rgba(184, 138, 56, 0.1);
    color: #b88a38;
    border-left-color: var(--gold-hover);
}

.jurisdiction-menu {
    min-width: 190px;
}

.fs-8 {
    font-size: 0.725rem;
}

/* Force jurisdiction/country menu to align from the right edge inward */
.jurisdiction-menu,
.belt-dropdown .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    max-width: 90vw;
    /* Fits safely inside small screens */
}

/* Ensure the top belt padding prevents right boundary clips */
.top-bar-belt .container-fluid {
    padding-right: 1.5rem !important;
}

/* Ensure the parent containers also allow overflow */
.top-bar-belt .container-fluid,
.top-bar-belt .d-flex {
    overflow: visible !important;
}

/* Explicit Z-Index for Dropdown Elements */
.belt-dropdown {
    position: relative;
    z-index: 1051;
}

.belt-dropdown .dropdown-menu {
    min-width: 150px;
    font-size: 0.85rem;
    z-index: 1052 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px;
}

/* ==========================================================================
   STICKY HEADER ENHANCEMENTS
   ========================================================================== */

/* Fixes the dropdown cutting off without needing overflow properties */
.devotion-header .navbar,
.devotion-header .container-fluid {
    position: static !important; 
}

.devotion-header .dropdown {
    position: relative; /* Keeps the dropdown menu anchored only to its link item */
}

.devotion-header.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow: visible !important; /* Forces layout visibility over sticky containers */
}

/* ==========================================================================
   STICKY WRAPPER ENHANCEMENTS (Both Belt & Header)
   ========================================================================== */

.main-sticky-navigation {
    position: -webkit-sticky; /* For Safari compatibility */
    position: sticky;
    top: 0;
    z-index: 1030; /* Keeps both elements above the scrolling page content */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

/* Optional styling cleanup for the header inside the wrapper */
.devotion-header {
    transition: all 0.3s ease-in-out;
}

/* --- Image Logo Styling --- */
.brand-logo {
    /* Responsive height for logo */
    height: clamp(40px, 4vw, 55px);
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.02);
}

/* --- Responsive & Fluid Typography for Logo --- */
.brand-title {
    /* Fluid font size scaling from 22px up to 32px based on screen size */
    font-size: clamp(1.375rem, 2vw + 1rem, 2rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    line-height: 1.1;
    display: block;
}

.brand-subtitle {
    /* Fluid font size scaling from 10px up to 13px */
    font-size: clamp(0.625rem, 0.5vw + 0.5rem, 0.8125rem);
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}

.brand-subtitle .line {
    display: inline-block;
    width: clamp(12px, 1.5vw, 24px);
    height: 1px;
    background-color: var(--gold-primary);
}

/* --- Color Helpers --- */
.text-gold {
    color: var(--gold-primary) !important;
}

.border-gold {
    border: 1px solid var(--gold-primary) !important;
}

.bg-gold {
    background-color: var(--gold-banner-bg) !important;
}

/* --- Top Pill Navigation --- */
.top-pill-nav .nav-link {
    font-size: clamp(0.75rem, 0.4vw + 0.6rem, 0.85rem);
    font-weight: 500;
    padding: 0.25rem 0.85rem;
    color: var(--gold-primary);
}

.top-pill-nav .nav-link:hover {
    color: var(--gold-hover);
}

/* --- Main Navigation Links --- */
.navbar-nav .nav-link {
    color: var(--text-dark);
    /* Fluid font size scaling between 13px and 14.5px */
    font-size: 1rem;
    font-weight: 500;
    padding-left: clamp(0.4rem, 0.6vw, 0.85rem) !important;
    padding-right: clamp(0.4rem, 0.6vw, 0.85rem) !important;
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--gold-primary);
}

.dropdown-item {
    font-size: 0.875rem;
    font-weight: 400;
}

.dropdown-item:active,
.dropdown-item.active {
    background-color: var(--gold-primary);
    color: #000 !important;
    border-left-color: var(--gold-hover);
}

/* Dropdown Arrow Customization */
.navbar-nav .dropdown-toggle::after,
.top-pill-nav .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 0.35em;
}

.dropdown-item {
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 400;
    color: #444444;
    padding: 0.5rem 1rem;
    position: relative;
    border-left: 3px solid transparent;
    /* Hidden left border indicator */
    transition: all 0.25s ease-in-out;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--gold-primary);
    background-color: rgba(184, 150, 85, 0.06);
    /* Elegant gold tint background */
    padding-left: 1.1rem;
    /* Subtle right indent effect */
    border-left-color: var(--gold-primary);
    /* Gold vertical accent line */
    font-weight: 500;
}

/* Main Heading: Scales dynamically between 24px and 44px */
.hero-title {
    font-size: clamp(1.5rem, 3.5vw + 0.5rem, 2.6rem);
    letter-spacing: -0.5px;
    line-height: 1.25;
}

/* Main Subtitle: Scales dynamically between 14px and 18px */
.hero-subtitle {
    color: var(--white) !important;
    font-weight: 500;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 2.2rem);
    text-align: center;
}

/* Banner Title "OUR SERVICES": Scales between 26px and 40px */
.services-strip-title {
    font-size: clamp(1.625rem, 2.5vw + 0.75rem, 2.5rem);
    letter-spacing: 1.5px;
}

/* Banner Description Text: Scales between 14px and 18px */
.services-strip-text {
    font-size: clamp(0.875rem, 0.8vw + 0.65rem, 1.125rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* --- Geometric Graphic Elements (Matches visual in image) --- */
.shape-top-left {
    position: absolute;
    top: 0px;
    left: 10%;
    width: 70px;
    height: 70px;
    /* background: #c59f7d; */
    /* transform: rotate(45deg); */
    /* opacity: 0.7; */
    /* clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); */
}

.shape-mid-left {
    position: absolute;
    bottom: 38%;
    left: 13%;
    width: 100px;
    height: 100px;
}

/* ==========================================================================
   SERVICES SHOWCASE GRID STYLES
   ========================================================================== */

/* Container Box Sizing */
.service-icon-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Style for Option 1: Video Tag --- */
.service-animated-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Blends nicely with bg-light background */
}

.service-animated-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Blends white/transparent GIF background seamlessly with light cards */
    user-select: none;
    -webkit-user-drag: none;
}

/* Featured Right Column Background Image (Fallback pattern if no image) */
.featured-image-bg {
    background: url('../images/touch-map.png') center/cover no-repeat;
    min-height: 340px;
}

/* Glass Overlay Card */
.overlay-glass-card {
    background: rgb(255 255 255 / 50%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    max-width: 260px;
    /* border: 1px solid rgba(255, 255, 255, 0.4); */
    box-shadow: 0 8px 24px rgb(0 0 0 / 55%);
}

.overlay-glass-card h4 {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.2;
}

.overlay-glass-card p {
    font-size: 0.825rem;
    line-height: 1.4;
}

/* Featured Title Text */
.featured-service-title {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.2;
}

/* Pill Call-To-Action Button */
.btn-pill-action {
    background-color: rgba(255, 255, 255, 0.9);
    color: #222222;
    padding: 0.4rem 1.25rem 0.4rem 0.5rem;
    border-radius: 50rem;
    font-size: clamp(0.75rem, 0.8vw, 0.875rem);
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
    border: none;
}

.btn-pill-action .arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--gold-primary);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-pill-action:hover {
    background-color: #ffffff;
    color: var(--gold-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-pill-action:hover .arrow-circle {
    transform: rotate(45deg);
}

/* Grid Cards & Active Border Styling */
.service-grid-card {
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.service-grid-card:hover,
.service-grid-card.border-gold-active {
    border-color: var(--gold-primary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(184, 150, 85, 0.12);
    transform: translateY(-3px);
}

.service-card-title {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.3;
}

/* ==========================================================================
   EXACT MATCH JURISDICTIONS SECTION & ANIMATIONS
   ========================================================================== */

/* Main Section Canvas */
.jurisdictions-section {
    background-color: #b58d3d;
    /* Exact gold tone */
    overflow: visible !important;
    /* Prevents 3D shapes from being cut off */
}

/* Curved Top-Left / Bottom-Right & Square Corner Frame Box */
.jurisdictions-frame-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    /* Asymmetric Corner Curve Effect (Curved TL and BR, Square TR and BL) */
    border-radius: 28px 0px 28px 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   JURISDICTIONS ROW BACKGROUND IMAGE STYLES
   ========================================================================== */

.jurisdictions-bg-row {
    background-image: url('../images/world-map.png');
    /* Replace with your image path */
    background-size: contain;
    /* Fits image neatly within row */
    background-position: center center;
    background-repeat: no-repeat;
    padding: 2.5rem;
    /* Padding so text doesn't touch edges */
    border-radius: 20px;
    position: relative;
}

/* Mobile Responsiveness Adjustment */
@media (max-width: 767.98px) {
    .jurisdictions-bg-row {
        background-size: cover;
        /* Covers full width on smaller screens */
        padding: 1.5rem;
    }
}

/* Dynamic Typography */
.jurisdiction-title {
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    letter-spacing: -0.5px;
}

.jurisdiction-description {
    font-size: clamp(0.875rem, 0.8vw + 0.65rem, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
}

/* List Items with Underlines */
.jurisdiction-list li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.jurisdiction-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease-in-out;
}

.jurisdiction-list li::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.35s ease-in-out;
}

.jurisdiction-link .list-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease-in-out;
}

.jurisdiction-list li:hover::after {
    width: 100%;
}

.jurisdiction-link:hover {
    padding-left: 0.6rem;
}

.jurisdiction-link:hover .list-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* --- OVERFLOWING 3D SHAPES (HIGH Z-INDEX) --- */

/* Pink Cone Floating on Top Right */
.geo-cone-3d {
    position: absolute;
    top: -50px;
    /* Overlaps top of section */
    right: 7%;
    width: 100px;
    height: 100px;
    /* border-left: 28px solid transparent;
    border-right: 28px solid transparent;
    border-bottom: 55px solid #e091a9;
    filter: drop-shadow(4px 10px 12px rgba(0, 0, 0, 0.25)); */
    z-index: 10;
    animation: floatTop 5s ease-in-out infinite alternate;
}

/* Blue Isometric Cube Floating on Bottom Left */
.geo-cube-3d {
    position: absolute;
    bottom: -50px;
    /* Overlaps bottom of section */
    left: 12%;
    width: 120px;
    height: 120px;
    /* background: #62bfe6;
    border-top: 6px solid #82cfef;
    border-left: 6px solid #4baed7;
    box-shadow: -8px 12px 18px rgba(0, 0, 0, 0.22); */
    z-index: 10;
    /* transform: rotate(-12deg); */
    animation: floatBottom 6s ease-in-out infinite alternate;
}

/* ==========================================================================
   OFFSHORE JURISDICTIONS SLIDER STYLES
   ========================================================================== */

/* Typography */
.offshore-title {
    font-size: clamp(1.85rem, 3vw, 2.75rem);
}

.offshore-subtitle {
    font-size: clamp(0.875rem, 0.8vw + 0.65rem, 1.05rem);
    line-height: 1.6;
}

/* Arrow Navigation Buttons */
.offshore-nav-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.offshore-nav-btn:hover {
    background-color: var(--gold-hover);
    transform: scale(1.08);
}

/* Offshore Card Customization */
.offshore-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff !important;
    transition: box-shadow 0.3s ease-in-out;
    min-height: 450px;
}

.offshore-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
    height: 170px;
    position: relative;
}

/* Zoom Hover Animation */
.card-zoom-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offshore-card:hover .card-zoom-img {
    transform: scale(1.08);
}

.card-title {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    line-height: 1.3;
}

.card-text {
    font-size: 0.825rem;
    line-height: 1.45;
}

/* Learn More Pill Button */
.btn-gold-pill {
    background-color: var(--gold-primary);
    font-size: 0.8rem;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-gold-pill:hover {
    background-color: var(--gold-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   PERFECT MATCH LICENSING & VENN DIAGRAM SECTION
   ========================================================================== */

/* Main Venn Graphic Frame Wrapper */
.venn-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 420px;
    margin: 0 auto;
}

.venn-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

/* Pill Action Buttons Styling */
.max-width-pills {
    max-width: 380px;
}

.license-pill-btn {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.license-pill-btn .arrow-badge {
    width: 38px;
    height: 38px;
    background-color: #b88a38;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.license-pill-btn:hover {
    border-color: #b88a38;
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(184, 138, 56, 0.18) !important;
}

.license-pill-btn:hover .arrow-badge {
    transform: rotate(45deg);
    background-color: #a0752a;
}

/* --- OVERFLOWING 3D GEOMETRIC OBJECTS --- */

/* Top Right Soft Pink Cone */
.offshore-3d-triangle {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 100px;
    height: 100px;
    animation: floatCone 6s ease-in-out infinite alternate;
}

.licensing-3d-cone {
    position: absolute;
    top: 20px;
    right: 10%;
    width: 100px;
    height: 100px;
    /* border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 45px solid #f2b09b; */
    /* filter: drop-shadow(4px 8px 12px rgba(0,0,0,0.15)); */
    animation: floatCone 6s ease-in-out infinite alternate;
}

/* Bottom Left Copper/Rose Torus (Donut) */
.licensing-3d-torus {
    position: absolute;
    bottom: -10px;
    left: 5%;
    animation: floatTorus 7s ease-in-out infinite alternate;
}

.licensing-3d-torus img {
    width: 80px;
    height: 150px;
}

.blue-square {
    position: absolute;
    top: -20px;
    left: 10%;
    width: 180px;
    animation: floatCone 6s ease-in-out infinite alternate;
}

.yellow-square {
    position: absolute;
    top: 20px;
    right: 10%;
    width: 100px;
    height: 100px;
    animation: floatCone 6s ease-in-out infinite alternate;
}

.blue-ring {
    position: absolute;
    top: 50px;
    right: 15%;
    width: 120px;
    height: 150px;
    animation: floatCone 6s ease-in-out infinite alternate;
}

.brown-ring {
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 100px;
    height: 130px;
    animation: floatCone 6s ease-in-out infinite alternate;
}

.golden-square{
    position: absolute;
    bottom: 70px;
    left: 40%;
    animation: floatTorus 7s ease-in-out infinite alternate;
}

.golden-square img{
    width: 125px;
    height: 140px;
}

.news-circle {
    position: absolute;
    right: 5%;
    width: 100px;
    height: 130px;
    animation: floatCone 6s ease-in-out infinite alternate;
}
/* Brand & Text Styling */
.footer-brand-logo {
    max-width: 210px;
    height: auto;
}

.footer-heading {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.footer-text {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-link-gold {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s ease;
}

.footer-link-gold:hover {
    color: var(--gold-primary);
    opacity: 0.8;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.5rem;
}

.footer-nav-list a {
    color: #555555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--gold-primary);
}

/* Accordion Customization */
.accordion-footer {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 0.65rem;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0.5rem;
}

.accordion-footer .accordion-item {
    border-bottom: 1px solid var(--gold-border) !important;
    background: transparent;
}

.accordion-footer .accordion-button {
    background: transparent;
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: none;
}

.accordion-footer .accordion-button:not(.collapsed) {
    color: var(--gold-primary);
    background: transparent;
}

/* Replacing Default Arrow with '+' and '-' Animation */
.accordion-footer .accordion-button::after {
    content: "+";
    background-image: none;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    width: auto;
    height: auto;
    color: var(--gold-primary);
    transition: transform 0.2s ease;
}

.accordion-footer .accordion-button:not(.collapsed)::after {
    content: "\2212";
    /* Unicode Minus Sign */
    transform: none;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background-color: var(--gold-light);
    font-size: 0.85rem;
    color: #444444;
}

.footer-bottom-bar a {
    color: #444444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-bar a:hover {
    color: var(--gold-primary);
}

/* Card Wrapper */
.brand-contact-card {
    background: #ffffff;
    border: 1px solid var(--gold-border);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 12px 30px rgba(163, 130, 64, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(163, 130, 64, 0.15);
    border-color: rgba(163, 130, 64, 0.4);
}

/* Ambient Subtle Background Blur Blob */
.brand-contact-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(163, 130, 64, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Logo Stylings */
.brand-logo-title {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
    line-height: 1;
}

.brand-logo-sub {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-transform: uppercase;
    border-top: 1px solid var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
    padding: 2px 0;
    margin-top: 4px;
    display: inline-block;
    width: 100%;
}

/* Interactive Call To Action Button */
.btn-enquiry-pill {
    background-color: var(--gold-light);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--gold-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-enquiry-pill i {
    transition: transform 0.3s ease;
}

.btn-enquiry-pill:hover {
    background-color: var(--gold-primary);
    color: #ffffff;
    border-color: var(--gold-primary);
    box-shadow: 0 6px 18px rgba(163, 130, 64, 0.3);
}

.btn-enquiry-pill:hover i {
    transform: translateX(5px);
}

/* Social Icons Circle */
.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--gold-light);
    color: var(--gold-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid var(--gold-border);
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: var(--gold-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(163, 130, 64, 0.25);
}