body {
    padding: 0;
    margin: 0;
}

/* Disclaimer Modal Styles */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
}

.disclaimer-content {
    background-color: #1d2227;
    border: 2px solid #cbb88c;
    border-radius: 4px;
    max-width: 750px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.disclaimer-header {
    background-color: #121518;
    padding: 20px;
    border-bottom: 1px solid rgba(203, 184, 140, 0.3);
    display: flex;
    align-items: center;
    color: #cbb88c;
}

.disclaimer-header i {
    font-size: 28px;
    margin-right: 15px;
}

.disclaimer-header h2 {
    margin: 0;
    font-size: 24px;
    color: #cbb88c;
    font-weight: 500;
}

.disclaimer-body {
    padding: 25px;
    color: #f8f9fa;
    font-size: 14px;
    line-height: 1.6;
    overflow-y: auto;
}

.disclaimer-body p {
    margin-bottom: 15px;
    text-align: justify;
}

.disclaimer-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.disclaimer-body li {
    margin-bottom: 12px;
    text-align: justify;
}

.disclaimer-footer {
    background-color: #121518;
    padding: 15px 25px;
    border-top: 1px solid rgba(203, 184, 140, 0.3);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.disclaimer-footer button {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-disagree {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.btn-disagree:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-agree {
    background-color: #cbb88c;
    border: 1px solid #cbb88c;
    color: #121518;
}

.btn-agree:hover {
    background-color: #b5a278;
    border-color: #b5a278;
    color: #121518;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* Logo Cropping and Styling */
.logo-crop {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 12px;
    border: 1px solid #cbb88c;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.3s;
}

.logo-crop img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

/* Adjustments for fixed navbar menu */
.ftco-navbar-light .navbar-brand {
    display: flex;
    align-items: center;
}

/* Form Validation Styles */
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5' stroke-dasharray='4'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4v3.6h-.4zm0 4.8h.4V9h-.4z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.188rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.188rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Adjust top margin in layout sections if needed */
.hero-wrap .overlay {
    background: #121518;
    opacity: .75;
}

/* Map placeholder stylings */
.map-container {
    border: 2px solid #cbb88c;
    padding: 10px;
    background: #1d2227;
}

.map-placeholder {
    background: #121518;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.map-placeholder h3 {
    color: #cbb88c;
}

/* Scrolled Navbar Logo Brand Title Color Overrides */
.logo-text h1 {
    color: #fff !important;
    transition: color 0.3s ease;
}

.ftco_navbar.scrolled .logo-text h1 {
    color: #121518 !important;
}

/* Stats Counter – label text in white */
.ftco-counter .block-18 .text span,
.ftco-counter .counter-wrap .text span {
    color: #fff !important;
}

/* Practice Area Service Headings – brown/gold to match logo */
.services h2,
.services-2 h2 {
    color: #cbb88c !important;
}
