:root {
    /* Refined Corporate Color Palette */
    --primary-dark: #111111;     /* Softer black for main elements */
    --secondary-dark: #1c1c1c;   /* Slightly lighter black for depth */
    --dark-gray: #222222;        /* Dark gray for subtle variations */
    --accent-gold: #BFA05C;      /* More sophisticated gold */
    --accent-gold-dark: #A68A4B; /* Darker gold for hover states */
    --accent-gold-light: #D4B876;/* Lighter gold for highlights */
    --off-white: #F9F9F9;        /* Slightly warm white */
    --pure-white: #FFFFFF;       /* Pure white for contrast */
    --text-dark: #2A2A2A;        /* Soft black for text */
    --text-light: #E8E8E8;       /* Light gray for text on dark */
    
    /* Gradients */
    --gradient-primary: linear-gradient(145deg, var(--primary-dark), #1a1a1a);
    --gradient-accent: linear-gradient(90deg, #b3945f, var(--accent-gold));
    
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Global Styles */
body {
    /* font-family: var(--font-secondary); */
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Navbar Styling */
.navbar {
    padding: 5px 0;
    transition: all 0.4s ease;
    margin-bottom: 0;
    /* border: solid green 1px; */
}

.navbar-scrolled {
    padding: 5px 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px 0;
}

.logo-img {
    width: 80px !important;
    height: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--pure-white);
}

.brand-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    line-height: 1;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 15px !important;
    position: relative;
    color: var(--pure-white) !important;
    margin: 0 5px;
}

.navbar-nav {
    margin-left: auto;
    align-items: center;
    /* border: solid red 1px; */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    min-width: 180px;
    display: none;
    position: absolute;
}

.dropdown-item {
    color: var(--text-light);
    padding: 8px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.dropdown-item:hover {
    background: rgba(191, 160, 92, 0.1);
    color: var(--accent-gold);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: var(--primary-light);
    background: var(--accent-gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../gradient-suit-background_23-2151054631.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-top: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg,
        rgba(17, 17, 17, 0.70),
        rgba(28, 28, 28, 0.65)
    );
    z-index: 2;
}

.hero-section {
    width: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 10px;
    max-width: 1200px;
    margin: 0 auto;
    /* border: solid red 1px; */
}

.hero-container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    margin: 0 auto;
    /* border: solid red 1px; */
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* border: solid 1px red; */
}

.roww {
    width: 100%;
    display: flex;
    justify-content: center;
}

.col-lg-8 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

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

.welcome-text {
    color: var(--accent-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.main-title {
    font-size: 5rem; /* Increased size */
    color: var(--primary-light);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.separator-line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.separator-icon {
    font-size: 1.8rem;
}

.lead-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: var(--accent-gold);
    color: var(--primary-light);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.primary-btn:hover {
    background: #b38d3a;
    transform: translateY(-2px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .main-title {
        font-size: 4rem;
    }
    
    .lead-text {
        font-size: 1.2rem;
    }

    .hero-content{
        width: 100%;
    }

    .welcome-text{
        margin-top: 5%;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .cta-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Introduction Section */
.introduce-section {
    padding: 100px 0;
    background: var(--pure-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1200px;
    margin: 0 auto;
    /* border: solid red 1px; */
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    color: var(--text-dark);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0;
    font-family: 'Playfair Display', serif;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.separator-line {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.experience-badge {
    background: url('../images/interior-design-neoclassical-style-with-furnishings-decor.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(17, 17, 17, 0.75) 0%,
        rgba(28, 28, 28, 0.80) 100%
    );
    z-index: 1;
}

.badge-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.years {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Playfair Display', serif;
}

.text {
    font-size: 16px;
    color: #fff;
    margin-left: 15px;
    font-family: 'Poppins', sans-serif;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item i {
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-item .number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--pure-white);
    margin: 5px 0;
}

.stat-item .label {
    color: var(--text-light);
    font-size: 14px;
}

.intro-content {
    padding-left: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1); /* Light gray border */
}

.intro-text {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.highlight-number {
    color: #C4A052;
    font-weight: 600;
}

.service-highlights {
    display: grid;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.icon-wrapper i {
    color: var(--accent-gold);
    font-size: 20px;
}

.highlight-content h4 {
    color: var(--text-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.highlight-content p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
    .intro-content {
        padding-left: 0;
        margin-top: 40px;
        border-left: none; /* Remove border on mobile */
    }

    .container{
        width: 100%;
    }

    .about-container{
        width: 100%;
    }
}

/* Achievement Section Fixes */
.nwoko-achievement-section {
    padding: 70px 0;
    background: var(--pure-white);
}

.nwoko-section-header {
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    margin-left: 0;
}

.nwoko-section-subtitle {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.nwoko-section-title {
    color: var(--text-dark);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.nwoko-title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    margin: 25px 0;
}

.nwoko-separator-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

.nwoko-achievements-grid {
    display: flex;
    gap: 25px;
    padding: 20px;
    overflow-x: auto;  /* Enable horizontal scroll */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
    margin: 0 -20px;  /* Compensate for container padding */
}

.nwoko-achievements-grid::-webkit-scrollbar {
    display: none;  /* Hide scrollbar for Chrome/Safari */
}

.nwoko-achievement-card {
    min-width: 300px;  /* Fixed minimum width */
    flex: 0 0 auto;
    background: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 5px 5px 0 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nwoko-icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.nwoko-achievement-number {
    color: var(--text-dark);
    font-size: 3.2rem;
    font-weight: 700;
    margin: 15px 0;
    background: linear-gradient(45deg, var(--text-dark), var(--dark-gray));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nwoko-achievement-text {
    color: #666666;
    font-size: 1.1rem;
    font-weight: 500;
}

.nwoko-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
}

/* Footer Styles */
.footer-container {
    padding-inline: 20px;
}
.nwoko-footer {
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.nwoko-footer-top {
    padding: 80px 0 60px;
}

.nwoko-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.nwoko-footer-logo h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.nwoko-footer-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.nwoko-social-links {
    display: flex;
    gap: 15px;
}

.nwoko-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nwoko-footer-title {
    color: var(--pure-white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.nwoko-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.nwoko-contact-grid {
    display: grid;
    gap: 20px;
}

.nwoko-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.nwoko-contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.nwoko-contact-content .nwoko-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.nwoko-contact-content p {
    margin: 0;
    color: var(--text-light);
}

.nwoko-hours-grid {
    display: grid;
    gap: 15px;
}

.nwoko-hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nwoko-day {
    color: rgba(255, 255, 255, 0.8);
}

.nwoko-time {
    color: var(--accent-gold);
}

.nwoko-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 12px 25px;
    background: var(--accent-gold);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nwoko-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nwoko-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nwoko-legal-links {
    display: flex;
    gap: 20px;
}

.nwoko-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Hover Effects */
.nwoko-achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nwoko-achievement-card:hover .nwoko-icon-circle {
    background: var(--accent-gold);
    color: var(--pure-white);
}

.nwoko-social-link:hover {
    background: var(--accent-gold);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.nwoko-cta-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.nwoko-legal-links a:hover {
    color: var(--accent-gold);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .nwoko-achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nwoko-footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 768px) {

    .nwoko-contact-info , .nwoko-hours{
        margin-top: 6%;
    }

    .nwoko-achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .nwoko-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .nwoko-legal-links {
        justify-content: center;
    }
}

.nwoko-advocates-section {
    padding: 100px 0;
    background: var(--off-white);
}

.nwoko-advocates-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 0;
}

.header-content {
    max-width: 500px;
}

.nwoko-section-subtitle {
    display: block;
    margin-bottom: 15px;
}

.nwoko-section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.nwoko-title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.separator-line {
    width: 60px;
    height: 1px;
}

.nwoko-view-all {
    padding: 12px 24px;
    margin-top: 10px;  /* Align with title */
}

.nwoko-advocates-grid {
    display: flex;
    gap: 25px;
    padding: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
}

.nwoko-advocates-grid::-webkit-scrollbar {
    display: none;
}

.nwoko-advocate-card {
    min-width: 320px;  /* Fixed minimum width */
    flex: 0 0 auto;
    border-radius: 5px 5px 0 0;
}

.nwoko-advocate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-inner {
    position: relative;
}

.advocate-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.advocate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.7)
    );
}

.advocate-content {
    padding: 25px;
    background: var(--pure-white);
}

.advocate-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.advocate-info .position {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 8px;
}

.advocate-info .expertise {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
}

.advocate-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(191, 160, 92, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-gold);
    color: var(--pure-white);
}

.profile-link {
    margin-left: auto;
    color: var(--accent-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile-link:hover {
    color: var(--accent-gold-dark);
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .nwoko-advocates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nwoko-advocates-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

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

/* Text on Dark Backgrounds */
.experience-badge .stat-item .number,
.experience-badge .text,
.experience-badge .stat-item .label {
    color: var(--pure-white);
}

/* Text on Light Backgrounds */
.intro-text,
.highlight-content p,
.expertise,
.nwoko-achievement-text {
    color: #666666;  /* Medium gray for better readability */
}

/* Icons on Dark Backgrounds */
.experience-badge .stat-item i,
.icon-wrapper i {
    color: var(--accent-gold);
}

/* Achievement Numbers */
.nwoko-achievement-number {
    color: var(--text-dark);  /* Fallback */
    background: linear-gradient(45deg, var(--text-dark), var(--dark-gray));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Text */
.nwoko-footer {
    background: var(--primary-dark);
}

.nwoko-footer-title,
.nwoko-footer h4,
.nwoko-footer .nwoko-contact-content span {
    color: var(--pure-white);
}

.nwoko-footer p,
.nwoko-footer .nwoko-contact-content p {
    color: var(--text-light);
}

/* Navigation Text */
.nav-link {
    color: var(--pure-white) !important;
}

/* Section Headers */
.section-title {
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--accent-gold);
}

/* Card Content */
.advocate-info h4 {
    color: var(--text-dark);
}

.position {
    color: var(--accent-gold);
}

.expertise {
    color: #666666;
}

/* Contact Links */
.contact-link {
    color: var(--text-dark);
    background: var(--off-white);
}

.contact-link:hover {
    color: var(--pure-white);
    background: var(--accent-gold);
}

/* Hero Section Text */
.brand-name,
.hero-title,
.main-title {
    color: var(--pure-white);
}

.brand-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

/* Ensure navbar brand stays white even when scrolled */
.navbar-brand,
.navbar.scrolled .navbar-brand {
    color: var(--pure-white);
    width: 35%;
}

.office-map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Map Section Styles */
.nwoko-map-section {
    padding: 70px 0;
    background: var(--pure-white);
    color: var(--text-dark);
}

.map-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    margin-left: 0;
}

.map-header .nwoko-section-subtitle {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.map-header .nwoko-section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 36px;
}

.office-map {
    height: 400px;
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MapBox Popup Customization */
.mapboxgl-popup {
    max-width: 300px;
}

.map-popup {
    padding: 10px;
    text-align: center;
}

.map-popup h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.map-popup p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .office-map {
        height: 300px;
        width: 95%;
    }
    
    .map-header .nwoko-section-title {
        font-size: 28px;
    }
}

/* Add scroll indicators */
.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-gold);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

.scroll-indicator:hover {
    opacity: 1;
    background: var(--accent-gold-dark);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .nwoko-achievement-card,
    .nwoko-advocate-card {
        min-width: 280px;  /* Slightly smaller on mobile */
    }
}

/* Practice Areas Section */
.nwoko-practice-areas {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%); */
    min-height: 100vh;
    transition: background-image 1s ease-in-out;
}

.nwoko-practice-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

.practice-areas-wrapper {
    /* max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px; */
    position: relative;
    z-index: 2;
    justify-content: center;
    padding-left: 20px;
    padding-right: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-header {
    margin-bottom: 80px;
    color: var(--pure-white);
    max-width: 600px;
}

.practice-header .section-subtitle {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.practice-header .section-title {
    color: var(--pure-white);
    font-size: 4.0rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.practice-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.practice-showcase-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.practice-showcase {
    display: flex;
    gap: 25px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 20px; /* Space for potential scrollbar */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.practice-showcase::-webkit-scrollbar {
    display: none;
}

/* Preserve existing styles */
.practice-showcase:hover {
    cursor: grab;
}

.practice-showcase:active {
    cursor: grabbing;
}

.practice-card {
    min-width: 300px;
    height: 320px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: opacity 0.4s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: var(--pure-white);
    z-index: 2;
}

.card-location {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.practice-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--pure-white);
    line-height: 1.2;
}

.practice-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.practice-link {
    color: var(--pure-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.practice-link i {
    transition: transform 0.3s ease;
}

.practice-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    align-items: center;
}

.practice-arrows {
    display: flex;
    gap: 15px;
}

.practice-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.practice-arrow:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.practice-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    flex-grow: 1;
    margin: 0 40px;
    position: relative;
    border-radius: 2px;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gold);
    width: 0;
    transition: width 0.6s ease;
    border-radius: 2px;
}

.practice-counter {
    color: var(--pure-white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.practice-counter span {
    opacity: 0.9;
}

/* Card Hover Effects */
.practice-card:hover .card-image {
    transform: scale(1.05);
}

.practice-card:hover .card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.practice-card:hover .practice-link {
    opacity: 1;
}

.practice-card:hover .practice-link i {
    transform: translateX(5px);
}

.practice-card.active {
    transform: scale(1.05);
}

.practice-card.active .card-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .practice-areas-wrapper {
        padding: 0 40px;
    }

    .practice-header .section-title {
        font-size: 3.8rem;
    }

    .practice-card {
        min-width: 280px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .practice-areas-wrapper {
        padding: 0 20px;
    }

    .practice-header .section-title {
        font-size: 3rem;
    }

    .practice-card {
        min-width: 260px;
        height: 280px;
    }

    .card-content {
        padding: 20px;
    }

    .practice-card h3 {
        font-size: 1.4rem;
    }
}

/* Contact Form Section */
.nwoko-contact-section {
    padding: 100px 0;
    background: var(--pure-white);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-header .section-subtitle {
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.contact-header .section-title {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-intro {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.method-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--pure-white);
}

.method-details h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.method-details p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.business-hours {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.business-hours h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-item .day {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-item .time {
    color: var(--accent-gold);
}

.social-links {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-grid {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(191, 160, 92, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--pure-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(191, 160, 92, 0.1);
}

.nwoko-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid rgba(191, 160, 92, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(191, 160, 92, 0.1);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.nwoko-submit-btn {
    background: var(--accent-gold);
    color: var(--pure-white);
    padding: 16px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.nwoko-submit-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
}

.nwoko-submit-btn i {
    transition: transform 0.3s ease;
}

.nwoko-submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .social-links {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-header .section-title {
        font-size: 2.4rem;
    }

    .contact-info-column {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

/* Section Transitions */
.hero-wrapper,
.introduce-section,
.nwoko-practice-areas,
.nwoko-contact-section {
    position: relative;
    scroll-margin-top: 80px; /* Accounts for fixed navbar */
}

/* Section Spacing */
.hero-wrapper {
    margin-bottom: 0;
}

.introduce-section {
    padding: 100px 0;
    background: var(--pure-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nwoko-practice-areas {
    padding: 100px 0;
    background: var(--pure-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nwoko-contact-section {
    padding: 100px 0;
    background: var(--pure-white);
    position: relative;
}

/* Remove map section styles */
.nwoko-map-section {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .introduce-section,
    .nwoko-practice-areas,
    .nwoko-contact-section {
        padding: 70px 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navbar Mobile Styles */
    .navbar-brand {
        display: flex;
        align-items: center;
        margin-right: 0;
    }
    .navbar-toggler {
        display: block !important;
        margin-left: 10px;
        border: 1px solid var(--accent-gold);
        padding: 4px 8px;
    }
    .navbar-toggler:focus {
        box-shadow: none;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(191, 160, 92, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-collapse {
        background: var(--primary-dark);
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
    }
    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        position: static;
    }
    
    .dropdown-item {
        padding: 12px 0;
        margin: 0;
        color: var(--text-light);
    }
    
    .dropdown-item::before {
        display: none;
    }
    
    .dropdown-item:hover {
        padding-left: 0;
        background: transparent;
    }
    
    .dropdown-item.active {
        background: transparent;
    }
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--pure-white);
        padding: 10px 15px;
        opacity: 0.8;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
    }

    /* Hero Section Mobile Styles */
    .main-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .lead-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    .cta-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Practice Areas Mobile Styles */
    .practice-areas-wrapper {
        padding: 0 20px;
    }
    .practice-header .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .practice-card {
        min-width: 260px;
        height: 280px;
    }
    .card-content {
        padding: 20px;
    }
    .practice-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .practice-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Contact Section Mobile Styles */
    .contact-header .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .contact-intro {
        font-size: 1rem;
        line-height: 1.6;
    }
    .contact-info-column {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    .method-details h4 {
        font-size: 1.1rem;
    }
    .method-details p {
        font-size: 0.9rem;
    }

    /* Section Spacing */
    .introduce-section,
    .nwoko-practice-areas,
    .nwoko-contact-section {
        padding: 70px 0;
    }
}
