/* ============================================
   GENERAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background:
#e3e3e3ca;
    padding: 10px 0;
}



/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-navbar {
    background-color: #000000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: 
#3d7bcd !important;
}

.dropdown-menu {
    background-color: #2a2a2a;
    border: none;
    border-radius: 0;
}

.dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #23426b;
    color: #ffffff;
    transform: translateX(5px);
}

/* Navigation Buttons */
.btn-phone {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-phone:hover {
    background-color: #133138;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-consultation {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-consultation:hover {
    background-color: #133138;
    
    color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile Navigation Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.dropdown-arrow {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-arrow i {
    transition: transform 0.3s ease;
}

.dropdown-arrow.active i {
    transform: rotate(180deg);
    color: #376898;
}

.main-nav-link {
    flex: 1;
}

/* ============================================
   DESKTOP - HOVER DROPDOWN
   ============================================ */
@media (min-width: 992px) {
    .mobile-nav-header {
        display: block;
    }
    
    .dropdown-arrow {
        display: none !important;
    }
    
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu {
        display: none;
        animation: fadeIn 0.3s ease;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    /* Mobile menu full width */
    .navbar-collapse {
        background-color: #1a1a1a;
        padding: 20px;
        margin-top: 15px;
    }
    
    /* Stack nav items vertically */
    .navbar-nav {
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 15px 10px !important;
    }
    
    /* Mobile dropdown styling */
    .dropdown-menu {
        background-color: #000000;
        border-left: 3px solid #2d4d7c;
        margin-left: 15px;
        width: calc(100% - 30px);
        position: static !important;
        transform: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
        opacity: 0;
        padding: 0;
    }
    
    .dropdown-menu.show {
        max-height: 500px;
        opacity: 1;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        animation: slideIn 0.3s ease forwards;
        opacity: 0;
    }
    
    .dropdown-menu.show .dropdown-item {
        animation: slideIn 0.4s ease forwards;
    }
    
    .dropdown-menu.show .dropdown-item:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .dropdown-menu.show .dropdown-item:nth-child(2) {
        animation-delay: 0.15s;
    }
    
    .dropdown-menu.show .dropdown-item:nth-child(3) {
        animation-delay: 0.2s;
    }
    
    .dropdown-menu.show .dropdown-item:nth-child(4) {
        animation-delay: 0.25s;
    }
    
    /* Mobile toggler */
    .navbar-toggler {
        border-color: #6a9bb8 !important;
        padding: 8px 12px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(106, 158, 184, 0.5) !important;
    }
}

/* Small mobile phones */
@media (max-width: 576px) {
    .btn-phone,
    .btn-consultation {
        padding: 8px 1px;
        font-size: 12px;
    }
    
    .btn-phone i,
    .btn-consultation i {
        margin-right: 5px;
    }
    
    .top-bar {
        padding: 8px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background:
        linear-gradient(#162a449f, #162a44ae),
        url("../images/home-bg.png"); /* change image path */

    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 80px 0 10px 0;
    height: 85vh !important;
    /* height: 800px !important; */
    position: relative;
}

.hero-section2 {
    background:
        linear-gradient(#162a44d2, #162a44d2),
        url("../images/Justice.jpg"); /* change image path */

    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 80px 0 100px 0;
    min-height: 600px;
    position: relative;
}



.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
}




.hero-subtitle {
    margin-bottom: 30px;
}


.availability-text {
    font-size: 18px;
    color: #d0d0d0;
    margin-bottom: 10px;
}

.availability-text1 {
    font-size: 20px;
    color: #e3e3e3;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 16px;
    color: #d0d0d0;
}

.cta-text strong {
    color: #ffffff;
}

/* Statistics Row */
.statistics-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #b8976a;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background-color: rgba(184, 151, 106, 0.3);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    max-width: 100%;
    width: 280px;
    height: auto;
}

.hero-image1 {
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    max-width: 100%;
    width: 250px;
    height: auto;
}

.image-caption {
    position: absolute;
    bottom: 20px;
    right: 60px;
    background-color: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

.image-caption p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    color: #333333;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.content-section .lead {
    font-size: 18px;
    color: #666666;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets and below */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .statistics-row {
        gap: 20px;
    }
    
    .nav-buttons {
        margin-top: 15px;
        flex-direction: column;
        width: 100%;
    }
    
    .btn-phone,
    .btn-consultation {
        width: 100%;
        margin: 5px 0;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
}


.aas1{
    display: flex ;
    justify-content: center;
    align-items: start;
    flex-direction: column;
margin-top: 100px;
}

/* Mobile devices */
@media (max-width: 768px) {

    .hero-image {
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        max-width: 100%;
        width: 200px !important;
        height: auto;
    }


    .hero-section {
    height: 800px !important;
         background:
        linear-gradient(#162a4475, #162a4487),
        url("../images/homebg-mob.jpg"); /* change image path */
        background-size: cover !important;
        background-position: center !important;
    }

    .aas1{
    display: flex ;
    justify-content: center;
    align-items: center !important;
    margin-top: 0px !important;
}

  .btn-directions1 {
   
    display: flex;              /* change from inline-flex */
   /* center horizontally */
    justify-content: center !important;
    align-items: center !important;

  }



      .hero-section2 {

         background:
        linear-gradient(#162a44c5, #162a44c8),
        url("../images/attorney-mob.jpg"); /* change image path */
        background-size: cover !important;
        background-position: center !important;
    }
    
    .hero-title {
       
         font-size: 28px;
        letter-spacing: 1px;
        text-align: center;
    }

      .availability-text1 {
    font-size: 21px;
    color: #e3e3e3;
    text-align: center;
}
    
    .statistics-row {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .content-section h2 {
        font-size: 32px;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        text-align: center;
    }




    .logo-text {
        font-size: 22px;
        padding: 6px 12px;
    }
    
    .top-bar {
        padding: 8px 0;
    }
    
    .top-link {
        font-size: 12px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
    color: #b8976a;
}

.bg-gold {
    background-color: #b8976a;
}

.text-navy {
    color: #1e3a5f;
}

.bg-navy {
    background-color: #1e3a5f;
}

/* Practice Areas - Modern Professional Design */
.practice-areas-modern {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}



.practice-areas-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.practice-areas-modern .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b7966a 0%, #b7966a 100%);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #b8c5d6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.practice-card {
    background: #152943;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #234168 0%, #244168 100%);
    transform: scaleX(1);              /* always visible */
    transform-origin: left;
}

/* Hover effects stay only for the card */
.practice-card:hover {
    transform: translateY(-10px);
    background: #1b3254;
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}


/* Card Icon */
.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b7966a 0%, #b7966a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    transition: all 0.4s ease;
}

.practice-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.5);
}

.card-icon i {
    font-size: 36px;
    color: #0d1820;
}

/* Card Title */
.card-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.card-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #347a8b 0%, #317181 100%);
    margin-bottom: 25px;
    border-radius: 2px;
}

/* Practice Links */
.practice-links {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.practice-links li {
    margin-bottom: 16px;
}

.practice-links li a {
    display: flex;
    align-items: center;
    color: #b8c5d6;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.practice-links li a i {
    font-size: 12px;
    margin-right: 12px;
    color: #49a4bb;
    transition: all 0.3s ease;
}

.practice-links li a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.practice-links li a:hover i {
    margin-right: 18px;
    color: #285e6b;
}

/* Card Footer Link */
.card-footer-link {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}




/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .practice-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .practice-areas-modern {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .practice-card {
        padding: 30px 25px;
    }
    
    .card-title {
        font-size: 22px;
    }
}

/* Contact Section - Professional Modern Design */
.contact-modern {
    background: white;
    padding: 100px 0;
    position: relative;
}

.contact-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 208, 63, 0.05) 0%, transparent 50%);
}

.contact-modern .container {
    position: relative;
    z-index: 1;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background:
        linear-gradient(rgba(3, 3, 3, 0.388), rgba(3, 3, 3, 0.371)),
        url("../images/contactbg.jfif"); /* change path */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.contact-header {
    margin-bottom: 50px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}



.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ededed;
}

/* Contact Details List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: 
#152842;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.contact-icon i {
    font-size: 20px;
    color: #f0f0f0;
}

.contact-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content p,
.contact-content a {
    font-size: 15px;
    color: #e8e8e8;
    line-height: 1.6;
    margin: 0;
}

.contact-content a {
    text-decoration: none;
    transition: color 0.3s ease;
}



.location-note {
    font-size: 13px !important;
    font-style: italic;
    color: #e5e5e5 !important;
    margin-top: 10px !important;
}

/* Social Section */
.social-section {
    margin-bottom: 20px;
}

.social-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
}

.social-btn.facebook {
    background: #3b5998;
}



.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #b7966a;
    color: #b7966a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: linear-gradient(135deg, #b7966a 0%, #b7966a 100%);
    color: #0d1820;
    border-color: transparent;
    transform: translateX(5px);
}



.btn-directions1 {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    border: 3px solid 
#f8f8f8;
    color: #ffffff;
    text-decoration: none;
  
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-directions1:hover {
 background: linear-gradient(180deg, #2d555f84 0%, #0c475659 100%);
    color: #ffffff;
    border: 3px solid 
#f8f8f8;
    transform: translateX(5px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
   background:
        linear-gradient(rgba(3, 3, 3, 0.388), rgba(3, 3, 3, 0.371)),
        url("../images/contactbg.jfif"); /* change path */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.form-header {
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: #d9d9da;
}

/* Modern Form Styles */
.form-group-modern {
    position: relative;
    margin-bottom: 35px;
}

.form-control-modern {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-bottom-color: #f3f3f3;
}

.form-control-modern:focus + .form-label-modern,
.form-control-modern:not(:placeholder-shown) + .form-label-modern {
    top: -20px;
    font-size: 12px;
    color: #fefefe;
}

.form-label-modern {
    position: absolute;
    top: 15px;
    left: 0;
    color: #ffffff;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.required-star {
    color: #ffffff;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    transition: width 0.4s ease;
}

.form-control-modern:focus ~ .form-border {
    width: 100%;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 120px;
}

/* Form Footer */
.form-footer {
    margin-top: 40px;
    text-align: center;
}

.btn-submit-modern {
    background: #152842;
    color: #f1f1f1;
    border: none;
    padding: 16px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 193, 195, 0.6);
}

.btn-submit-modern:active {
    transform: translateY(-1px);
}

.btn-submit-modern i {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover i {
    transform: translateX(5px);
}

.privacy-note {
    font-size: 13px;
    color: #8a9ba8;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: #4caf50;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-wrapper {
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-modern {
        padding: 60px 0;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .form-header h3 {
        font-size: 26px;
    }
    
    .btn-submit-modern {
        width: 100%;
        justify-content: center;
    }
}

/* optional */
.payment-box {
    border: 2px solid #ffc107;
}

.custom-link {
  color: white;
  text-decoration: none;
}

.custom-link:hover {
  color: #378497;
  text-decoration: underline;   /* optional */
}


/* Footer Modern Styles */
.footer-modern {
    background: 
#152943;
    color: #ffffff;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, 
#152943 50%, transparent 100%);
}

/* Footer Top - Navigation Links */
.footer-top {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: 
#152943;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: 
#0095b2;
}

.footer-nav-link:hover::after {
    width: 80%;
}

.nav-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Footer Bottom - Logo and Information */
.footer-bottom {
    padding: 60px 0 40px;
}

/* Footer Brand - Logo and Info */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 30px;
    position: relative;
}

.logo-image {
    max-width: 400px;
    height: auto;
    display: block;
}

/* Logo Placeholder (Remove when you add real logo) */
.logo-placeholder {
    background: linear-gradient(135deg, 
#152943 0%, 
#152943 100%);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #0a3d4a;
    letter-spacing: 2px;
}

/* Footer Info */
.footer-info {
    margin-top: 25px;
}

.firm-name {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.info-block {
    margin-bottom: 18px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #b8c5d6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-block i {
    color: 
#ffffff;
    font-size: 16px;
    margin-top: 3px;
    min-width: 16px;
}

.info-block a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: 
#152943;
}

.info-block strong {
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

/* Footer Right Side */
.footer-right {
    padding-left: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, 
#009cbb 0%, 
#0092af 100%);
    border-radius: 2px;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.quick-links li a i {
    font-size: 10px;
    color: 
#0099b7;
    transition: all 0.3s ease;
}

.quick-links li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.quick-links li a:hover i {
    color: 
#00a3c4;
}

/* Social Links Footer */
.social-links-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-footer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
#152943 0%, 
#1d375a 100%);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.social-link-footer i {
    position: relative;
    z-index: 1;
}

.social-link-footer.facebook {
    background: #3b5998;
}




.social-link-footer:hover::before {
    transform: scale(1);
}

.social-link-footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link-footer:hover i {
    color: #ffffff;
}

/* Footer Copyright */
.footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    text-align: center;
    font-size: 16px;
    color: #b8c4cd;
    margin: 0;
}

.footer-copyright p {
    text-align: center;
}


.copyright-text .web-link {
    color: #b7966a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-text .web-link:hover {
    color: #b7966a;
}

/* ========== DROPDOWN STYLES (NEW) ========== */

/* Footer Navigation Item Container */
.footer-nav-item {
    position: relative;
    display: inline-block;
}

/* Footer Dropdown Container */
.footer-dropdown {
    position: relative;
}

/* Footer Dropdown Menu */
.footer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #1a3942 0%, #0a2830 100%);
    min-width: 280px;
    padding: 12px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid rgba(183, 150, 106, 0.2);
}

/* Show dropdown on hover */
.footer-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

/* Footer Dropdown Items */
.footer-dropdown-item {
    display: block;
    padding: 12px 25px;
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-dropdown-item:hover {
    background: rgba(183, 150, 106, 0.1);
    color: 
#00a7c9;
    border-left-color: 
#0088a3;
    padding-left: 30px;
}

/* ========== END DROPDOWN STYLES ========== */

/* Responsive Design */
@media (max-width: 992px) {
    .footer-navigation {
        font-size: 13px;
    }
    
    .footer-nav-link {
        font-size: 13px;
        padding: 6px 8px;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-right {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .footer-navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .nav-separator {
        display: none;
    }
    
    .footer-nav-link {
        width: 100%;
        padding: 10px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-nav-item {
        width: 100%;
    }
    
    /* .footer-dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        margin-left: 20px;
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        transition: all 0.4s ease;
    } */
    
    .footer-dropdown:hover .footer-dropdown-menu,
    .footer-dropdown.active .footer-dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 8px 0;
        margin-top: 8px;
    }
    
    .footer-dropdown-item {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 40px 0 30px;
    }
    
    .firm-name {
        font-size: 18px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .info-block p {
        font-size: 14px;
         justify-content: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .quick-links li a {
        justify-content: center;
    }
    
    .social-links-footer {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 20px;
    }
    
    .footer-copyright {
        padding: 20px 0;
    }
    
    .copyright-text {
        font-size: 12px;
        line-height: 1.6;
    }
}

.bg-black {
    background-color: #000;
}

.info-box {
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(58, 58, 58, 0.3);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.bg-black {
    background-color: #000;
}

.quote-box {
    background-color: #152943;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 70px 90px;
    border-radius: 14px;
    max-width: 1600px;
    width: 100%;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 40px;
    font-size: 100px;
    color: rgba(255, 255, 255, 0.15);
    font-family: serif;
    line-height: 1;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #f5f5f5;
    margin: 0;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .quote-text {
        font-size: 1rem;
        line-height: 1.6;
        padding: 10px 15px;
        max-width: 100%;
    }

    .quote-box {
        padding: 0 5px;
    }
}



/* Common styles */
.footer-nav-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-arrow {
    background: none;
    border: none;
    color: inherit;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
}

.footer-dropdown-menu {
    display: none;
    margin-top: 5px;
    padding-left: 10px;
    position: absolute; /* needed for desktop hover */
    background: #111;   /* change to match your footer bg */
    z-index: 1000;
}

.footer-dropdown.active .footer-dropdown-menu {
    display: block;
}

.footer-dropdown.active .footer-arrow i {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* Desktop hover: open dropdown */
@media (min-width: 769px) {
    .footer-dropdown {
        position: relative;
    }
    .footer-dropdown:hover .footer-dropdown-menu {
        display: block;
    }

    /* Arrow rotation on hover */
    .footer-dropdown:hover .footer-arrow i {
        transform: rotate(180deg);
    }
}
