* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-blue: #1d66a8;
    --primary-gold: #b59154;
    --dark-blue: #0f4a7a;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --maroon: #8B4513;
}
a {
    text-decoration: none;
}
/* ===== BUTTON STYLES ===== */
:root {
    --primary-blue: #1d66a8;
    --primary-gold: #b59154;
    --dark-blue: #0f4a7a;
    --light-gray: #f8f9fa;
    --dark-gray: #2c3e50;
    --maroon: #8B4513;
    --gold-hover: #a07843;
}

/* ===== SOLID BUTTONS ===== */

/* Primary Blue Button */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(29,102,168,0.3);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(29,102,168,0.4);
    color: white;
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Gold Button - Standard */
.btn-gold {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(181,145,84,0.3);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(181,145,84,0.4);
    color: white;
}

.btn-gold i {
    transition: transform 0.3s;
}

.btn-gold:hover i {
    transform: none; /*translateX(5px); */
}

/* Gold Button - Rounded (Special) */
.btn-gold-rounded {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(181,145,84,0.3);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-gold-rounded:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(181,145,84,0.4);
    color: white;
}

.btn-gold-rounded i {
    transition: transform 0.3s;
}

.btn-gold-rounded:hover i {
    transform: translateX(5px);
}

/* Secondary Button - Maroon */
.btn-secondary {
    background: var(--maroon);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(139,69,19,0.3);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #6a3510;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139,69,19,0.4);
    color: white;
}

.btn-secondary i {
    transition: transform 0.3s;
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

/* Light Button - White */
.btn-light {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    color: var(--dark-blue);
}

.btn-light i {
    transition: transform 0.3s;
}

.btn-light:hover i {
    transform: translateX(5px);
}

/* ===== OUTLINE BUTTONS ===== */

/* Outline Gold Button */
.btn-outline-gold {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--primary-gold);
    padding: 10px 26px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(181,145,84,0.3);
}

.btn-outline-gold i {
    transition: transform 0.3s;
}

.btn-outline-gold:hover i {
    transform: none; /* translateX(5px); */
}

/* Outline Blue Button */
.btn-outline-blue {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--primary-blue);
    padding: 10px 26px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline-blue:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(29,102,168,0.3);
}

.btn-outline-blue i {
    transition: transform 0.3s;
}

.btn-outline-blue:hover i {
    transform: translateX(5px);
}

/* Outline Light Button */
.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 26px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline-light:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(181,145,84,0.3);
}

.btn-outline-light i {
    transition: transform 0.3s;
}

.btn-outline-light:hover i {
    transform: translateX(5px);
}

/* ===== SPECIAL PURPOSE BUTTONS ===== */

/* Book Appointment Button (For Top Bar) */
.btn-appointment {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-appointment:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181,145,84,0.3);
    color: white;
}

.btn-appointment i {
    transition: transform 0.3s;
    font-size: 12px;
}

.btn-appointment:hover i {
    transform: none; /* translateX(3px); */
}
/* Go To Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 20px;
}

.go-to-top.show {
    opacity: 1;
    visibility: visible;
}

.go-to-top:hover {
    background: #ffffff;
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.go-to-top:hover i {
    color: var(--primary-blue);
}

/* ===== BUTTON SIZES ===== */

/* Large Button */
.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

/* Small Button */
.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* Extra Small Button */
.btn-xs {
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 3px;
}

/* ===== BUTTON VARIANTS ===== */

/* Full Width Button */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Button with Icon Only */
.btn-icon {
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    margin: 0;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== BUTTON STATES ===== */

/* Disabled Button */
.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading State */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BUTTON ANIMATIONS ===== */

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-ripple:focus:not(:active)::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Pulse Animation */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 145, 84, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(181, 145, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(181, 145, 84, 0);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    .btn-primary,
    .btn-gold,
    .btn-gold-rounded,
    .btn-secondary,
    .btn-light,
    .btn-outline-gold,
    .btn-outline-blue,
    .btn-outline-light {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .btn-primary,
    .btn-gold,
    .btn-gold-rounded,
    .btn-secondary,
    .btn-light,
    .btn-outline-gold,
    .btn-outline-blue,
    .btn-outline-light {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .btn-appointment {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .go-to-top {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .btn {
        display: none !important;
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .go-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .go-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Print styles - hide button when printing */
@media print {
    .go-to-top {
        display: none !important;
    }
}
/* ===== TOP BAR SECTION ===== */
/* Desktop Top Bar */
.top-bar {
    background: var(--dark-blue);
    color: white;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.top-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Contact Numbers in Top Bar */
.top-bar-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-contacts a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.top-bar-contacts a:hover {
    color: var(--primary-gold);
}

.top-bar-contacts i {
    color: var(--primary-gold);
    font-size: 16px;
}
@media (max-width: 768px) {
    .top-bar-contacts {
        display: block;
        justify-content: center;
        text-align: center;
    }

    .top-bar-contacts > * {
        text-align: center;
		padding: 3px 0;
    }
}
/* News Marquee  */
.news-marquee-container {
    flex: 1;
    margin: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.news-marquee {
    display: inline-block;
    animation: scrollNews 20s linear infinite;
    white-space: nowrap;
}

.news-marquee i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.news-marquee span {
    margin-right: 30px;
}

@keyframes scrollNews {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Top Bar Mobile View */
@media (max-width: 991px) {
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-marquee-container {
        width: 100%;
        margin: 10px 0;
    }
}

/* ===== HEADER / LOGO SECTION CSS ===== */
.header-section {
    background: white;
    padding: 25px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    margin-right: 15px;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.2;
}

.logo h1 span {
    color: var(--primary-gold);
    font-weight: 800;
}

.logo .tagline {
    font-size: 13px;
    color: #666;
    letter-spacing: 1.3px;
    font-weight: 500;
    text-transform: uppercase;
    border-left: 3px solid var(--primary-gold);
    padding-left: 10px;
    margin-top: 5px;
}

.logo .estd {
    font-size: 10px;
    color: #999;
    margin-top: 3px;
}

/* Email and Button Styling */
.email-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--primary-gold);
}

.email-link i {
    color: var(--primary-gold);
    margin-right: 8px;
}

/* ===== MOBILE RESPONSIVE CSS ===== */
@media (max-width: 991px) {
    .header-section {
        padding: 20px 0;
    }
    
    .logo {
        margin-bottom: 15px;
        justify-content: center;
    }
    
    .logo img {
        height: 60px !important;
    }
    
    .logo h1 {
        font-size: 26px !important;
    }
    
    .logo .tagline {
        font-size: 12px !important;
    }
    .email-link {
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        margin-right: 0 !important;
        margin-bottom: 12px;
    }
    
    .logo .text-start {
        text-align: center !important;
    }
    
    .logo .tagline {
        border-left: none !important;
        border-top: 2px solid var(--primary-gold);
        padding-left: 0 !important;
        padding-top: 8px;
        margin-top: 8px;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .header-section {
        padding: 15px 0;
    }
    
    .logo h1 {
        font-size: 26px !important;
    }
    
    .logo .tagline {
        font-size: 11px !important;
    }
    
    .logo .estd {
        font-size: 11px !important;
    }
    
    .btn-gold {
        width: 100%;
        justify-content: center;
        padding: 12px !important;
        font-size: 14px !important;
    }
    
    .email-link {
        display: inline-block;
        font-size: 14px !important;
        margin-bottom: 10px;
    }
    
    .d-flex.flex-column.flex-sm-row {
        width: 100%;
    }
    
    .text-center.text-sm-start {
        text-align: center !important;
    }
}
/* ===== NAVIGATION MENU SECTION ===== */
/* Desktop Navigation */
.nav-menu {
    background: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.navbar {
    padding: 0;
    min-height: 60px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-item {
    margin: 0 15px;
    position: relative;
}

.navbar-nav .nav-item:first-child {
    margin-left: 0;
}

.navbar-nav .nav-item:last-child {
    margin-right: 0;
}

.navbar-nav .nav-link {
    color: white !important;
    padding: 18px 0 !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown Arrow Styling */
.navbar-nav .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0px !important;
    vertical-align: middle !important;
    content: "" !important;
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
    font-family: inherit !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-toggle::before {
    display: none !important;
}

.navbar-nav .dropdown-toggle:hover::after {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

.show.dropdown .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Underline Animation */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
    z-index: 1;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

/* FIRST LEVEL DROPDOWN - Opens below main menu */
.dropdown-menu {
    background: var(--dark-blue);
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-top: 3px solid var(--primary-gold);
    min-width: 220px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: white;
    padding: 10px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}

.dropdown-item:last-child {
/*   border-bottom: none;  */
}

.dropdown-item:hover {
    background: var(--primary-gold);
    color: white;
/*    padding-left: 25px; */
}

/* SECOND LEVEL DROPDOWN - Opens below first level item (NOT to the right) */
.dropdown-submenu {
    position: relative;
}

/* Override any right positioning for second level */
.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;  /* This makes it appear to the right - we need to change this */
    margin-top: 0;
    margin-left: 0;
    background: var(--dark-blue);
    border-top: 3px solid var(--primary-gold);
    min-width: 220px;
    display: none;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

/* FIX: Make second level appear below first level */
.dropdown-submenu > .dropdown-menu {
    top: 100%;  /* Position below the parent item */
    left: 0;    /* Align to the left */
    margin-top: 5px;  /* Small gap from parent */
    position: absolute;
    background: var(--dark-blue);
    border-top: 3px solid var(--primary-gold);
    min-width: 300px;
    display: none;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

/* THIRD LEVEL DROPDOWN - Opens to the right of second level */
.dropdown-submenu .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;  /* This makes third level appear to the right */
    margin-top: 5px;
    margin-left: 0;
    position: absolute;
    background: var(--dark-blue);
    border-top: 3px solid var(--primary-gold);
    min-width: 220px;
    display: none;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu .dropdown-toggle {
    padding-right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Arrow for items that have submenus - Different arrows for second and third level */
.dropdown-submenu > .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0px;
    content: "";
    border-top: 0.3em solid !important;
    border-right: 0.3em solid transparent !important;
    border-bottom: 0 !important;
    border-left: 0.3em solid transparent !important;
    float: right;
    margin-top: 0px;
}

/* Third level arrow points right */
.dropdown-submenu .dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(-90deg) !important;
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}

.dropdown-submenu:hover > .dropdown-toggle::after {
    border-top-color: white;
}

.dropdown-submenu .dropdown-submenu:hover > .dropdown-toggle::after {
    border-left-color: white;
}

/* Ensure proper z-index for all dropdowns */
.dropdown-menu,
.dropdown-submenu .dropdown-menu {
    z-index: 1000;
}

/* Desktop positioning */
@media (min-width: 992px) {
    /* Second level positioned below first level */
    .dropdown-submenu > .dropdown-menu {
        top: 100%;
        left: 0;
        margin-top: 5px;
    }
    
    /* Third level positioned to the right of second level */
    .dropdown-submenu .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -10px;
    }
}

/* Navigation Mobile View */
@media (max-width: 991px) {
    .navbar {
        min-height: auto;
    }
    
    .navbar-toggler {
        padding: 12px 18px !important;
        margin: 8px 0 !important;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 5px;
        background: rgba(255,255,255,0.1);
        transition: all 0.3s;
    }
    
    .navbar-toggler:hover {
        background: rgba(255,255,255,0.2);
        border-color: var(--primary-gold);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .navbar-toggler-icon {
        width: 24px;
        height: 24px;
    }
    
    .navbar-collapse {
        background: var(--primary-blue);
        padding: 15px 0;
        border-top: 2px solid var(--primary-gold);
        margin-top: 5px;
    }
    
    .navbar-nav {
        width: 100%;
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-item {
        margin: 0 !important;
        width: 100%;
        position: relative;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        justify-content: space-between;
    }
    
    .navbar-nav .nav-link::after {
        bottom: 8px;
    }
    
    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    /* Mobile Dropdowns */
    .dropdown-menu {
        position: static !important;
        background: rgba(0,0,0,0.2);
        padding: 0;
        margin: 0 0 10px 0;
        border: none;
        box-shadow: none;
        width: 100%;
        float: none;
        display: none;
    }
    
    .dropdown.show > .dropdown-menu,
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 13px;
        white-space: normal;
    }
    
    .dropdown-item:first-child {
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .dropdown-item:hover {
        background: var(--primary-gold);
        padding-left: 30px;
    }
    
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 5px;
    }
    
    /* Mobile Second Level */
    .dropdown-submenu {
        position: relative;
        width: 100%;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static !important;
        left: auto;
        margin-left: 0 !important;
        margin-top: 0;
        display: none;
        background: rgba(0,0,0,0.3);
        border-top: none;
        border-left: 2px solid var(--primary-gold);
        width: calc(100% - 20px);
        box-shadow: none;
		width: 100%;
    }
    
    .dropdown-submenu.show > .dropdown-menu {
        display: block;
    }
    
    .dropdown-submenu .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-submenu .dropdown-toggle::after {
        float: right;
        margin-right: 0;
        margin-top: 5px;
        transform: rotate(0deg) !important;
    }
    
    .dropdown-submenu .dropdown-item {
        padding-left: 20px;
        font-size: 12px;
    }
    
    /* Mobile Third Level */
    .dropdown-submenu .dropdown-submenu .dropdown-menu {
        margin-left: 15px !important;
        width: calc(100% - 30px);
    }
}

/* Small Mobile Navigation */
@media (max-width: 576px) {
    .navbar-toggler {
        padding: 10px 15px !important;
        margin: 5px 0 !important;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .navbar-nav {
        padding: 0 15px;
    }
    
    .navbar-nav .nav-link {
        font-size: 13px;
        padding: 12px 0 !important;
    }
}
@media (min-width: 992px) {
    .dropdown-submenu > .dropdown-menu {
        top: 100%;
        left: 0;
        margin-top: 0px;
    }
}
/* ===== GOLD BORDER TOGGLER ===== */
.gold-toggler {
    border: 2px solid var(--primary-gold) !important;
    background: transparent !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.gold-toggler i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.gold-toggler:hover {
    background: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
}

.gold-toggler:hover i {
    color: white;
}

.gold-toggler:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(181, 145, 84, 0.3) !important;
}
/* ===== CAROUSEL SECTION ===== */
.hero-carousel {
    position: relative;
}

.carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left;
    left: 10%;
    right: 10%;
}

.carousel-caption h5 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

.carousel-caption p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s;
}

.carousel-caption .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 15px;
	margin-top: 5px;
    animation: fadeInUp 1.4s;
}

/* Carousel Mobile View */
@media (max-width: 991px) {
    .carousel-caption h5 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption h5 {
        font-size: 24px;
    }
    
    .carousel-caption p {
        font-size: 14px;
    }
}

/* ===== BREADCRUMBS SECTION ===== */
.breadcrumb-section {
    background: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-gold);
}

.breadcrumb-item.active {
    color: var(--dark-gray);
}
/* ===== PRACTICE AREAS SECTION ===== */
.practice-areas-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.practice-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.practice-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.practice-card h3 {
    color: var(--dark-gray);
    font-size: 20px;
    margin-bottom: 15px;
}

.practice-card p {
    color: #666;
    margin-bottom: 20px;
}

.practice-card .btn-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

/* Practice Areas Mobile View */
@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .practice-card {
        padding: 20px;
    }
}
/* ===== SECTION 3: WHY CHOOSE US ===== */
.why-choose-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(-150px, -150px);
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(200px, 200px);
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

/* Equal height rows */
.why-choose-section .row.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
}

.why-choose-section .row.align-items-stretch > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Section Title */
.why-choose-section .section-title {
    color: var(--dark-gray);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.why-choose-section .section-title .text-gold {
    color: var(--primary-gold);
}

.why-choose-section .section-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Content Area */
.why-choose-content {
    background: white;
    padding: 0;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Feature Items */
.why-choose-section .feature-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
    background: white;
    box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.06);
    margin-bottom: 5px;
}

.why-choose-section .feature-item:hover {
    transform: translateX(10px);
    box-shadow: 2px 2px 10px 5px rgba(0, 0, 0, 0.150);
    background: var(--light-gray);
}

/* Feature Icons */
.why-choose-section .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(29, 102, 168, 0.2);
}

.why-choose-section .feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #a07843 100%);
    transform: rotateY(360deg);
    box-shadow: 0 5px 15px rgba(181, 145, 84, 0.3);
}

.why-choose-section .feature-icon i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.why-choose-section .feature-item:hover .feature-icon i {
    transform: scale(1.1);
}

/* Feature Text */
.why-choose-section .feature-item h4 {
    color: var(--dark-gray);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.why-choose-section .feature-item:hover h4 {
    color: var(--primary-blue);
}

.why-choose-section .feature-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Right Side Image */
.why-choose-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Experience Badge on Image */
.why-choose-image .experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-gold);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.why-choose-image .experience-badge .years {
    font-size: 28px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.why-choose-image .experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mini Stat Cards */
.stat-mini-card {
    background: var(--light-gray);
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.stat-mini-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.stat-mini-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-mini-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-section .section-title {
        font-size: 32px;
    }
    
    .why-choose-content {
        margin-bottom: 30px;
    }
    
    .why-choose-section .feature-item {
        padding: 12px;
    }
    
    .why-choose-section .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-choose-section .feature-icon i {
        font-size: 24px;
    }
    
    .why-choose-section .feature-item h4 {
        font-size: 18px;
    }
    
    .why-choose-section .feature-item p {
        font-size: 14px;
    }
    
    .why-choose-image {
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 50px 0;
    }
    
    .why-choose-section .section-title {
        font-size: 28px;
    }
    
    .why-choose-section .section-subtitle {
        font-size: 14px;
    }
    
    .why-choose-section .feature-item {
        padding: 10px;
    }
    
    .why-choose-section .feature-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px !important;
    }
    
    .why-choose-section .feature-icon i {
        font-size: 20px;
    }
    
    .why-choose-section .feature-item h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .why-choose-section .feature-item p {
        font-size: 13px;
    }
    
    .why-choose-image .experience-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
    }
    
    .why-choose-image .experience-badge .years {
        font-size: 22px;
    }
    
    .why-choose-image .experience-badge .text {
        font-size: 10px;
    }
    
    .why-choose-image {
        min-height: 350px;
    }
    
    .stat-mini-card {
        padding: 10px 5px;
    }
    
    .stat-mini-number {
        font-size: 18px;
    }
    
    .stat-mini-label {
        font-size: 10px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .why-choose-section {
        background: #1a1a2e;
    }
    
    .why-choose-section .feature-item {
        background: #16213e;
    }
    
    .why-choose-section .feature-item h4 {
        color: #fff;
    }
    
    .why-choose-section .feature-item p {
        color: #aaa;
    }
    
    .why-choose-section .feature-item:hover {
        background: #1f2a4a;
    }
    
    .stat-mini-card {
        background: #16213e;
    }
    
    .stat-mini-number {
        color: var(--primary-gold);
    }
    
    .stat-mini-label {
        color: #aaa;
    }
}
/* ===== RLC TESTIMONIALS SECTION - PREMIUM DESIGN ===== */
.rlc-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.rlc-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-gold);
    opacity: 0.05;
    border-radius: 50%;
}

.rlc-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: var(--primary-blue);
    opacity: 0.05;
    border-radius: 50%;
}

/* Section Header */
.rlc-section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Section Title - Two Color Style (Matching other sections) */
.rlc-section-title {
    color: var(--dark-gray);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.rlc-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.rlc-section-title .rlc-text-gold {
    color: var(--primary-gold);
}

.rlc-section-header p {
    color: #666;
    font-size: 18px;
    margin-top: 5px;
}

/* Carousel Wrapper - Within Container */
.rlc-testimonial-carousel-wrapper {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

/* Testimonial Card */
.rlc-testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rlc-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(181, 145, 84, 0.3);
}

/* Quote Icon */
.rlc-quote-icon {
    margin-bottom: 20px;
}

.rlc-quote-icon i {
    font-size: 40px;
    color: var(--primary-gold);
    opacity: 0.5;
}

/* Testimonial Content */
.rlc-testimonial-content {
    margin-bottom: 25px;
}

.rlc-testimonial-text {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0;
    min-height: 120px;
}

/* Testimonial Author */
.rlc-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rlc-author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(29, 102, 168, 0.2);
}

.rlc-author-info h4 {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.rlc-author-info p {
    color: #888;
    font-size: 13px;
    margin-bottom: 5px;
}

.rlc-rating i {
    color: #ffc107;
    font-size: 12px;
    margin-right: 2px;
}

/* Owl Carousel Customization */
.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
    height: auto;
}

.owl-carousel .owl-item .rlc-testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* HIDE NAVIGATION ARROWS - Only Dots */
.owl-theme .owl-nav {
    display: none !important;
}

/* Dots Styling - Visible Only */
.owl-theme .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    background: #ccc;
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-gold);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .rlc-testimonials-section {
        padding: 60px 0;
    }
    
    .rlc-section-title {
        font-size: 32px;
    }
    
    .rlc-testimonial-card {
        padding: 25px;
        margin: 12px;
    }
    
    .rlc-testimonial-text {
        font-size: 15px;
        min-height: 100px;
    }
}

@media (max-width: 767px) {
    .rlc-testimonials-section {
        padding: 50px 0;
    }
    
    .rlc-section-title {
        font-size: 28px;
    }
    
    .rlc-section-header p {
        font-size: 15px;
    }
    
    .rlc-testimonial-card {
        padding: 20px;
        margin: 10px;
    }
    
    .rlc-testimonial-text {
        font-size: 14px;
        min-height: auto;
    }
    
    .owl-theme .owl-dots {
        margin-top: 30px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .rlc-testimonials-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .rlc-testimonial-card {
        background: #1f2a4a;
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .rlc-testimonial-text {
        color: #ccc;
    }
    
    .rlc-author-info h4 {
        color: #fff;
    }
    
    .rlc-author-info p {
        color: #aaa;
    }
}
/* ===== FOOTER SECTION ===== */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
}

/* Footer Logo */
.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 56px;
    height: 70px;
    object-fit: contain;
}

.footer-logo-text h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.25px;
}

.footer-logo-text p {
    color: var(--primary-gold);
    font-size: 15px;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-logo-wrapper + p {
    color: #aaa;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Professional Contact Box (Replaces Social Media) */
.professional-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    border-left: 3px solid var(--primary-gold);
}

.professional-contact-box i {
    font-size: 24px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.professional-contact-box strong {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}

.professional-contact-box p {
    color: #aaa;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-gold);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-link:hover {
    gap: 8px;
    color: white;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-links li a i {
    margin-right: 10px;
    color: var(--primary-gold);
    font-size: 10px;
}

/* Footer Contact */
.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-contact i {
    width: 20px;
    color: var(--primary-gold);
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    background: #23272b;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Social Links - Hidden */
.social-links {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .footer {
        padding: 50px 0 0;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo-wrapper {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-text {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .professional-contact-box {
        text-align: left;
        flex-direction: row;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}
/* First Column - Add right padding for desktop */
.footer-widget-first {
    padding-right: 30px;
}
@media (max-width: 991px) {
    .footer-widget-first {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .footer-widget-first {
        padding-right: 0;
    }
}
@media (max-width: 576px) {
    .professional-contact-box {
        flex-direction: column;
        text-align: center;
    }
    
    .professional-contact-box i {
        margin: 0 auto 5px;
    }
}
/* ===== UTILITY CLASSES ===== */
.text-gold {
    color: var(--primary-gold);
}

.text-blue {
    color: var(--primary-blue);
}

.bg-gold {
    background: var(--primary-gold);
}

.bg-blue {
    background: var(--primary-blue);
}

/* ===== WELCOME / INTRODUCTION SECTION ===== */
.welcome-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-gold);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    opacity: 0.03;
    border-radius: 50%;
    z-index: 0;
}

.welcome-section .container {
    position: relative;
    z-index: 1;
}

.welcome-section .section-title {
    color: var(--dark-gray);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.welcome-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.welcome-section .section-title .text-gold {
    color: var(--primary-gold);
}

.welcome-section .subtitle {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.welcome-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.welcome-section .btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.welcome-section .btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 102, 168, 0.3);
}

.welcome-section .btn-outline-gold {
    background: transparent;
    border: 2px solid var(--primary-gold);
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    color: var(--dark-gray);
    text-decoration: none;
    display: inline-block;
}

.welcome-section .btn-outline-gold:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 145, 84, 0.3);
}

.welcome-section .welcome-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.welcome-section .welcome-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.welcome-section .welcome-image:hover img {
    transform: scale(1.05);
}

.welcome-section .experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gold);
    color: white;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.welcome-section .experience-badge .years {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.welcome-section .experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .welcome-section {
        padding: 60px 0;
    }
    
    .welcome-section .section-title {
        font-size: 32px;
    }
    
    .welcome-section .subtitle {
        font-size: 18px;
    }
    
    .welcome-section .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .welcome-section .experience-badge .years {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .welcome-section {
        padding: 50px 0;
    }
    
    .welcome-section .section-title {
        font-size: 28px;
    }
    
    .welcome-section .subtitle {
        font-size: 16px;
    }
    
    .welcome-section .btn-primary,
    .welcome-section .btn-outline-gold {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .welcome-section .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
        width: auto;
    }
    
    .welcome-section .welcome-image {
        margin-top: 30px;
    }
}

/* Dark mode compatibility (if needed) */
@media (prefers-color-scheme: dark) {
    .welcome-section p {
        color: #aaa;
    }
    
    .welcome-section .btn-outline-gold {
        color: #fff;
    }
}
/* ===== SECTION 2: PRACTICE AREAS ===== */
.practice-areas-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.practice-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.practice-areas-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(-200px, 200px);
}

.practice-areas-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.practice-areas-section .section-header {
    margin-bottom: 50px;
}

.practice-areas-section .section-header h2 {
    color: var(--dark-gray);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.practice-areas-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.practice-areas-section .section-header h2 .text-gold {
    color: var(--primary-gold);
}

.practice-areas-section .section-header p {
    color: #666;
    font-size: 18px;
    margin-bottom: 0;
}

/* Practice Cards */
.practice-areas-section .practice-card {
    background: white;
    padding: 35px 25px 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.practice-areas-section .practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.practice-areas-section .practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.practice-areas-section .practice-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon */
.practice-areas-section .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(29, 102, 168, 0.2);
}

.practice-areas-section .practice-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--gold-hover) 100%);
    transform: rotateY(360deg);
    box-shadow: 0 10px 20px rgba(181, 145, 84, 0.3);
}

.practice-areas-section .card-icon i {
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
}

.practice-areas-section .practice-card:hover .card-icon i {
    transform: scale(1.1);
}

/* Card Content */
.practice-areas-section .practice-card h3 {
    color: var(--dark-gray);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.practice-areas-section .practice-card:hover h3 {
    color: var(--primary-blue);
}

.practice-areas-section .practice-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Card Footer */
.practice-areas-section .card-footer {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: auto;
}

/* FIXED BUTTON STYLES - Arrow Centered */
.practice-areas-section .card-footer .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.4;
    vertical-align: middle;
}

.practice-areas-section .card-footer .btn-outline-gold i {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 14px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.practice-areas-section .card-footer .btn-outline-gold:hover i {
    transform: translateX(5px);
	color: #ffffff;
}

/* Featured Card (Optional - for highlighting) */
.practice-areas-section .practice-card.featured {
    border: 2px solid var(--primary-gold);
    position: relative;
}

.practice-areas-section .practice-card.featured::after {
    content: '★ Featured';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* View All Button */
.practice-areas-section .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 16px;
}

.practice-areas-section .btn-primary i {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    transition: transform 0.3s ease;
}

.practice-areas-section .btn-primary:hover i {
    transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .practice-areas-section {
        padding: 60px 0;
    }
    
    .practice-areas-section .section-header h2 {
        font-size: 32px;
    }
    
    .practice-areas-section .section-header p {
        font-size: 16px;
    }
    
    .practice-areas-section .practice-card {
        padding: 30px 20px 25px 20px;
    }
    
    .practice-areas-section .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .practice-areas-section .card-icon i {
        font-size: 30px;
    }
    
    .practice-areas-section .practice-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .practice-areas-section {
        padding: 50px 0;
    }
    
    .practice-areas-section .section-header h2 {
        font-size: 28px;
    }
    
    .practice-areas-section .section-header p {
        font-size: 15px;
    }
    
    .practice-areas-section .row {
        --bs-gutter-y: 20px;
    }
    
    .practice-areas-section .practice-card {
        padding: 25px 15px 20px 15px;
    }
    
    .practice-areas-section .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .practice-areas-section .card-icon i {
        font-size: 26px;
    }
    
    .practice-areas-section .practice-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .practice-areas-section .practice-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .practice-areas-section .card-footer .btn-outline-gold {
        padding: 7px 18px;
        font-size: 13px;
    }
    
    .practice-areas-section .btn-primary {
        padding: 12px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .practice-areas-section .practice-card {
        background: #2a2a2a;
    }
    
    .practice-areas-section .practice-card h3 {
        color: #fff;
    }
    
    .practice-areas-section .practice-card p {
        color: #aaa;
    }
}
/* ===== DISCLAIMER MODAL ===== */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 520px;
    max-height: 85vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(181, 145, 84, 0.2);
}

.modal-container::-webkit-scrollbar {
    width: 4px;
}

.modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #b59154;
    border-radius: 10px;
}

/* Modal Header */
.modal-header {
    text-align: center;
    padding: 20px 20px 12px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #b59154 0%, #a07843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 8px 20px rgba(181, 145, 84, 0.3);
}

.modal-icon i {
    font-size: 26px;
    color: white;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Modal Body */
.modal-body {
    padding: 15px 22px 10px;
}

.notice-text {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: center;
}

/* Points Container */
.points-container {
    margin: 5px 0;
}

.point-item {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.point-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.point-icon i {
    font-size: 14px;
    color: #b59154;
}

.point-content p {
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.point-content strong {
    color: #2c3e50;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 10px;
    background: rgba(255, 193, 7, 0.08);
    padding: 10px 12px;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.warning-box i {
    font-size: 16px;
    color: #ffc107;
    flex-shrink: 0;
    margin-top: 1px;
}

.warning-box strong {
    color: #2c3e50;
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
}

.warning-box div {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* Modal Footer */
.modal-footer {
    padding: 12px 22px;
    display: flex;
    gap: 12px;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-accept,
.btn-reject {
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
}

.btn-accept {
    background: linear-gradient(135deg, #1d66a8 0%, #0f4a7a 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(29, 102, 168, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 102, 168, 0.4);
}

.btn-reject {
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.btn-reject:hover {
    background: #dc3545;
    color: white;
    transform: translateY(-2px);
}

.modal-footer-note {
    text-align: center;
    padding: 0 22px 15px;
}

.modal-footer-note p {
    font-size: 10px;
    color: #888;
    margin: 0;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px 15px 10px;
    }
    
    .modal-icon {
        width: 45px;
        height: 45px;
    }
    
    .modal-icon i {
        font-size: 22px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 12px 18px 8px;
    }
    
    .modal-footer {
        padding: 10px 18px;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-reject {
        justify-content: center;
        width: 100%;
    }
}
/* ===== STICKY CTA BAR - MODERN PREMIUM DESIGN ===== */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-gold);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    padding: 10px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.show {
    transform: translateY(0);
}

.sticky-cta-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.cta-item:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(181, 145, 84, 0.3);
}

.cta-item i {
    font-size: 22px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.cta-item:hover i {
    color: white;
    transform: scale(1.1);
}

.cta-item span {
    font-size: 14px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.cta-item .cta-subtext {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 8px;
}

/* Individual CTA Colors on Hover */
.cta-item.call:hover {
    background: #25D366;
    border-color: #25D366;
}

.cta-item.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.cta-item.appointment:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.cta-item.query:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Pulse Animation for Urgency */
.cta-item.urgent {
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Close Button for Sticky Bar */
.cta-close {
    position: absolute;
    top: -30px;
    right: 5px;
    background: var(--primary-gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-close i {
    font-size: 14px;
    color: white;
}

.cta-close:hover {
    background: #dc3545;
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .sticky-cta-bar {
        padding: 6px 0;
    }
    
    .cta-items {
        gap: 10px;
    }
    
    .cta-item {
        padding: 6px 12px;
        min-width: 140px;
    }
    
    .cta-item i {
        font-size: 18px;
    }
    
    .cta-item span {
        font-size: 12px;
    }
    
    .cta-item .cta-subtext {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .cta-items {
        gap: 8px;
    }
    
    .cta-item {
        padding: 6px 10px;
        min-width: auto;
        flex: 1;
    }
    
    .cta-item span {
        font-size: 10px;
    }
    
    .cta-item .cta-subtext {
        display: none;
    }
    
    .cta-item i {
        font-size: 16px;
        margin: 0;
    }
	.sticky-cta-bar {
        padding: 8px 0;
    }
}
@media (max-width: 576px) {
    .sticky-cta-bar {
        padding: 5px 0;
    }
    
    .cta-items {
        gap: 5px;
    }
    
    .cta-item {
        padding: 6px;
        gap: 6px;
    }
    
    .cta-item span {
        font-size: 9px;
    }
    
    .cta-item i {
        font-size: 14px;
    }
    
    .cta-close {
        top: -25px;
        right: 2px;
        width: 25px;
        height: 25px;
    }
    
    .cta-close i {
        font-size: 12px;
    }
}

/* Hide on Print */
@media print {
    .sticky-cta-bar {
        display: none;
    }
}
/* ===== PREMIUM CTA SECTION ===== */
.rlc-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.rlc-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="%231d66a8" fill-opacity="0.03" d="M100 0L200 100L100 200L0 100Z"/></svg>') repeat;
    opacity: 0.3;
}

.rlc-cta-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.rlc-cta-content {
    flex: 1.2;
}

.rlc-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 145, 84, 0.15);
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.rlc-cta-tag i {
    font-size: 14px;
    color: var(--primary-gold);
}

.rlc-cta-tag span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
}

.rlc-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.2;
}

.rlc-cta-title .text-gold {
    color: var(--primary-gold);
}

.rlc-cta-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Contact Info Items */
.rlc-cta-contact-info {
    margin-bottom: 35px;
}

.rlc-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.rlc-contact-item:hover {
    transform: translateX(10px);
    border-bottom-color: var(--primary-gold);
}

.rlc-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rlc-contact-item:hover .rlc-contact-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #a07843 100%);
    transform: scale(1.05);
}

.rlc-contact-icon i {
    font-size: 22px;
    color: white;
}

.rlc-contact-details {
    flex: 1;
}

.rlc-contact-label {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.rlc-multiple-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rlc-contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rlc-contact-value:hover {
    color: var(--primary-gold);
}

.rlc-number-separator {
    color: #ccc;
    font-weight: 400;
}

/* CTA Buttons */
.rlc-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: #a07843;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 145, 84, 0.3);
    color: white;
}

.btn-gold:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-outline-gold {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--primary-gold);
    padding: 10px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 145, 84, 0.2);
}

/* Right Card */
.rlc-cta-image {
    flex: 0.8;
}

.rlc-cta-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rlc-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-blue));
}

.rlc-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.rlc-card-header {
    text-align: center;
    margin-bottom: 25px;
}

.rlc-card-header i {
    font-size: 40px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.rlc-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 5px 0;
}

.rlc-card-subtitle {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.rlc-card-subtitle a {
    color: var(--primary-gold);
    text-decoration: none;
}

.rlc-card-subtitle a:hover {
    text-decoration: underline;
}

/* Form Styles */
.rlc-quick-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rlc-form-group {
    width: 100%;
}

.rlc-form-group input,
.rlc-form-group select,
.rlc-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.rlc-form-group input:focus,
.rlc-form-group select:focus,
.rlc-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(181, 145, 84, 0.1);
}

/* Error Border Styling */
.rlc-form-group input.error-border,
.rlc-form-group select.error-border,
.rlc-form-group textarea.error-border {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.02);
}

.rlc-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.w-100 {
    width: 100%;
}

.rlc-form-note {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}

/* ===== CAPTCHA STYLES ===== */
.captcha-group {
    margin-bottom: 5px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-code {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    flex: 1;
    user-select: none;
}

.captcha-refresh {
    background: var(--primary-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.captcha-refresh:hover {
    background: #a07843;
    transform: rotate(180deg);
}

.captcha-refresh i {
    font-size: 18px;
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-group {
    margin: 5px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    position: relative;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-gold);
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ===== FORM RESPONSE MESSAGES ===== */
.form-response-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    animation: slideInUp 0.4s ease;
}

.form-response-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.form-response-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

.success-icon,
.error-icon {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.success-icon i {
    font-size: 24px;
    color: #28a745;
}

.error-icon i {
    font-size: 24px;
    color: #dc3545;
}

.success-content,
.error-content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 40px);
}

.success-content h4,
.error-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.success-content p,
.error-content p {
    margin: 0;
    font-size: 13px;
    color: #555;
}

/* Error List Styling */
.error-content ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.error-content li {
    margin: 3px 0;
    font-size: 13px;
    color: #721c24;
}

.error-help {
    margin-top: 8px !important;
    font-size: 12px !important;
}

/* Urgent Note Styling */
.urgent-note {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #28a745;
    font-size: 12px;
    color: #856404;
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
}

.urgent-note a {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
}

.urgent-note a:hover {
    text-decoration: underline;
}

/* ===== WHATSAPP GLOW BUTTON ===== */
.whatsapp-followup {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.whatsapp-glow-container {
    display: flex;
    justify-content: center;
}

.whatsapp-urgent-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    animation: glowPulse 2s infinite;
    width: 100%;
    max-width: 400px;
}

.whatsapp-urgent-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
    color: white;
}

.whatsapp-urgent-btn i:first-child {
    font-size: 32px;
    animation: bounce 1s infinite;
}

.whatsapp-urgent-btn .whatsapp-text {
    flex: 1;
    text-align: left;
}

.whatsapp-urgent-btn .whatsapp-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.whatsapp-urgent-btn .whatsapp-subtext {
    display: block;
    font-size: 11px;
    opacity: 0.9;
}

.whatsapp-urgent-btn i:last-child {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.whatsapp-urgent-btn:hover i:last-child {
    transform: translateX(5px);
}

/* ===== LOADING SPINNER ===== */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.4);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .rlc-cta-section {
        padding: 60px 0;
    }
    
    .rlc-cta-wrapper {
        flex-direction: column;
    }
    
    .rlc-cta-title {
        font-size: 36px;
    }
    
    .rlc-cta-description {
        max-width: 100%;
    }
    
    .rlc-cta-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .rlc-contact-value {
        font-size: 16px;
    }
    
    .rlc-multiple-numbers {
        gap: 8px;
    }
    
    .captcha-code {
        font-size: 20px;
        letter-spacing: 6px;
        padding: 10px 15px;
    }
    
    .captcha-refresh {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .rlc-cta-section {
        padding: 50px 0;
    }
    
    .rlc-cta-title {
        font-size: 30px;
    }
    
    .rlc-cta-buttons {
        flex-direction: column;
    }
    
    .rlc-cta-buttons .btn-gold,
    .rlc-cta-buttons .btn-outline-gold {
        justify-content: center;
        width: 100%;
    }
    
    .rlc-contact-item {
        padding: 8px 0;
    }
    
    .rlc-contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .rlc-contact-icon i {
        font-size: 18px;
    }
    
    .rlc-contact-value {
        font-size: 14px;
    }
    
    .rlc-multiple-numbers {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .rlc-number-separator {
        display: none;
    }
    
    .rlc-cta-card {
        padding: 25px;
    }
    
    .rlc-card-header i {
        font-size: 32px;
    }
    
    .rlc-card-header h3 {
        font-size: 18px;
    }
    
    .rlc-form-group input,
    .rlc-form-group select,
    .rlc-form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .captcha-code {
        font-size: 18px;
        letter-spacing: 5px;
        padding: 8px 12px;
    }
    
    .captcha-refresh {
        width: 38px;
        height: 38px;
    }
    
    .captcha-refresh i {
        font-size: 14px;
    }
    
    .checkbox-label {
        font-size: 11px;
    }
    
    .btn-gold {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .success-content h4,
    .error-content h4 {
        font-size: 14px;
    }
    
    .success-content p,
    .error-content p {
        font-size: 12px;
    }
    
    .urgent-note {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .rlc-cta-card {
        padding: 20px;
    }
    
    .captcha-container {
        flex-direction: column;
    }
    
    .captcha-code {
        width: 100%;
        text-align: center;
    }
    
    .captcha-refresh {
        width: 100%;
    }
    
    .checkbox-label {
        align-items: flex-start;
    }
    
    .checkbox-label input {
        margin-top: 2px;
    }
    
    .whatsapp-urgent-btn {
        padding: 12px 18px;
        gap: 10px;
    }
    
    .whatsapp-urgent-btn i:first-child {
        font-size: 24px;
    }
    
    .whatsapp-urgent-btn .whatsapp-title {
        font-size: 12px;
    }
    
    .whatsapp-urgent-btn .whatsapp-subtext {
        font-size: 9px;
    }
    
    .whatsapp-urgent-btn i:last-child {
        font-size: 14px;
    }
    
    .success-icon i,
    .error-icon i {
        font-size: 20px;
    }
    
    .success-content h4,
    .error-content h4 {
        font-size: 14px;
    }
    
    .success-content p,
    .error-content p {
        font-size: 12px;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .rlc-cta-card {
        background: #1f2a4a;
    }
    
    .rlc-card-header h3 {
        color: #fff;
    }
    
    .rlc-form-group input,
    .rlc-form-group select,
    .rlc-form-group textarea {
        background: #2a3a5a;
        border-color: #3a4a6a;
        color: #fff;
    }
    
    .rlc-form-group input:focus,
    .rlc-form-group select:focus,
    .rlc-form-group textarea:focus {
        background: #2a3a5a;
        border-color: var(--primary-gold);
    }
    
    .rlc-form-group input::placeholder,
    .rlc-form-group select::placeholder,
    .rlc-form-group textarea::placeholder {
        color: #aaa;
    }
    
    .checkbox-label {
        color: #ccc;
    }
    
    .form-response-message.success {
        background: linear-gradient(135deg, #1a3a2a 0%, #0f2a1e 100%);
    }
    
    .form-response-message.error {
        background: linear-gradient(135deg, #3a1a1a 0%, #2a0f0f 100%);
    }
    
    .success-content h4 {
        color: #90ee90;
    }
    
    .error-content h4 {
        color: #ff9999;
    }
    
    .success-content p {
        color: #90ee90;
    }
    
    .error-content p {
        color: #ff9999;
    }
    
    .error-content li {
        color: #ff9999;
    }
    
    .urgent-note {
        background: #2a2a1a;
        color: #ffd700;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .rlc-cta-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .btn-gold,
    .btn-outline-gold,
    .captcha-refresh,
    .whatsapp-urgent-btn {
        display: none;
    }
}
/* CAPTCHA - Single Row Layout */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-row .captcha-code {
    flex: 2;
    min-width: 120px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 6px;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    user-select: none;
}

.captcha-row .captcha-refresh {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-row .captcha-refresh:hover {
    background: #a07843;
    transform: rotate(180deg);
}

.captcha-row #captchaInput {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
}

.captcha-row #captchaInput:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(181, 145, 84, 0.1);
}

/* Checkbox - Single Row */
.checkbox-row {
    margin: 5px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-gold);
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive - Stack on mobile */
@media (max-width: 576px) {
    .captcha-row {
        flex-direction: column;
    }
    
    .captcha-row .captcha-code,
    .captcha-row .captcha-refresh,
    .captcha-row #captchaInput {
        width: 100%;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
}
/* Form Row - Two Columns Side by Side */
.rlc-form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.rlc-form-row .half {
    flex: 1;
    width: 50%;
}

/* CAPTCHA - Single Row Layout */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-row .captcha-code {
    flex: 2;
    min-width: 120px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 6px;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    user-select: none;
}

.captcha-row .captcha-refresh {
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-row .captcha-refresh:hover {
    background: #a07843;
    transform: rotate(180deg);
}

.captcha-row #captchaInput {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fafafa;
}

.captcha-row #captchaInput:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(181, 145, 84, 0.1);
}

/* Checkbox - Single Row */
.checkbox-row {
    margin: 5px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-gold);
    margin: 0;
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Responsive - Stack on mobile */
@media (max-width: 576px) {
    .rlc-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .rlc-form-row .half {
        width: 100%;
    }
    
    .captcha-row {
        flex-direction: column;
    }
    
    .captcha-row .captcha-code,
    .captcha-row .captcha-refresh,
    .captcha-row #captchaInput {
        width: 100%;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;  /* This controls space between checkbox and text */
    white-space: normal;
    word-spacing: normal;
}

.checkbox-label a {
    display: inline;
    margin: 0;
    padding: 0;
}

.checkbox-label a:first-of-type {
    margin-left: 0;
}

.checkbox-label a:last-of-type {
    margin-right: 0;
}
/* ===== LEGAL PAGES (PRIVACY POLICY & TERMS OF USE) ===== */
.privacy-policy-section,
.terms-section {
    padding: 60px 0;
    background: white;
}
.privacy-policy-content article,
.terms-content article {
    background: white;
    padding: 0;
}
.privacy-policy-content .section-title,
.terms-content .section-title {
    color: var(--dark-gray);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}
.privacy-policy-content .section-title::after,
.terms-content .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}
.terms-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.terms-main-heading .text-gold {
    color: var(--primary-gold);
}

.heading-underline {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin-top: 5px;
}
.privacy-policy-content .subtitle,
.terms-content .subtitle {
    color: var(--primary-blue);
    font-size: 18px;
    margin-bottom: 30px;
}
.privacy-policy-content h3,
.terms-content h3 {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
}
.privacy-policy-content h3 {
    padding-left: 0;
    border-left: none;
}
.privacy-policy-content p,
.terms-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.privacy-policy-content ul,
.terms-content ul {
    margin: 15px 0 20px 20px;
    padding: 0;
}
.privacy-policy-content ul li,
.terms-content ul li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}
.privacy-policy-content a,
.terms-content a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}
.privacy-policy-content a:hover,
.terms-content a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}
.privacy-policy-content a[href^="mailto"],
.privacy-policy-content a[href^="tel"],
.terms-content a[href^="mailto"],
.terms-content a[href^="tel"] {
    color: var(--primary-gold);
    font-weight: 500;
}
.privacy-policy-content a[href^="mailto"]:hover,
.privacy-policy-content a[href^="tel"]:hover,
.terms-content a[href^="mailto"]:hover,
.terms-content a[href^="tel"]:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}
.privacy-policy-content hr,
.terms-content hr {
    background: #e0e0e0;
    margin: 40px 0;
}
.privacy-policy-content .text-muted,
.terms-content .text-muted {
    color: #888 !important;
}
/* ===== TERMS PAGE SPECIFIC - HIGHLIGHT BOX ===== */
.terms-content .highlight-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-gold);
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
}
.terms-content .highlight-box p {
    margin-bottom: 12px;
}
.terms-content .highlight-box ul {
    margin-top: 10px;
}
@media (max-width: 991px) {
    .privacy-policy-section,
    .terms-section {
        padding: 50px 0;
    }
    .privacy-policy-content .section-title,
    .terms-content .section-title {
        font-size: 32px;
    }
    .terms-main-heading {
        font-size: 36px;
    }
    .privacy-policy-content h3,
    .terms-content h3 {
        font-size: 20px;
    }
    .privacy-policy-content p,
    .privacy-policy-content ul li,
    .terms-content p,
    .terms-content ul li {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .privacy-policy-section,
    .terms-section {
        padding: 40px 0;
    }
    .privacy-policy-content .section-title,
    .terms-content .section-title {
        font-size: 28px;
    }
    .terms-main-heading {
        font-size: 28px;
    }
    .heading-underline {
        width: 60px;
    }
    .privacy-policy-content h3,
    .terms-content h3 {
        font-size: 18px;
    }
    .privacy-policy-content p,
    .privacy-policy-content ul li,
    .terms-content p,
    .terms-content ul li {
        font-size: 14px;
    }
    .terms-content .highlight-box {
        padding: 15px;
    }
}
.terms-content h3 {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
}
.terms-content h3:contains("Online Payment Terms") {
    margin-top: 35px;
}
/* ===== BOOK APPOINTMENT PAGE ===== */
.appointment-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.appointment-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.appointment-info-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4eaf7 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.appointment-info-box i {
    font-size: 24px;
    color: var(--primary-gold);
    margin-top: 2px;
}

.appointment-info-box div {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.5;
}

/* Form Styles */
.appointment-form .form-group {
    margin-bottom: 20px;
}

.appointment-form .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.appointment-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.appointment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(181, 145, 84, 0.1);
}

.appointment-form select.form-control {
    cursor: pointer;
}

/* Form Text Helper */
.form-text {
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    display: block;
}

/* Info Boxes */
.info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box i {
    font-size: 22px;
    margin-top: 2px;
}

.info-box.free-box {
    border-left: 4px solid #28a745;
    background: #e8f5e9;
}

.info-box.free-box i {
    color: #28a745;
}

.info-box.paid-box {
    border-left: 4px solid var(--primary-gold);
    background: #fff8e7;
}

.info-box.paid-box i {
    color: var(--primary-gold);
}

.info-box ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.info-box li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

/* Checkbox Group */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* CAPTCHA */
.captcha-group .captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-group .captcha-code {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 6px;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    flex: 1;
    min-width: 120px;
}

.captcha-group .captcha-refresh {
    background: var(--primary-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-group .captcha-refresh:hover {
    background: #a07843;
    transform: rotate(180deg);
}

.captcha-group #captchaInput {
    flex: 1;
    min-width: 120px;
}

/* Premium Submit Button - Centered */
.btn-submit-premium {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #a07843 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(181, 145, 84, 0.3);
    min-width: 250px;
}

.btn-submit-premium i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover {
    background: linear-gradient(135deg, #a07843 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(181, 145, 84, 0.4);
}

.btn-submit-premium:hover i {
    transform: none; /*translateX(5px); */
}

.btn-submit-premium:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Response */
.form-response-message {
    padding: 15px 20px;
    border-radius: 10px;
    animation: slideInUp 0.4s ease;
}

.form-response-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.form-response-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

.success-content h4,
.error-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.success-content p,
.error-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.urgent-note {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #28a745;
    font-size: 13px;
    color: #856404;
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 991px) {
    .appointment-form-section {
        padding: 50px 0;
    }
    
    .appointment-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .appointment-form-section {
        padding: 40px 0;
    }
    
    .appointment-form-wrapper {
        padding: 20px;
    }
    
    .captcha-group .captcha-container {
        flex-direction: column;
    }
    
    .captcha-group .captcha-code,
    .captcha-group .captcha-refresh,
    .captcha-group #captchaInput {
        width: 100%;
    }
    
    .appointment-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .appointment-info-box i {
        margin: 0 auto;
    }
    
    .btn-submit-premium {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Error Message Styling - Make sure this exists */
.error-message-field {
    color: #dc3545 !important;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
    display: block !important;
    clear: both;
    width: 100%;
}

.error-message-field i {
    font-size: 12px;
    margin-right: 5px;
}

/* Red border for invalid fields */
#appointmentForm input.error-border,
#appointmentForm select.error-border,
#appointmentForm textarea.error-border {
    border-color: #dc3545 !important;
}

/* Ensure form controls show red border */
#appointmentForm input:invalid,
#appointmentForm select:invalid,
#appointmentForm textarea:invalid {
    border-color: #dc3545;
}
/* ===== PAYMENT PAGE STYLES ===== */
        .payment-card {
            background: white;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(181, 145, 84, 0.15);
            transition: transform 0.3s ease;
        }

        .payment-card:hover {
            transform: translateY(-5px);
        }

        /* Icon Circle */
        .icon-circle {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--primary-gold) 0%, #a07843 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 10px 20px rgba(181, 145, 84, 0.3);
        }

        .icon-circle i {
            font-size: 28px;
            color: white;
        }

        /* QR Code Section */
        .qr-wrapper {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }

        .qr-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 12px;
        }

        .upi-qr-img {
            width: 160px;
            height: 160px;
            border-radius: 12px;
            border: 2px solid var(--primary-gold);
            padding: 5px;
            background: white;
        }

        .upi-id {
            margin-top: 10px;
            font-size: 14px;
        }

        .upi-id strong {
            color: var(--primary-blue);
        }

        /* UPI Buttons Row */
        .upi-buttons-row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        .btn-upi {
            flex: 1;
            background: linear-gradient(135deg, #1d66a8 0%, #0f4a7a 100%);
            color: white;
            padding: 12px 0;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-upi:hover {
            background: linear-gradient(135deg, #b59154 0%, #a07843 100%);
            transform: translateY(-2px);
            color: white;
        }

        /* Full Width Button */
        .btn-upi-full {
            width: 100%;
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            color: white;
            padding: 12px 0;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            margin-bottom: 20px;
        }

        .btn-upi-full:hover {
            background: linear-gradient(135deg, #b59154 0%, #a07843 100%);
            transform: translateY(-2px);
            color: white;
        }

        /* International Box */
        .international-box {
            background: #f0f7ff;
            padding: 12px 15px;
            border-radius: 12px;
            font-size: 13px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            border-left: 3px solid var(--primary-gold);
        }

        .international-box i {
            color: var(--primary-gold);
            font-size: 18px;
        }

        .international-box strong {
            color: var(--dark-gray);
        }

        .international-box a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .international-box a:hover {
            text-decoration: underline;
        }

        /* Payment Alert */
        .payment-alert {
            background: #e8f5e9;
            border-left: 3px solid #28a745;
            padding: 12px 15px;
            border-radius: 10px;
            font-size: 12px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .payment-alert i {
            color: #28a745;
            margin-right: 6px;
        }

        .payment-alert strong {
            color: var(--dark-gray);
        }

        .payment-alert a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
        }

        .payment-alert a:hover {
            text-decoration: underline;
        }

        /* Back Button */
        .btn-back {
            display: block;
            text-align: center;
            background: transparent;
            border: 2px solid var(--primary-gold);
            color: var(--dark-gray);
            padding: 10px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-back:hover {
            background: var(--primary-gold);
            color: white;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .payment-card {
                padding: 20px;
            }
            
            .upi-qr-img {
                width: 130px;
                height: 130px;
            }
            
            .upi-buttons-row {
                flex-direction: column;
                gap: 8px;
            }
            
            .btn-upi {
                width: 100%;
            }
            
            .international-box {
                font-size: 11px;
            }
            
            .payment-alert {
                font-size: 11px;
            }
            
            .qr-title {
                font-size: 14px;
			}
		}
/* ===== SEND LEGAL QUERY PAGE ===== */
.legal-query-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.legal-query-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-query-info-box {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4eaf7 100%);
    border-left: 4px solid var(--primary-gold);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.legal-query-info-box i {
    font-size: 24px;
    color: var(--primary-gold);
    margin-top: 2px;
}

.legal-query-info-box div {
    flex: 1;
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.5;
}

/* Form Styles */
.legal-query-form .form-group {
    margin-bottom: 20px;
}

.legal-query-form .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.legal-query-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.legal-query-form .form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(181, 145, 84, 0.1);
}

.legal-query-form select.form-control {
    cursor: pointer;
}

.legal-query-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Info Boxes */
.info-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box i {
    font-size: 22px;
    margin-top: 2px;
}

.info-box.free-box {
    border-left: 4px solid #28a745;
    background: #e8f5e9;
}

.info-box.free-box i {
    color: #28a745;
}

.info-box.paid-box {
    border-left: 4px solid var(--primary-gold);
    background: #fff8e7;
}

.info-box.paid-box i {
    color: var(--primary-gold);
}

.info-box ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.info-box li {
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

/* Checkbox Group */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* CAPTCHA */
.captcha-group {
    margin-bottom: 20px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-code {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 6px;
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    font-family: monospace;
    flex: 1;
    min-width: 120px;
}

.captcha-refresh {
    background: var(--primary-gold);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh:hover {
    background: #a07843;
    transform: rotate(180deg);
}

.captcha-container #captchaInput {
    flex: 1;
    min-width: 120px;
}

/* Submit Button */
.btn-submit-premium {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #a07843 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(181, 145, 84, 0.3);
    min-width: 250px;
}

.btn-submit-premium i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover {
    background: linear-gradient(135deg, #a07843 0%, var(--primary-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(181, 145, 84, 0.4);
}

.btn-submit-premium:hover i {
    transform: none; /* translateX(5px); */
}

.btn-submit-premium:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Response Message */
.form-response-message {
    padding: 15px 20px;
    border-radius: 10px;
    animation: slideInUp 0.4s ease;
}

.form-response-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #28a745;
}

.form-response-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border-left: 4px solid #dc3545;
}

.success-content h4,
.error-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.success-content p,
.error-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.urgent-note {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #28a745;
    font-size: 13px;
    color: #856404;
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
}

/* Error Message Field */
.error-message-field {
    color: #dc3545 !important;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-message-field i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .legal-query-section {
        padding: 50px 0;
    }
    
    .legal-query-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .legal-query-section {
        padding: 40px 0;
    }
    
    .legal-query-wrapper {
        padding: 20px;
    }
    
    .captcha-container {
        flex-direction: column;
    }
    
    .captcha-code,
    .captcha-refresh,
    .captcha-container #captchaInput {
        width: 100%;
    }
    
    .legal-query-info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-query-info-box i {
        margin: 0 auto;
    }
    
    .btn-submit-premium {
        width: 100%;
        min-width: auto;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
    }
    
    .info-box i {
        margin: 0 auto;
    }
    
    .info-box ul {
        text-align: left;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}		