/* ============================================================
   Assure Shreshthi Enterprises - Style Sheet
   Design System: Navy-Gold Luxury Corporate
   ============================================================ */

/* --- 1. CSS Custom Properties (Design Tokens) --- */
:root {
    --navy: #070D15;
    --navy2: #0C1A2B;
    --navy3: #132C4A;
    --gold: #C9982D;
    --gold-l: #DBAF4A;
    --gold-d: #A37B1C;
    --gold-glow: rgba(201, 152, 45, 0.12);
    --cream: #F8F5ED;
    --warm: #F2EDE3;
    --dark: #0A0A0A;
    --text: #555;
    --muted: #999;
    --heading: 'Playfair Display', Georgia, serif;
    --body: 'Outfit', sans-serif;
    --accent: 'Cormorant', serif;
}

/* --- 2. Base / Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--body);
    color: var(--dark);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--navy);
    min-height: 100vh;
}

/* --- 3. Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .6s, visibility .6s;
}

.loader-logo {
    width: 100px;
    height: 100px;
    animation: loaderPulse 1.8s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: .5; transform: scale(1); filter: brightness(0.8); }
    50% { opacity: 1; transform: scale(1.1); filter: brightness(1.2) drop-shadow(0 0 20px rgba(201,152,45,.4)); }
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-line {
    width: 120px;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.loader-line::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 40%;
    background: var(--gold);
    animation: load 1.2s infinite;
}

.loader-text {
    font-family: var(--accent);
    font-size: .8rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    margin-top: 1rem;
}

/* --- 4. Custom Cursor --- */
.cursor {
    width: 12px;
    height: 12px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform .15s, opacity .15s;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform .08s;
}

@media (max-width: 768px) {
    .cursor,
    .cursor-dot {
        display: none;
    }
}

/* --- 5. Animations --- */
@keyframes load {
    0% { left: -40%; }
    100% { left: 100%; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes drift {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes scrollX {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- 6. Reveal (Scroll Animations) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(.16, 1, .3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }

/* --- 7. Navbar --- */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.nav-main.scrolled {
    padding: .6rem 0;
    background: rgba(7, 13, 21, .95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(201, 152, 45, .08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 46px;
    transition: height .4s;
}

.nav-main.scrolled .nav-logo img {
    height: 38px;
}

.nav-logo-text {
    font-family: var(--accent);
    font-size: .95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    line-height: 1.2;
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-logo-text .logo-sub {
    display: block;
    font-size: .6rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, .45);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .3s;
    position: relative;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: var(--gold);
    background: rgba(201, 152, 45, .08);
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(201, 152, 45, .06);
}

/* --- Services Dropdown Menu (Vertical) --- */
.nav-links li.has-dropdown {
    position: relative;
}

.nav-links li.has-dropdown > a::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: .5rem;
    margin-left: 5px;
    transition: transform .3s;
    display: inline-block;
    vertical-align: middle;
}

.nav-links li.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    background: rgba(10, 16, 26, .98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(201, 152, 45, .1);
    border-radius: 6px;
    padding: .4rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s cubic-bezier(.16,1,.3,1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

.nav-links li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .65rem 1.1rem;
    text-decoration: none;
    transition: all .2s;
    border-left: 2px solid transparent;
}

.nav-dropdown-item:hover {
    background: rgba(201, 152, 45, .06);
    border-left-color: var(--gold);
}

.nav-dropdown-item .dd-icon {
    font-size: .9rem;
    color: var(--gold);
    opacity: .7;
    width: 20px;
    text-align: center;
    transition: opacity .2s;
}

.nav-dropdown-item:hover .dd-icon {
    opacity: 1;
}

.nav-dropdown-item .dd-title {
    font-family: var(--body);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    display: block;
    transition: color .2s;
}

.nav-dropdown-item:hover .dd-title {
    color: #fff;
}

/* --- Contact CTA Button --- */
.nav-cta-btn {
    font-size: .7rem !important;
    letter-spacing: 2px;
    padding: 10px 28px !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 2px;
    transition: all .4s;
    box-shadow: 0 2px 15px rgba(201, 152, 45, .25);
}

.nav-cta-btn:hover {
    background: var(--gold-l) !important;
    color: var(--navy) !important;
    box-shadow: 0 4px 25px rgba(201, 152, 45, .4);
    transform: translateY(-1px);
}

.nav-cta-btn::after {
    display: none !important;
}

@media (max-width: 992px) {
    .nav-links li.has-dropdown > a {
        position: relative;
    }
    .nav-links li.has-dropdown > a::after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-links li.has-dropdown.open > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    .nav-dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        border: none;
        border-left: 2px solid rgba(201, 152, 45, .2);
        border-radius: 0;
        padding: .4rem 0 .4rem 0;
        margin-top: .5rem;
        display: none;
        box-shadow: none;
    }
    .nav-dropdown::before {
        display: none;
    }
    .nav-links li.has-dropdown:hover .nav-dropdown {
        display: none;
    }
    .nav-links li.has-dropdown.open .nav-dropdown {
        display: flex;
    }
    .nav-dropdown-item {
        padding: .5rem 1rem;
    }
    .nav-dropdown-item .dd-icon {
        font-size: .8rem;
    }
    .nav-dropdown-item .dd-title {
        font-size: .65rem;
    }
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    position: absolute;
    left: 0;
    transition: all .3s;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(7, 13, 21, .98);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        border-top: 1px solid rgba(201, 152, 45, .1);
    }

    .nav-links.open {
        display: flex;
    }
}

/* --- 8. Hero Section --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(19, 44, 74, .6) 0%, transparent 70%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(201, 152, 45, .04) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: linear-gradient(rgba(201, 152, 45, .5) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(201, 152, 45, .5) 1px, transparent 1px);
    background-size: 80px 80px;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: drift 8s infinite;
}

.hero-right {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    max-width: 400px;
    opacity: .07;
    z-index: 1;
    pointer-events: none;
}

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

@media (max-width: 992px) {
    .hero-right {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.hero-overline {
    font-family: var(--accent);
    font-size: .85rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeUp 1s .8s forwards;
}

.hero-overline::before,
.hero-overline::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 15px;
    opacity: .5;
}

.hero-h1 {
    font-family: var(--heading);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeUp 1.2s 1s forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1.5rem 0;
    opacity: 0;
    animation: fadeUp 1s 1.3s forwards;
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    max-width: 520px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeUp 1s 1.5s forwards;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s 1.7s forwards;
}

/* --- 9. Buttons --- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}

.btn-fill {
    background: var(--gold);
    color: var(--navy);
    border: none;
}

.btn-fill:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(201, 152, 45, .25);
}

.btn-stroke {
    background: transparent;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .15);
}

.btn-stroke:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- 10. Hero Stats Bar --- */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 13, 21, .8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 152, 45, .08);
    padding: 1.5rem 0;
    z-index: 3;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, .06);
}

.stat-item:last-child::after {
    display: none;
}

.stat-num {
    font-family: var(--heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: .65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: 4px;
}

/* --- 11. Scroll Ticker --- */
.scroll-text-wrap {
    overflow: hidden;
    background: var(--navy);
    padding: 1.2rem 0;
    border-top: 1px solid rgba(201, 152, 45, .06);
    border-bottom: 1px solid rgba(201, 152, 45, .06);
}

.scroll-text {
    display: flex;
    width: max-content;
    animation: scrollX 40s linear infinite;
}

.scroll-text span {
    font-family: var(--accent);
    font-size: .85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201, 152, 45, .55);
    white-space: nowrap;
    padding: 0 2rem;
}

.scroll-text span b {
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 0 8px rgba(201, 152, 45, .3);
}

/* --- 12. Section Utilities --- */
.sec-pad {
    padding: 7rem 0;
}

.tag {
    font-family: var(--accent);
    font-size: .8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-d);
    font-weight: 500;
}

.big-title {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dark);
    margin: .8rem 0;
}

.big-title em {
    font-style: italic;
    color: var(--gold-d);
    font-weight: 500;
}

.gold-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    margin: 1.2rem 0;
}

.desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.9;
    max-width: 560px;
}

/* --- 13. About Section --- */
.sec-about {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.sec-about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.about-box {
    background: #fff;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: all .5s cubic-bezier(.16, 1, .3, 1);
    border: 1px solid rgba(0, 0, 0, .04);
}

.about-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    transition: width .5s;
}

.about-box:hover::before {
    width: 100%;
}

.about-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .06);
}

.about-box .num {
    font-family: var(--heading);
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(201, 152, 45, .15), rgba(201, 152, 45, .06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: absolute;
    top: 15px;
    right: 20px;
}

.about-box:hover .num {
    background: linear-gradient(135deg, rgba(201, 152, 45, .3), rgba(201, 152, 45, .12));
    -webkit-background-clip: text;
    background-clip: text;
}

.about-box h3 {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.about-box p {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.7;
}

.about-box i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

/* --- 14. Commodities Section --- */
.sec-comm {
    background: var(--navy);
    position: relative;
}

.sec-comm::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9982D' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.comm-card {
    position: relative;
    background: #fff;
    border: none;
    overflow: hidden;
    transition: all .5s;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.comm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.comm-card-img {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.comm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.comm-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 13, 21, .5), transparent 60%);
    pointer-events: none;
}

.comm-num {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-family: var(--heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .4);
    line-height: 1;
    z-index: 2;
}

.comm-card:hover .comm-num {
    color: rgba(201, 152, 45, .7);
}

.comm-card-body {
    padding: 1.5rem;
}

.comm-card h3 {
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: .4rem;
}

.comm-card p {
    font-size: .8rem;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
}

.comm-icon {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: .5rem;
    display: inline-block;
}

/* --- 15. Process Section --- */
.sec-process {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3;
}

.p-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 1rem;
}

.p-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    background: var(--cream);
    transition: all .4s;
    position: relative;
    z-index: 1;
}

.p-circle span {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.p-step:hover .p-circle {
    background: var(--gold);
    transform: scale(1.1);
}

.p-step:hover .p-circle span {
    color: var(--navy);
}

.p-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .4rem;
    margin-top: .8rem;
}

.p-step p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .p-step {
        flex: 0 0 33.33%;
    }
}

/* --- 16. Services Section --- */
.sec-services {
    background: var(--cream);
}

.svc-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .5s;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .06);
}

.svc-visual {
    height: 220px;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.svc-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
}

.svc-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image:
        linear-gradient(45deg, rgba(201, 152, 45, .3) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(201, 152, 45, .3) 1px, transparent 1px);
    background-size: 30px 30px;
    transition: opacity .5s;
}

.svc-card:hover .svc-visual::after {
    opacity: .12;
}

.svc-visual .svc-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 152, 45, .12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.svc-visual i {
    font-size: 3.5rem;
    color: var(--gold);
    opacity: .3;
    position: relative;
    z-index: 1;
    transition: all .5s;
}

.svc-card:hover .svc-visual i {
    opacity: .6;
    transform: scale(1.1);
}

.svc-visual .svc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(transparent, rgba(7, 13, 21, .9));
    z-index: 2;
}

.svc-visual .svc-label span {
    font-family: var(--accent);
    font-size: .7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.svc-body {
    padding: 2rem;
}

.svc-body h3 {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.svc-body p {
    font-size: .88rem;
    color: var(--text);
    line-height: 1.8;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-d);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap .3s;
}

.svc-link:hover {
    gap: 12px;
    color: var(--gold);
}

/* --- 17. Quote Section --- */
.sec-quote {
    background: var(--warm);
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.sec-quote::before {
    content: '\201C';
    font-family: var(--heading);
    font-size: 15rem;
    color: rgba(201, 152, 45, .06);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.quote-text {
    font-family: var(--heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.quote-author {
    margin-top: 1.5rem;
    font-family: var(--accent);
    font-size: .8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-d);
}

/* --- 18. News Section --- */
.sec-news {
    background: #fff;
}

.news-scroll-wrap {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.news-scroll-wrap::-webkit-scrollbar {
    height: 4px;
}

.news-scroll-wrap::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .04);
}

.news-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.news-scroll-wrap .news-card-wrap {
    min-width: 340px;
    max-width: 380px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .news-scroll-wrap .news-card-wrap {
        min-width: 280px;
    }
}

.news-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-d);
    text-decoration: none;
    transition: all .3s;
    margin-top: 1.5rem;
}

.news-view-all:hover {
    gap: 14px;
    color: var(--gold);
}

.news-item {
    background: var(--cream);
    overflow: hidden;
    transition: all .5s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .03);
}

.news-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .06);
}

.news-visual {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy3));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-visual i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 1;
    position: relative;
    z-index: 2;
}

.news-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 13, 21, .4), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.news-visual .news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 14px;
}

.news-content {
    padding: 1.8rem;
}

.news-date {
    font-family: var(--accent);
    font-size: .75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-d);
    font-weight: 500;
}

.news-content h3 {
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin: .5rem 0;
    line-height: 1.3;
}

.news-content p {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.7;
}

.news-read {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-d);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s;
}

.news-read:hover {
    gap: 12px;
    color: var(--gold);
}

/* --- 19. Why Partner Section --- */
.sec-why {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.sec-why::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 152, 45, .03) 0%, transparent 60%);
}

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .04);
    transition: all .4s;
    margin-bottom: 1rem;
}

.why-card:hover {
    background: rgba(201, 152, 45, .04);
    border-color: rgba(201, 152, 45, .1);
    transform: translateX(8px);
}

.why-icon-box {
    min-width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--gold-d));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.2rem;
}

.why-card h3 {
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .3rem;
}

.why-card p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
}

/* --- 20. CTA Section --- */
.sec-cta {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.sec-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 50%, var(--navy3) 100%);
}

.sec-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 152, 45, .06) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-inner h2 {
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}

.cta-inner h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.cta-inner p {
    color: rgba(255, 255, 255, .4);
    font-size: 1rem;
    margin: 1rem 0 2.5rem;
    font-weight: 300;
}

/* --- 21. Contact Section --- */
.sec-contact {
    background: var(--cream);
}

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

.contact-icon {
    min-width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border: 1px solid rgba(201, 152, 45, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-d);
    font-size: 1.1rem;
}

.contact-info-item h3 {
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

.contact-form {
    background: #fff;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, .04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .03);
}

.form-input {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: .9rem 0;
    font-size: .9rem;
    font-family: var(--body);
    background: transparent;
    transition: border-color .3s;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: none;
}

.form-input::placeholder {
    color: #bbb;
}

/* Contact form validation */
.form-input.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: none;
    font-size: .75rem;
    color: #dc3545;
    margin-top: .25rem;
}

.was-validated .form-input:invalid ~ .invalid-feedback,
.form-input.is-invalid ~ .invalid-feedback {
    display: block;
}

/* --- 22. Footer --- */
.footer {
    background: #040810;
    padding: 5rem 0 0;
    color: rgba(255, 255, 255, .4);
}

.footer h3 {
    font-family: var(--heading);
    font-size: 1.15rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-gold-line {
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 1.2rem;
}

.footer p,
.footer li {
    font-size: .82rem;
    line-height: 2;
}

.footer a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .3s;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: .72rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* --- 23. Toast Notifications --- */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
}

.toast {
    padding: 1rem 1.5rem;
    font-size: .85rem;
    border-radius: 0;
    margin-bottom: .5rem;
    animation: fadeIn .3s ease;
}

.toast-success {
    background: rgba(201, 152, 45, .1);
    color: var(--gold-d);
    border: 1px solid rgba(201, 152, 45, .2);
}

.toast-error {
    background: rgba(220, 53, 69, .1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, .2);
}

/* --- 24. Inner Page Styles --- */
.page-hero {
    background: var(--navy);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(19, 44, 74, .6) 0%, transparent 70%);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: linear-gradient(rgba(201, 152, 45, .5) 1px, transparent 1px),
                       linear-gradient(90deg, rgba(201, 152, 45, .5) 1px, transparent 1px);
    background-size: 80px 80px;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .page-overline {
    font-family: var(--accent);
    font-size: .8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
}

.page-hero h1 {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 1rem 0;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.page-hero .page-desc {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    max-width: 600px;
    line-height: 1.8;
}

.page-breadcrumb {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .3s;
}

.page-breadcrumb a:hover {
    color: var(--gold);
}

.page-breadcrumb span {
    color: var(--gold);
}

.page-content {
    background: var(--cream);
}

.page-content-white {
    background: #fff;
}

.detail-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, .04);
    margin-bottom: 1.5rem;
    transition: all .4s;
}

.detail-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
    transform: translateY(-3px);
}

.detail-card h3 {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.detail-card p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
}

.detail-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.detail-stat {
    text-align: center;
    padding: 2rem;
    background: var(--navy);
    border: 1px solid rgba(201, 152, 45, .08);
}

.detail-stat .ds-num {
    font-family: var(--heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.detail-stat .ds-label {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-top: .4rem;
}

/* Service grid for 4 cards */
.svc-grid-4 .col-svc {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 992px) {
    .svc-grid-4 .col-svc {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .svc-grid-4 .col-svc {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* --- 25. Service Card Background Images --- */
.svc-visual {
    position: relative;
    overflow: hidden;
}

.svc-visual .svc-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
    transition: opacity .5s, transform .5s;
}

.svc-card:hover .svc-bg-img {
    opacity: .4;
    transform: scale(1.05);
}

/* --- 26. Page Hero Background Images --- */
.page-hero.has-bg-img {
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

.page-hero .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .15;
    z-index: 0;
}

/* --- 27. Feature Image Sections --- */
.feature-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 152, 45, .15);
    pointer-events: none;
}

.feature-img-tall {
    height: 350px;
}

.feature-img-card {
    height: 220px;
}

/* --- 28. Image Detail Cards --- */
.detail-card-img {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    overflow: hidden;
    transition: all .4s;
}

.detail-card-img:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
    transform: translateY(-3px);
}

.detail-card-img .card-img-top {
    height: 200px;
    overflow: hidden;
}

.detail-card-img .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.detail-card-img:hover .card-img-top img {
    transform: scale(1.05);
}

.detail-card-img .card-body {
    padding: 2rem;
}

.detail-card-img .card-body h3 {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: .8rem;
}

.detail-card-img .card-body p {
    font-size: .9rem;
    color: var(--text);
    line-height: 1.8;
}

.detail-card-img .card-body i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: .8rem;
    display: block;
}

/* --- 29. News Cards with Images --- */
.news-item-img {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .04);
    overflow: hidden;
    transition: all .4s;
}

.news-item-img:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
    transform: translateY(-4px);
}

.news-item-img .news-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.news-item-img .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.news-item-img:hover .news-img img {
    transform: scale(1.05);
}

.news-item-img .news-img .news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: .35rem .8rem;
    z-index: 2;
}

.news-item-img .news-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
    pointer-events: none;
}

.news-item-img .news-body {
    padding: 1.8rem;
}

.news-item-img .news-body .news-date {
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.news-item-img .news-body h3 {
    font-family: var(--heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: .8rem;
    line-height: 1.4;
}

.news-item-img .news-body p {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.8;
}

/* --- 30. Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: rgba(201, 152, 45, .15);
    color: var(--gold);
    border: 1px solid rgba(201, 152, 45, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s;
    z-index: 999;
    box-shadow: none;
}

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

.back-to-top:hover {
    background: rgba(201, 152, 45, .25);
    transform: translateY(-2px);
    border-color: var(--gold);
}

/* --- 32. Chat Widget --- */
.chat-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(201, 152, 45, .4);
    z-index: 1001;
    border: none;
    cursor: pointer;
    transition: all .3s;
    color: #fff;
    font-size: 1.4rem;
}

.chat-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 35px rgba(201, 152, 45, .6);
}

.chat-toggle .chat-close { display: none; }
.chat-toggle.active .chat-open { display: none; }
.chat-toggle.active .chat-close { display: inline; }

.chat-widget {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 360px;
    max-height: 480px;
    background: #FAF6ED;
    border: 1px solid rgba(201, 152, 45, .2);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.open {
    display: flex;
    animation: chatSlideUp .3s ease;
}

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

.chat-header {
    background: var(--navy);
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(201, 152, 45, .2);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.chat-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 152, 45, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: .9rem;
}

.chat-header-info h4 {
    font-family: var(--heading);
    font-size: .85rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.chat-header-info span {
    font-size: .65rem;
    color: rgba(255, 255, 255, .7);
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    max-height: 300px;
}

.chat-msg {
    max-width: 85%;
    padding: .6rem 1rem;
    border-radius: 12px;
    font-size: .8rem;
    line-height: 1.6;
    animation: chatFadeIn .3s ease;
}

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

.chat-msg.bot {
    background: #fff;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(201, 152, 45, .12);
}

.chat-msg.user {
    background: var(--gold);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    font-weight: 500;
}

.chat-input-area {
    padding: .8rem 1rem;
    border-top: 1px solid rgba(201, 152, 45, .12);
    display: flex;
    gap: .5rem;
    align-items: center;
    background: #fff;
}

.chat-input-area input {
    flex: 1;
    background: #F5F0E6;
    border: 1px solid rgba(201, 152, 45, .2);
    border-radius: 20px;
    padding: .55rem 1rem;
    color: #333;
    font-size: .82rem;
    font-family: var(--body);
    outline: none;
    transition: border-color .3s;
    -webkit-text-fill-color: #333;
}

.chat-input-area input:focus {
    border-color: var(--gold);
    background: #fff;
}

.chat-input-area input::placeholder {
    color: #999;
    -webkit-text-fill-color: #999;
}

.chat-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: .85rem;
    transition: all .2s;
}

.chat-send:hover {
    background: var(--gold-l);
}

.chat-success {
    text-align: center;
    padding: 2rem 1rem;
}

.chat-success i {
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.chat-success h4 {
    font-family: var(--heading);
    color: #333;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.chat-success p {
    font-size: .75rem;
    color: #777;
}

@media (max-width: 480px) {
    .chat-widget {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 85px;
        max-height: 70vh;
    }
}

/* --- 33. Footer Social Icons --- */
.footer-social {
    display: flex;
    gap: .8rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--navy);
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 152, 45, .35);
}

/* Footer social — horizontal row under brand */
.footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .6rem;
}

/* Footer email word-break to prevent truncation */
.footer a[href^="mailto:"] {
    word-break: break-all;
}

/* Footer phone numbers stacking */
.footer-phone a {
    white-space: nowrap;
}

/* --- 34. Horizontal Scroll Services --- */
.svc-scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    padding-bottom: 1rem;
}

.svc-scroll-wrap::-webkit-scrollbar {
    height: 4px;
}

.svc-scroll-wrap::-webkit-scrollbar-track {
    background: rgba(0,0,0,.05);
    border-radius: 4px;
}

.svc-scroll-wrap::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.svc-scroll-row {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
}

.svc-scroll-row .svc-scroll-item {
    flex: 0 0 320px;
    max-width: 320px;
}

/* --- 35. Mobile Responsive Fixes --- */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
    .hero-h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    .hero-overline {
        font-size: .7rem;
        letter-spacing: 4px;
    }
    .hero-stats-bar {
        padding: .6rem 0;
    }
    .stat-num {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: .5rem;
        letter-spacing: 1.5px;
    }
    .detail-stat .ds-num {
        font-size: 1.8rem;
    }
    .detail-stat .ds-label {
        font-size: .6rem;
        letter-spacing: 1.5px;
    }
    .detail-stat {
        padding: 1rem .5rem;
    }
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    .back-to-top {
        width: 36px;
        height: 36px;
        font-size: .85rem;
        bottom: 80px;
        right: 24px;
    }
    /* Footer mobile center alignment */
    .footer {
        text-align: center;
    }
    .footer .d-flex.align-items-center {
        justify-content: center;
    }
    .footer-gold-line {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center;
    }
    .footer ul {
        text-align: center;
    }
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
    }
    .hero-sub {
        font-size: .85rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: .7rem;
        margin-top: 1.5rem;
    }
    .stat-num {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: .45rem;
        letter-spacing: 1px;
    }
    .detail-stat .ds-num {
        font-size: 1.3rem;
    }
    .footer p, .footer li {
        font-size: .75rem;
    }
    .footer h3 {
        font-size: 1rem;
    }
}
