: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 Section */
.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.80),
        rgba(28, 28, 28, 0.70)
    );
    z-index: 1;
}

.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);
}

.hero-visual-img {
    z-index: 3;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-img img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-bg-svg {
    position: absolute;
    top: 30px;
    right: 30px;
    opacity: 0.12;
    z-index: 1;
}

@media (max-width: 991px) {
    .nwoko-hero-mini {
        height: 320px;
    }
    .hero-visual-img img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .nwoko-hero-mini {
        height: auto;
        padding: 60px 0 30px 0;
    }
    .nwoko-hero-mini .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hero-visual-img {
        margin-top: 20px;
        justify-content: flex-start;
    }
    .hero-visual-img img {
        max-width: 180px;
    }
    .hero-bg-svg {
        top: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    .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);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 70px 0;
    background: var(--pure-white);
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.separator-line {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.separator-icon {
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(191, 160, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--accent-gold);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 70px 0;
    margin-inline: auto;
    width: 90%;
    /* border: solid red 1px; */
    background: var(--off-white);
}

.form-content {
    padding-inline: 50px;
    /* border: solid blue 1px; */
}

.form-content h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(191, 160, 92, 0.1);
}

.submit-btn {
    background: var(--accent-gold);
    color: var(--pure-white);
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
}

/* Map Styles */
.map-wrapper {
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background: var(--primary-dark);
    color: var(--pure-white);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-gold);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 8px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-3px);
}

/* 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(--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(--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;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {

    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .map-wrapper {
        min-height: 400px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nwoko-contact-info , .nwoko-hours{
        margin-top: 6%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
} 

@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);
    }
}