/* Custom Properties */
:root {
    --primary-theme: #600000;
    --gold-accent: #C5A880;
    --secondary-gold: #B89765;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-text: #333333;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base Styles */
html, body {
    overflow-x: clip;
    width: 100%;
}
body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
}

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

h1 { font-size: 56px; }
h2 { font-size: 38px; }
h3 { font-size: 22px; }
p { font-size: 16px; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
}

/* Colors */
.text-primary { color: var(--primary-theme) !important; }
.text-gold { color: var(--gold-accent) !important; }
.text-light-gray { color: #cccccc !important; }
.bg-primary { background-color: var(--primary-theme) !important; }
.bg-dark-blue { background-color: var(--primary-theme) !important; } /* Kept class name for backward compatibility */
.bg-gold { background-color: var(--gold-accent) !important; }
.bg-light-gray { background-color: var(--light-gray) !important; }

/* Buttons */
.btn-primary {
    background-color: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--white);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
}

.btn-outline-primary {
    color: var(--primary-theme);
    border-color: var(--primary-theme);
}
.btn-outline-primary:hover {
    background-color: var(--primary-theme);
    color: var(--white);
}

.btn-outline-gold {
    color: var(--gold-accent);
    border-color: var(--gold-accent);
}
.btn-outline-gold:hover {
    background-color: var(--gold-accent);
    color: var(--white);
}

/* Topbar Styles */
.site-topbar {
    background-color: #600000;
    padding: 6px 0;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar-left {
    gap: 15px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-item .icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gold-accent);
}
.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: var(--gold-accent);
}
.topbar-divider {
    width: 1px;
    height: 15px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 5px;
}
.estd-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}
.estd-line-left, .estd-line-right {
    height: 1px;
    width: 30px;
    background-color: var(--gold-accent);
    position: relative;
}
.estd-line-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    background-color: var(--gold-accent);
    transform: rotate(45deg);
}
.estd-line-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    background-color: var(--gold-accent);
    transform: rotate(45deg);
}
.estd-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.topbar-right-social {
    display: flex;
    gap: 12px;
}
.topbar-right-social a {
    color: var(--gold-accent);
    font-size: 14px;
    transition: color 0.3s ease;
}
.topbar-right-social a:hover {
    color: #ffffff;
};
}
.contact-item span {
    color: #e0e0e0;
    font-size: 13px;
}
.contact-item span a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item span a:hover {
    color: var(--gold-accent);
}
.topbar-divider {
    width: 1px;
    height: 16px;
    background-color: #444444;
    margin: 0 15px;
}
.estd-text {
    font-size: 13px;
    color: #ffffff;
}
.estd-text strong {
    font-weight: 500;
}
.topbar-right-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topbar-right-social a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #111111;
    border-radius: 50%;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.topbar-right-social a:hover {
    background-color: var(--gold-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =============================================
   MIDDLE BRAND BAR
   ============================================= */
.site-brand-bar {
    background-color: #fdf7e3;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.site-brand-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 22%; /* Adjusts how far left the red shape extends */
    background: linear-gradient(135deg, #a21a24 0%, #600000 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.shiv-logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shiv-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-main-title {
    font-family: 'Cinzel', serif;
    font-size: 46px;
    font-weight: 500;
    color: #600000;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
}

.brand-main-title .tm {
    font-size: 14px;
    font-weight: 400;
    vertical-align: super;
    margin-left: 5px;
}

.brand-sub-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}

.brand-sub-title-wrapper .sub-line {
    height: 1px;
    width: 50px;
    background-color: #999;
}

.brand-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin: 0;
    letter-spacing: 3px;
}

.tagline-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #666;
}

.tag-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 10px;
}

.tagline-sep {
    color: #ccc;
    font-size: 12px;
}

.main-logo-right {
    height: 80px;
    width: auto;
    object-fit: contain;
    transform: scale(1.9);
    transform-origin: right center;
    position: relative; /* ensures it sits above the shape if needed */
    z-index: 2;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

/* =============================================
   LOGO / BRAND SECTION
   ============================================= */
.site-brand-section {
    position: relative;
    background: linear-gradient(135deg, #1a0000 0%, #4a0e0e 30%, #6b1515 50%, #4a0e0e 70%, #1a0000 100%);
    padding: 0;
    overflow: hidden;
}
.brand-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 30, 30, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(100, 15, 15, 0.2) 0%, transparent 60%);
    pointer-events: none;
}
.brand-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}
.brand-logo-img img {
    max-width: 1279px;
    width: 100%;
    height: auto;
    aspect-ratio: 1279 / 210;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}
.brand-text-group {
    text-align: left;
}
.brand-title {
    font-family: 'Montserrat', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(180deg, #f5e6c8 0%, #c5a880 40%, #a88a5c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: none;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.brand-the {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 5px;
}
.brand-ultimate {
    font-weight: 800;
    letter-spacing: 4px;
}
.brand-tm {
    font-size: 12px;
    -webkit-text-fill-color: #c5a880;
    vertical-align: super;
    margin-left: 2px;
}
.brand-subtitle-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 6px 0 10px 0;
}
.brand-dash {
    flex: 0 0 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c5a880, transparent);
}
.brand-subtitle-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #d4c4a8;
    text-transform: uppercase;
    white-space: nowrap;
}
.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #a89880;
    margin: 0;
    font-style: italic;
    text-transform: uppercase;
}

/* =============================================
   MAIN NAVIGATION BAR
   ============================================= */
/* =============================================
   MAIN NAVIGATION
   ============================================= */
.site-main-nav {
    background: linear-gradient(135deg, #e3bc7c 0%, #f5f5f5 50%, #c59b58 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 2px solid #e9dcc5;
}

/* Desktop layout: offcanvas-body as full-width flex row */
@media (min-width: 992px) {
    .site-main-nav .container-fluid { padding: 0 20px; }
    .site-main-nav .offcanvas-lg {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        position: static !important;
        transform: none !important;
        visibility: visible !important;
        background: transparent !important;
        border: none !important;
    }
    .site-main-nav .offcanvas-body {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        padding: 0 !important;
        overflow: visible !important;
        flex: 1;
    }
    /* Dropdown hover fix */
    .site-main-nav .dropdown:hover > .dropdown-menu {
        display: block !important;
        margin-top: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    .site-main-nav .dropdown-menu {
        margin-top: 0 !important;
        border-top: 3px solid #97161E;
        border-radius: 0 0 6px 6px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        min-width: 200px;
        padding: 8px 0;
    }
    .site-main-nav .dropdown-item {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.5px;
        padding: 10px 20px;
        color: #333;
        transition: all 0.2s;
    }
    .site-main-nav .dropdown-item:hover {
        background-color: #97161E;
        color: #fff;
        padding-left: 26px;
    }
}

/* Nav list */
.main-nav-list {
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    flex-wrap: nowrap;
}
.main-nav-list .nav-item {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
}

/* Nav links */
.main-nav-list .nav-item .nav-link {
    color: #2a2a2a;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 13px !important;
    height: 52px;
    line-height: 52px;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
}
.main-nav-list .nav-separator {
    color: #cccccc;
    display: flex;
    align-items: center;
    font-size: 13px;
    padding: 0 2px;
    user-select: none;
}
.main-nav-list .nav-item .nav-link:hover,
.main-nav-list .nav-item .nav-link.active {
    background-color: #97161E;
    color: #ffffff !important;
}

/* Larger screens — more padding */
@media (min-width: 1280px) {
    .main-nav-list .nav-item .nav-link { font-size: 13.5px !important; padding: 0 15px !important; }
}
@media (min-width: 1400px) {
    .main-nav-list .nav-item .nav-link { font-size: 14px !important; padding: 0 18px !important; }
}

/* Blink badge */
@keyframes badge-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(226, 0, 26, 0.7); transform: scale(1); }
    50%  { box-shadow: 0 0 0 5px rgba(226, 0, 26, 0); transform: scale(1.08); }
    100% { box-shadow: 0 0 0 0 rgba(226, 0, 26, 0); transform: scale(1); }
}
.blink-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2001a;
    color: #ffffff !important;
    font-size: 8.5px;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 6px;
    line-height: 1.4;
    vertical-align: middle;
    animation: badge-pulse 1.4s ease-in-out infinite;
    position: relative;
    top: -1px;
    border: 1px solid rgba(255,255,255,0.3);
    text-shadow: none;
    flex-shrink: 0;
}
/* Keep badge visible even when nav-link turns red on hover/active */
.nav-link:hover .blink-badge,
.nav-link.active .blink-badge {
    background: #ffffff;
    color: #e2001a !important;
    animation: badge-pulse-white 1.4s ease-in-out infinite;
}
@keyframes badge-pulse-white {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); transform: scale(1); }
    50%  { box-shadow: 0 0 0 5px rgba(255,255,255,0); transform: scale(1.08); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); transform: scale(1); }
}

/* =============================================
   INQUIRY BUTTON
   ============================================= */
.btn-inquiry {
    background: linear-gradient(135deg, #7a0e14 0%, #b01e28 50%, #d4341e 100%);
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    box-shadow: 0 4px 14px rgba(152, 22, 30, 0.45);
    position: relative;
    overflow: hidden;
    margin: 0 0 0 16px;
    flex-shrink: 0;
}
.btn-inquiry::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    animation: inquiryShimmer 2.8s infinite;
}
@keyframes inquiryShimmer {
    0%   { left: -80%; }
    55%  { left: 130%; }
    100% { left: 130%; }
}
.btn-inquiry:hover {
    background: linear-gradient(135deg, #c5a028 0%, #d4341e 40%, #97161E 100%);
    color: #ffffff !important;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(152, 22, 30, 0.55);
}
@media (min-width: 1400px) {
    .btn-inquiry { font-size: 14px; padding: 11px 24px; }
}



/* Custom Toggler for Dark Nav */
.custom-toggler-dark {
    border: none !important;
    border-radius: 6px;
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 40px;
    width: 40px;
    outline: none;
    box-shadow: none !important;
    cursor: pointer;
}
.toggler-line-light {
    display: block;
    width: 32px;
    height: 3px;
    background-color: #5a0f12;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}
.custom-toggler-dark:not(.collapsed) .toggler-line-light:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.custom-toggler-dark:not(.collapsed) .toggler-line-light:nth-child(2) { opacity: 0; }
.custom-toggler-dark:not(.collapsed) .toggler-line-light:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   STICKY NAV
   ============================================= */
.site-main-nav.sticky-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

/* =============================================
   RESPONSIVE - HEADER
   ============================================= */
@media (max-width: 1199.98px) {
    .brand-main-title { font-size: 28px; }
    .shiv-logo-container { width: 80px; height: 80px; }
    .main-logo-right { height: 65px; }
}


@media (max-width: 991.98px) {
    .topbar-left { flex-wrap: nowrap !important; column-gap: 15px; }
    .topbar-left .topbar-divider { display: block !important; margin: 0 6px; }
    
    /* Responsive Header Layout: Perfect Centering */
    .site-brand-bar .container-fluid {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .brand-left { order: 1; flex: 0 0 75px; width: 75px; margin-bottom: 0 !important; }
    .brand-center { order: 2; flex: 1 1 auto; margin-top: 0; padding: 0 5px; min-width: 0; }
    .brand-right { order: 3; flex: 0 0 75px; width: 75px; display: flex; justify-content: flex-end; align-items: center; margin-bottom: 0 !important; }
    
    .brand-taglines { display: none !important; }
    .sub-line { display: none !important; } /* Hide the lines next to subtitle on mobile */
    .shiv-logo-container { width: 75px; height: 75px; margin: 0 auto; }
    .main-logo-right { display: none !important; } /* Hidden entirely on mobile */
    
    .site-brand-bar {
        background: linear-gradient(90deg, #e4e4e4 0%, #ecd394 100%) !important;
        border: none !important;
    }
    .site-brand-bar::before {
        display: none; /* Hide the slanted shape on small screens */
    }
    .brand-logo-img img { height: 80px; }
    .brand-main-title { font-size: 17px; white-space: nowrap; line-height: 1.1; margin-bottom: 2px !important; }
    .brand-sub-title { font-size: 7.5px; white-space: nowrap; letter-spacing: 0.5px; margin: 0; color: #5a0f12; line-height: 1; }
    .brand-title { font-size: 24px; }
    .brand-the { font-size: 22px; }
    .brand-subtitle-text { font-size: 11px; letter-spacing: 3px; }
    .brand-tagline { font-size: 9px; letter-spacing: 2px; }
    .brand-subtitle-line { justify-content: center; }
    
    .site-main-nav {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    .site-main-nav .offcanvas-lg {
        background-color: #fdf7e3;
        width: 90% !important;
        border-left: none;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .main-nav-list {
        padding: 15px 20px;
    }
    .main-nav-list .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(90, 15, 18, 0.1);
        margin-bottom: 5px;
        padding-bottom: 5px;
        display: block; /* Override flex so dropdown falls below */
    }
    .main-nav-list .nav-item:last-child {
        border-bottom: none;
    }
    .main-nav-list .nav-item.home-nav-item {
        background: none !important;
        background-color: transparent !important;
    }
    .main-nav-list .nav-item.home-nav-item .nav-link:not(.active) {
        color: #5a0f12 !important;
    }
    .main-nav-list .nav-item.home-nav-item .nav-link:not(.active) .nav-icon {
        color: #5a0f12 !important;
    }
    .main-nav-list .nav-item .nav-link {
        padding: 12px 15px !important;
        color: #5a0f12 !important;
        display: flex;
        align-items: center;
        font-weight: 500;
        font-size: 14px;
        border-bottom: none;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    .main-nav-list .nav-item .nav-link.active,
    .main-nav-list .nav-item .nav-link:hover {
        background: linear-gradient(135deg, #7a1015 0%, #4a0a0f 100%);
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(90, 15, 18, 0.2);
    }
    .nav-icon {
        width: 30px;
        font-size: 16px;
        color: #5a0f12;
        text-align: center;
        margin-right: 15px;
        transition: color 0.3s ease;
    }
    .main-nav-list .nav-item .nav-link.active .nav-icon,
    .main-nav-list .nav-item .nav-link:hover .nav-icon {
        color: #ffffff;
    }
    .nav-text {
        flex-grow: 1;
    }
    .btn-inquiry-mobile {
        background: linear-gradient(90deg, #e0b263 0%, #b27c32 50%, #7d490c 100%);
        color: #fff !important;
        width: calc(100% - 40px) !important;
        margin: 20px auto;
        padding: 14px;
        border-radius: 6px;
        text-align: center;
        border: none;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .btn-inquiry-mobile:hover, .btn-inquiry-mobile:focus {
        background: linear-gradient(90deg, #7d490c 0%, #b27c32 50%, #e0b263 100%);
        color: #fff !important;
        box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    }
    .dropdown-menu {
        background-color: #f6eed5;
        border: none;
        padding: 0;
        position: static !important;
        float: none;
        width: 100%;
        box-shadow: none !important;
        margin-top: 0;
        transform: none !important; /* Prevent popper.js translate */
    }
    .dropdown-item {
        padding: 12px 15px 12px 45px;
        color: #5a0f12;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .main-nav-list .nav-separator {
        display: none;
    }
    .btn-inquiry {
        margin: 15px 20px;
    }
}
@media (max-width: 575.98px) {
    .topbar-left { flex-wrap: nowrap !important; column-gap: 8px; }
    .topbar-left span { font-size: 9px; white-space: nowrap; }
    .topbar-left .contact-item { gap: 4px; }
    .topbar-left .icon-circle { width: 20px; height: 20px; font-size: 9px; }
    .topbar-divider { display: block !important; margin: 0 4px !important; }
    .topbar-right-social a { width: 24px; height: 24px; font-size: 11px; }
    .brand-logo-img img { height: 65px; }
    .brand-title { font-size: 20px; letter-spacing: 2px; }
    .brand-the { font-size: 18px; }
    .brand-subtitle-text { font-size: 9px; letter-spacing: 2px; }
    .brand-main-title { font-size: 20px; margin-bottom: 0; }
    .brand-sub-title { font-size: 8px; margin: 0 5px; }
    .sub-line { width: 25px; }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-slider {
    width: 100%;
    height: 65vh;
    min-height: 450px;
    position: relative;
}
.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 29, 55, 0.9) 0%, rgba(10, 29, 55, 0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 1200px;
    padding-top: 0;
}
.hero-content h1 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-content h1.display-3 {
    font-size: 2.2rem !important;
}
.hero-content h4 {
    font-size: 1rem !important;
    letter-spacing: 1.5px !important;
}
.hero-content p.lead {
    font-size: 0.9rem !important;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 40px;
    color: var(--gold-accent);
    margin-bottom: 20px;
}
.new-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gold-accent);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(45deg);
    text-transform: uppercase;
}

/* Project Cards */
.project-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.project-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
}
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .project-img {
    transform: scale(1.1);
}
.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}
.badge-upcoming { background: var(--gold-accent); }
.badge-under-construction { background: #fd7e14; }
.badge-ready-to-move { background: #198754; }

/* Sections */
.section-padding {
    padding: 80px 0;
}
.section-title {
    color: var(--primary-theme);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-accent);
}
.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
.footer-links a {
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold-accent) !important;
    padding-left: 5px;
}

/* Swiper Customizations */
.swiper-button-next, .swiper-button-prev {
    background-color: rgba(197, 168, 128, 0.8);
    width: 50px !important;
    height: 50px !important;
    border-radius: 0;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
    color: var(--white) !important;
    font-weight: bold;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(197, 168, 128, 0.5) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background-color: var(--white) !important;
    transform: scale(1.2);
}

/* About Us Image */
.about-img {
    height: 450px;
    object-fit: cover;
}
@media (max-width: 991.98px) {
    .about-img {
        height: 300px;
    }
}

/* Mobile Responsive Fixes */
.about-heading {
    font-size: 2rem;
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    .about-heading {
        font-size: 1.4rem !important;
    }
    .hero-content h1.display-3 {
        font-size: 1.8rem !important;
    }
    .hero-content h4 {
        font-size: 0.9rem !important;
    }
    .hero-content p.lead {
        font-size: 0.85rem !important;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

/* Breadcrumb Background */
.breadcrumb-bg {
    background: linear-gradient(rgba(10, 29, 55, 0.75), rgba(10, 29, 55, 0.75)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat !important;
}

/* Custom Navbar Toggler */
.custom-toggler {
    border: 1px solid #cccccc !important;
    border-radius: 10px;
    padding: 0;
    background-color: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 42px;
    width: 54px;
    outline: none;
    box-shadow: none !important;
    cursor: pointer;
}

.custom-toggler .toggler-line {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #4a4a4a;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.custom-toggler:not(.collapsed) .toggler-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.custom-toggler:not(.collapsed) .toggler-line:nth-child(2) {
    opacity: 0;
}
.custom-toggler:not(.collapsed) .toggler-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================================== */
/* NEW FOOTER DESIGN (2026 UPDATE) */
/* ================================== */

.footer-new-design {
    background-color: #1a0606;
    background-image: url('../images/footer_bg.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    border-top: 4px solid #C5A880;
    padding-top: 0;
}

.footer-overlay {
    background-color: rgba(20, 5, 5, 0.85);
    width: 100%;
    height: 100%;
}

.footer-cta-box {
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
    background: rgba(30, 8, 8, 0.6);
    backdrop-filter: blur(5px);
}

.footer-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #C5A880;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #C5A880;
}

.rera-box {
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 8px;
    padding: 12px 15px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.rera-logo {
    border: 1px solid #C5A880;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A880;
    font-size: 16px;
}

.footer-divider {
    border-right: 1px solid rgba(197, 168, 128, 0.15);
}
@media (max-width: 991px) {
    .footer-divider {
        border-right: none;
        border-bottom: 1px solid rgba(197, 168, 128, 0.15);
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

.footer-links-new li {
    margin-bottom: 12px;
}

.footer-links-new a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.footer-links-new a:hover {
    color: #C5A880;
    transform: translateX(5px);
}

.footer-links-new a i {
    color: #C5A880;
    font-size: 10px;
    margin-right: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #C5A880;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A880;
    font-size: 12px;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer-contact-text {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom-section {
    border-top: 1px solid rgba(197, 168, 128, 0.3);
    border-bottom: 1px solid rgba(197, 168, 128, 0.3);
    padding: 30px 0;
    margin-top: 40px;
}

.newsletter-input-group {
    background: #150505;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
}

.newsletter-input-group input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
}

.newsletter-input-group input:focus {
    outline: none;
}

.newsletter-input-group button {
    background: #C5A880;
    border: none;
    color: #111;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-input-group button:hover {
    background: #B89765;
}

.footer-legal-bar {
    padding: 15px 0;
    background: #110404;
}

.footer-legal-bar p, .footer-legal-bar a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
    margin-bottom: 0;
}

.footer-legal-bar a:hover {
    color: #C5A880;
}

/* ==========================================
   PREMIUM SERVICE CARDS (Dark Luxury Theme)
   ========================================== */
.premium-service-card {
    background: linear-gradient(145deg, #1A0808 0%, #0a0303 100%);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(197, 168, 128, 0.05) 0%, rgba(0,0,0,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 168, 128, 0.5);
    box-shadow: 0 15px 40px rgba(96, 0, 0, 0.4), 0 0 20px rgba(197, 168, 128, 0.1);
}

.premium-service-card:hover::before {
    opacity: 1;
}

.premium-service-icon {
    width: 80px;
    height: 80px;
    background: rgba(96, 0, 0, 0.3);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 32px;
    color: #C5A880;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.premium-service-card:hover .premium-service-icon {
    background: #600000;
    color: #ffffff;
    border-color: #C5A880;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.4);
}

.premium-service-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.premium-service-card:hover .premium-service-title {
    color: #C5A880;
}

.premium-service-desc {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.premium-service-btn {
    display: inline-flex;
    align-items: center;
    color: #C5A880;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.premium-service-btn i {
    margin-left: 8px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.premium-service-card:hover .premium-service-btn {
    color: #ffffff;
}

.premium-service-card:hover .premium-service-btn i {
    transform: translateX(5px);
}

.premium-service-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #C5A880;
    color: #111;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 2;
}

/* ================================== */
/* OUR CORE SERVICES UPDATE           */
/* ================================== */

.core-service-card {
    padding: 50px 30px;
    border-radius: 15px 50px 15px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(197, 168, 128, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.core-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(96, 0, 0, 0.08) !important;
    border-radius: 50px 15px 50px 15px;
}

.core-service-icon {
    font-size: 50px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.core-service-card:hover .core-service-icon {
    transform: scale(1.1);
}

.core-new-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #e63946; /* Red ribbon */
    color: white;
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.core-bg-gold {
    background-color: #C5A880 !important;
}

.core-text-dark-red {
    color: #600000 !important;
}

/* ================================== */
/* OUR PROCESS SECTION                */
/* ================================== */
.process-row {
    position: relative;
    z-index: 1;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(197, 168, 128, 0.3);
    z-index: -1;
}

.process-card {
    padding: 20px 15px;
    transition: transform 0.3s ease;
}

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

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #600000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
    box-shadow: 0 10px 20px rgba(96, 0, 0, 0.2);
    border: 4px solid #fdfbf7;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon-wrapper {
    background: #C5A880;
    box-shadow: 0 10px 25px rgba(197, 168, 128, 0.4);
    transform: scale(1.05);
}

.process-step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #C5A880;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

.process-card:hover .process-step-num {
    background: #600000;
}

/* ================================== */
/* PREMIUM ULTRA-LUXURY REDESIGN      */
/* ================================== */

.premium-process-card {
    transition: all 0.4s ease;
    background: transparent;
    cursor: default;
}
.premium-process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.premium-process-card:hover {
    transform: translateY(-5px);
    border-color: transparent !important;
    z-index: 2;
}
.premium-process-card:hover::before {
    opacity: 1;
}

.premium-stat-box {
    transition: all 0.4s ease;
}
.premium-stat-box:hover {
    border-color: #C5A880 !important;
    transform: translateX(8px);
}
.text-gold {
    color: #C5A880 !important;
}

@media (max-width: 991.98px) {
    .premium-process-card {
        border-bottom: 1px solid rgba(0,0,0,0.08) !important;
        border-right: none !important;
        border-left: none !important;
    }
}

/* ================================== */
/* HORIZONTAL STATS SECTION           */
/* ================================== */

.stat-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (min-width: 992px) {
    .stat-divider {
        position: relative;
    }
    .stat-divider::after {
        content: '';
        position: absolute;
        top: 10%;
        right: 0;
        height: 80%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.4);
    }
}

/* ================================== */
/* NEW IMAGE SERVICES LAYOUT          */
/* ================================== */

.new-service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}
.new-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.new-service-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #600000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #ffffff;
    z-index: 2;
    transition: all 0.3s ease;
}
.new-service-card:hover .new-service-icon-wrapper {
    background-color: #C5A880;
    color: #ffffff;
}
.new-service-list li {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.new-service-list li i {
    color: #600000;
    margin-top: 4px;
    margin-right: 10px;
}

/* ================================== */
/* MINIMAL 5-COL SERVICES LAYOUT      */
/* ================================== */

.service-card-minimal {
    border: 1px solid #f0f0f0;
    border-radius: 15px 50px 15px 15px;
    padding: 30px 15px;
    text-align: center;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card-minimal:hover {
    box-shadow: 0 10px 30px rgba(96, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #C5A880;
    border-radius: 50px 15px 50px 15px;
}
.service-icon-minimal {
    font-size: 60px;
    color: #C5A880;
    margin-bottom: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
}
.service-card-minimal:hover .service-icon-minimal {
    transform: scale(1.1);
}
.service-title-minimal {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}
.service-desc-minimal {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}
.btn-book-minimal {
    background-color: #600000;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-book-minimal:hover {
    background-color: #C5A880;
    color: #fff !important;
}

/* ================================== */
/* NEW 5-COL DESIGN (BROKEN BORDER)   */
/* ================================== */

.service-card-new-design {
    position: relative;
    padding: 25px 5px 40px 5px; 
    background: #fff;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .service-card-new-design {
        padding: 40px 15px 60px 15px;
    }
}

.service-card-new-design:hover {
    transform: translateY(-5px);
}

/* ================================== */
/* RESPONSIVE UTILITIES               */
/* ================================== */

/* Experience Box (Why Choose Us) */
.experience-box {
    bottom: -20px;
    right: 20px;
    padding: 20px 25px;
}
@media (min-width: 768px) {
    .experience-box {
        bottom: 0;
        right: -30px;
        padding: 30px 40px;
    }
}

/* Premium Process Grid Responsive Borders */
.process-grid-wrapper {
    border: none !important;
}
.premium-process-card {
    border-right: none !important;
    border-left: none !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}
@media (min-width: 768px) {
    .premium-process-card {
        border-left: 1px solid rgba(0,0,0,0.08) !important;
    }
    .premium-process-card:nth-child(4) {
        border-right: none !important;
    }
}
@media (min-width: 992px) {
    .process-grid-wrapper {
        border-top: 1px solid rgba(0,0,0,0.08) !important;
        border-right: 1px solid rgba(0,0,0,0.08) !important;
    }
    .premium-process-card {
        border-left: 1px solid rgba(0,0,0,0.08) !important;
        border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    }
    .premium-process-card:nth-child(2n+1) {
        border-left: 1px solid rgba(0,0,0,0.08) !important;
    }
}


.service-card-new-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-top: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-card-new-design::after {
    content: '';
    position: absolute;
    bottom: 20px; 
    right: 0;
    width: 85%;
    height: 85%;
    border-bottom: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-card-new-design:hover::before,
.service-card-new-design:hover::after {
    border-color: #C5A880;
}

.service-icon-new-design {
    font-size: 50px;
    color: #C5A880;
    margin-bottom: 15px;
    font-weight: 300;
}

.service-title-new-design {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.service-divider-new {
    width: 30px;
    height: 2px;
    background-color: #C5A880;
    margin: 0 auto 15px auto;
}

.service-desc-new-design {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1;
}

.btn-book-new-design {
    position: absolute;
    bottom: 0px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #C5A880;
    color: #fff !important;
    border: none;
    border-radius: 0; 
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-book-new-design:hover {
    background-color: #600000; 
    color: #fff !important;
}

/* ================================== */
/* PREMIUM ANIMATIONS                 */
/* ================================== */

/* Hero Background Animation (Ken Burns) */
@keyframes kenBurnsBg {
    0% { background-size: 115%; }
    100% { background-size: 100%; }
}
.hero-slide {
    background-position: center;
    background-repeat: no-repeat;
    animation: kenBurnsBg 15s ease-out forwards;
}

/* Project Image Hover Zoom */
.project-card .project-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.project-card:hover .project-img {
    transform: scale(1.1);
}

/* Premium Process Card Hover */
.premium-process-card {
    transition: all 0.3s ease;
}
.premium-process-card:hover {
    background-color: #fdfaf6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* Call to Action Button Pulse */
@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(197, 168, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}
.btn-book-new-design:hover {
    animation: pulseGold 1.5s infinite;
}
