:root {
    --primary-dark: #111111;
    --secondary-dark: #1c1c1c;
    --accent-gold: #BFA05C;
    --accent-gold-dark: #A68A4B;
    --accent-gold-light: #D4B876;
    --off-white: #F9F9F9;
    --pure-white: #FFFFFF;
    --text-dark: #2A2A2A;
    --text-light: #E8E8E8;

     /* Fonts */
     --font-primary: 'Playfair Display', serif;
     --font-secondary: 'Poppins', sans-serif;
}

/* h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
} */


/* Hero Mini Section with Animation */
.nwoko-hero-mini {
    margin-top: 0;
    height: 500px;
    background: var(--primary-dark);
    background-image: url('../images/indoor-shot-two-successful-businessmen-having-meeting-modern-office-interior.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--pure-white);
    animation: fadeIn 1s ease-in-out;
    overflow: hidden;
}

.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.60)
    );
}

.hero-mini-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin-top: 60px;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.hero-mini-content h1 {
    animation: fadeIn 0.8s ease-out 0.2s;
    animation-fill-mode: both;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    animation: fadeIn 0.8s ease-out 0.4s;
    animation-fill-mode: both;
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--accent-gold);
}

.breadcrumb a {
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    color: var(--accent-gold);
    margin: 0 5px;
}

.breadcrumb .current {
    color: var(--accent-gold);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-pattern {
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%);
    z-index: 1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    position: relative;
    overflow: hidden;
    color: var(--pure-white);
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    opacity: 0.8;
}

.choose-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    backdrop-filter: blur(10px);
}

.choose-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(191, 160, 92, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    border: 1px solid rgba(191, 160, 92, 0.2);
}

.choose-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
    background: var(--accent-gold);
}

.choose-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.choose-card:hover .choose-icon i {
    color: var(--pure-white);
}

.choose-card h4 {
    color: var(--pure-white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.choose-card p {
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.7;
}

.card-pattern {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    opacity: 0.03;
    border-radius: 20px;
    transform: rotate(15deg);
    transition: all 0.4s ease;
}

.choose-card:hover .card-pattern {
    transform: rotate(30deg) scale(1.2);
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--pure-white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(191, 160, 92, 0.1);
}

.quote-icon {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 25px;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-title {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.testimonial-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, rgba(191, 160, 92, 0.1), transparent 70%);
    pointer-events: none;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-title {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gold);
    color: var(--pure-white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
    color: var(--pure-white);
}

.cta-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(191, 160, 92, 0.05) 100%);
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    
    .nwoko-hero-mini {
        height: 320px;
    }
    
    .hero-illustration {
        max-width: 300px;
        margin-top: 30px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .col-lg-4.text-lg-end {
        text-align: center !important;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .nwoko-contact-info , .nwoko-hours{
        margin-top: 6%;
    }

    .nwoko-hero-mini {
        height: auto;
        padding: 60px 0 30px 0;
    }

   
    .hero-description {
        font-size: 1rem;
    }

    .hero-illustration {
        max-width: 250px;
        margin: 30px auto 0;
    }

    .choose-card {
        padding: 30px 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        margin-right: 0;
    }
    .navbar-toggler {
        margin-left: 10px;
    }
    .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;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Practice Areas Section Styles */
.practice-areas-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-subtitle {
    color: var(--accent-gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    color: var(--text-dark);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: var(--accent-gold);
}

.separator-icon {
    font-size: 24px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.practice-card {
    background: linear-gradient(165deg, rgba(18, 18, 18, 0.95), rgba(28, 28, 28, 0.98));
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    min-height: 420px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.practice-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.practice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.practice-card:hover .practice-image img {
    transform: scale(1.05);
}

.practice-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.practice-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--pure-white);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.practice-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.practice-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(191, 160, 92, 0.1);
    color: var(--accent-gold);
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 160, 92, 0.2);
    margin-top: auto;
}

.practice-link:hover {
    background: var(--accent-gold);
    color: var(--pure-white);
    border-color: var(--accent-gold);
}

.practice-link i {
    transition: transform 0.3s ease;
}

.practice-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .practice-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .practice-card {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .practice-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .practice-card {
        min-height: 380px;
    }

    .practice-image {
        height: 180px;
    }
}

/* Practice Detail Page Styles */
.practice-detail-hero {
    height: 400px;
    background: linear-gradient(165deg, #1a1f2c, #2a2f3c);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    margin-top: 80px;
    overflow: hidden;
}

.practice-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
}

.practice-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(191, 160, 92, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--accent-gold);
    font-size: 2.8rem;
    border: 1px solid rgba(191, 160, 92, 0.2);
}

.practice-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: var(--accent-gold-light);
}

.practice-detail-content {
    padding: 80px 0;
    background: var(--pure-white);
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.content-block .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.expertise-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expertise-list i {
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-top: 5px;
}

.expertise-list h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.practice-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-block {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-block h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.services-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li,
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    transition: all 0.3s ease;
}

.services-list i {
    color: var(--accent-gold);
}

.cta-block {
    background: linear-gradient(165deg, #1a1f2c, #2a2f3c);
    color: var(--pure-white);
}

.cta-block h3 {
    color: var(--pure-white);
}

.cta-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gold);
    color: var(--pure-white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cta-button:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    color: var(--pure-white);
}

@media (max-width: 991px) {
    .practice-detail-hero {
        height: 350px;
    }

    .practice-title {
        font-size: 2.5rem;
    }

    .practice-sidebar {
        margin-top: 50px;
        position: static;
    }
}

@media (max-width: 768px) {
    .practice-detail-hero {
        height: 300px;
    }

    .practice-title {
        font-size: 2rem;
    }

    .practice-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .content-block h2 {
        font-size: 1.8rem;
    }
}

/* Footer Styles (Copied from index.css) */
.footer-container {
    position: relative;
    z-index: 4;
    width: 90%;
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.nwoko-footer {
    background: var(--primary-dark);
    color: var(--pure-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;
    font-family: var(--font-primary);
}

.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(--pure-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;
}

.nwoko-legal-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 991px) {
    .nwoko-footer-top {
        padding: 60px 0 40px;
    }
    .nwoko-copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .nwoko-legal-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }
    .nwoko-footer-top {
        padding: 40px 0 20px;
    }
    .nwoko-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .nwoko-legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width:400px){
    .hero-mini-content h1 {     
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 12px;
    }

    .hero-mini-content {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 100%;
        margin-top: 80px;
        animation: slideUp 0.8s ease-out;
        animation-fill-mode: both;
    }
    
    .breadcrumb {
        animation: fadeIn 0.8s ease-out 0.4s;
        animation-fill-mode: both;
        display: flex;
        justify-content: center;
        gap: 6px;
        color: var(--accent-gold);
    }
}
