/* 
 * NCGW Flooring - Main Stylesheet
 * Basic styling - simple, functional, professional
 */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #1a3a5c;
    color: #fff;
    padding: 15px 0;
}

header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #f4a300;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

nav ul li a:hover {
    color: #f4a300;
}

/* Hero Section */
.splash {
    background-color: #2c5282;
    background-image: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.splash h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.splash p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.link-btn {
    display: inline-block;
    background-color: #f4a300;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(244, 163, 0, 0.25);
}

.link-btn:hover {
    background-color: #e09500;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(244, 163, 0, 0.35);
    text-decoration: none;
}

.link-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(244, 163, 0, 0.2);
}

/* Sections */
.block {
    padding: 50px 0;
}

.block-grey {
    background-color: #f5f5f5;
}

.block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3a5c;
}

.block-center {
    text-align: center;
}

/* Services Grid */
.ncgw-services-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-box {
    flex: 1 1 300px;
    margin: 15px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.service-box .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a3a5c;
}

.service-box p {
    color: #666;
    font-size: 14px;
}

/* Why Choose Us */
.features-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.features-list li:before {
    content: "✓ ";
    color: #28a745;
    font-weight: bold;
}

/* Testimonial */
.testimonial {
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #f4a300;
    margin: 30px 0;
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: bold;
    color: #666;
}

/* =====================================================
   UNIQUE CONTACT PAGE - Split Timeline Layout
   ===================================================== */

/* Contact Hero - Angled Split Background */
.ncgw-contact-hero {
    position: relative;
    background: linear-gradient(135deg, #1a3a5c 0%, #1a3a5c 50%, #c9a86c 50%, #c9a86c 100%);
    padding: 80px 0;
    overflow: hidden;
}

.ncgw-contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.1' fill='none'/%3E%3C/svg%3E");
    pointer-events: none;
}

.ncgw-contact-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ncgw-contact-hero-left h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ncgw-contact-hero-left p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.ncgw-contact-hero-right {
    text-align: right;
}

.ncgw-quick-call {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.ncgw-quick-call-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncgw-quick-call-icon img {
    width: 24px;
    height: 24px;
}

.ncgw-quick-call-text {
    text-align: left;
}

.ncgw-quick-call-text span {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.ncgw-quick-call-text a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

/* Main Contact Section */
.ncgw-contact-main {
    padding: 60px 0;
    background: #f8f9fa;
}

.ncgw-contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

/* Form Panel */
.ncgw-contact-form-panel {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.ncgw-contact-form-panel h2 {
    font-size: 1.5rem;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.ncgw-contact-form-panel > p {
    color: #666;
    margin-bottom: 30px;
}

/* Floating Label Form */
.ncgw-float-group {
    position: relative;
    margin-bottom: 24px;
}

.ncgw-float-group input,
.ncgw-float-group textarea,
.ncgw-float-group select {
    width: 100%;
    padding: 16px 14px 8px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.25s ease;
    font-family: inherit;
}

.ncgw-float-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #fff;
    padding: 0 4px;
}

.ncgw-float-group textarea ~ label {
    top: 20px;
    transform: none;
}

.ncgw-float-group input:focus,
.ncgw-float-group textarea:focus,
.ncgw-float-group select:focus {
    border-color: #f4a300;
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.1);
}

.ncgw-float-group input:focus ~ label,
.ncgw-float-group input:not(:placeholder-shown) ~ label,
.ncgw-float-group textarea:focus ~ label,
.ncgw-float-group textarea:not(:placeholder-shown) ~ label,
.ncgw-float-group select:focus ~ label,
.ncgw-float-group select:valid ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #f4a300;
    font-weight: 600;
}

.ncgw-float-group textarea {
    min-height: 120px;
    resize: vertical;
}

.ncgw-float-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.ncgw-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ncgw-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.ncgw-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #f4a300;
    margin-top: 2px;
}

.ncgw-checkbox-group label {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.ncgw-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f4a300 0%, #e09500 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ncgw-submit-btn:hover {
    background: linear-gradient(135deg, #e09500 0%, #cc8500 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 163, 0, 0.35);
}

.ncgw-submit-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Info Timeline Panel */
.ncgw-contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ncgw-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 4px solid #c9a86c;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ncgw-info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ncgw-info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.ncgw-info-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ncgw-info-card-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.ncgw-info-card h3 {
    font-size: 1rem;
    color: #1a3a5c;
    margin: 0;
}

.ncgw-info-card-body {
    padding-left: 58px;
}

.ncgw-info-card-body p {
    margin: 0 0 4px;
    color: #555;
    font-size: 0.95rem;
}

.ncgw-info-card-body a {
    color: #1a3a5c;
    font-weight: 600;
    font-size: 1.1rem;
}

.ncgw-info-card-body .ncgw-hours {
    display: grid;
    grid-template-columns: auto auto;
    gap: 4px 20px;
    font-size: 0.9rem;
}

.ncgw-hours span:nth-child(odd) {
    color: #888;
}

.ncgw-hours span:nth-child(even) {
    font-weight: 500;
}

/* WhatsApp Quick Contact */
.ncgw-whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    border-left: none;
}

.ncgw-whatsapp-card:hover {
    transform: translateX(4px) translateY(-2px);
}

.ncgw-whatsapp-card .ncgw-info-card-icon {
    background: rgba(255,255,255,0.2);
}

.ncgw-whatsapp-card h3 {
    color: #fff;
}

.ncgw-whatsapp-card .ncgw-info-card-body p {
    color: rgba(255,255,255,0.9);
}

.ncgw-whatsapp-card .ncgw-info-card-body a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.ncgw-whatsapp-card .ncgw-info-card-body a:hover {
    background: rgba(255,255,255,0.3);
}

/* Consultation Steps */
.ncgw-steps-section {
    padding: 60px 0;
    background: #fff;
}

.ncgw-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ncgw-step {
    text-align: center;
    position: relative;
}

.ncgw-step::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 60%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #c9a86c, transparent);
}

.ncgw-step:last-child::after {
    display: none;
}

.ncgw-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(26, 58, 92, 0.3);
}

.ncgw-step h4 {
    color: #1a3a5c;
    font-size: 1rem;
    margin-bottom: 8px;
}

.ncgw-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Map Section */
.ncgw-map-section {
    padding: 0 0 60px;
    background: #fff;
}

.ncgw-map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.ncgw-map-container iframe {
    display: block;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .ncgw-contact-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .ncgw-contact-hero-right {
        text-align: center;
    }
    
    .ncgw-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ncgw-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ncgw-step::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .ncgw-contact-hero {
        background: #1a3a5c;
        padding: 50px 0;
    }
    
    .ncgw-contact-hero-left h1 {
        font-size: 1.75rem;
    }
    
    .ncgw-form-row {
        grid-template-columns: 1fr;
    }
    
    .ncgw-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .ncgw-contact-form-panel {
        padding: 25px;
    }
}

/* Legacy Contact Styles (kept for compatibility) */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-box {
    flex: 1 1 300px;
    margin: 15px;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: center;
}

.contact-box h3 {
    color: #1a3a5c;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-box p {
    margin-bottom: 5px;
    color: #555;
}

.contact-icon {
    margin-bottom: 15px;
}

.contact-icon img {
    display: inline-block;
}

/* Contact Form */
.ncgw-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.ncgw-form-group {
    margin-bottom: 20px;
}

.ncgw-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.ncgw-form-group input,
.ncgw-form-group textarea,
.ncgw-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.ncgw-form-group textarea {
    height: 150px;
    resize: vertical;
}

.ncgw-form-group input:focus,
.ncgw-form-group textarea:focus {
    border-color: #1a3a5c;
    outline: none;
}

/* About Page */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
}

.about-text {
    flex: 1 1 400px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    flex: 1 1 300px;
    text-align: center;
}

/* Services Page Details */
.service-detail {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h3 {
    color: #1a3a5c;
    font-size: 22px;
    margin-bottom: 15px;
}

.service-detail ul {
    margin: 15px 0;
    padding-left: 25px;
}

.service-detail li {
    margin-bottom: 8px;
}

/* Pricing Table - Basic */
.price-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-top: 15px;
}

.price-info strong {
    color: #1a3a5c;
}

/* Areas We Cover */
.areas-list {
    column-count: 3;
    column-gap: 30px;
    list-style: none;
    padding: 0;
}

.areas-list li {
    padding: 5px 0;
}

/* Footer */
footer {
    background-color: #1a3a5c;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1 1 250px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f4a300;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
}

.footer-section a:hover {
    color: #fff;
}

.ncgw-footer-bottom {
    border-top: 1px solid #2c5282;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #999;
}

.ncgw-footer-bottom a {
    color: #ccc;
}

/* Payment Methods */
.ncgw-payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.ncgw-payment-methods span {
    font-size: 13px;
    color: #999;
}

.ncgw-card-icon {
    width: 48px;
    height: 32px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Legal Pages */
.ncgw-legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.ncgw-legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.ncgw-legal-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1a3a5c;
}

.ncgw-legal-content p {
    margin-bottom: 15px;
}

.ncgw-legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.ncgw-legal-content li {
    margin-bottom: 8px;
}

/* Page Header */
.ncgw-page-header {
    background-color: #1a3a5c;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.ncgw-page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.ncgw-page-header p {
    font-size: 16px;
    color: #ccc;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background-color: #f5f5f5;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb span {
    color: #333;
}

/* CTA Banner */
.quote-box {
    background-color: #f4a300;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.quote-box h2 {
    color: #fff;
    margin-bottom: 15px;
}

.quote-box .link-btn {
    background-color: #1a3a5c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 58, 92, 0.3);
}

.quote-box .link-btn:hover {
    background-color: #0f2a45;
    box-shadow: 0 6px 16px rgba(26, 58, 92, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-badge {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
}

.trust-badge img {
    margin-bottom: 15px;
}

.trust-badge h4 {
    color: #1a3a5c;
    margin-bottom: 8px;
    font-size: 16px;
}

.trust-badge p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.payment-methods {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header .wrap {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .ncgw-mobile-toggle {
        display: flex;
    }
    
    #ncgw-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a3a5c;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    #ncgw-nav.ncgw-nav-open {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
    }
    
    header {
        position: relative;
    }
    
    .splash h1 {
        font-size: 28px;
    }
    
    .areas-list {
        column-count: 2;
    }
    
    .footer-section {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .areas-list {
        column-count: 1;
    }
    
    nav ul li {
        margin: 5px 8px;
    }
}

/* =====================================================
   MISSING CLASS DEFINITIONS (Added for compatibility)
   ===================================================== */

/* Section Base */
.ncgw-section {
    padding: 4rem 0;
}

.section-grey {
    background-color: #f5f5f5;
}

/* Container (minimal) */
.ncgw-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    padding: 0.5rem;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.875rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: white;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--primary);
}

/* =====================================================
   MOBILE MENU TOGGLE
   ===================================================== */

.ncgw-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.ncgw-mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.ncgw-mobile-toggle.ncgw-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ncgw-mobile-toggle.ncgw-toggle-active span:nth-child(2) {
    opacity: 0;
}

.ncgw-mobile-toggle.ncgw-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */

/* =====================================================
   UNIQUE COOKIE CONSENT - Left Slide-In Panel
   Design: Wood plank / flooring aesthetic
   ===================================================== */
.ncgw-cookie-banner {
    position: fixed;
    bottom: 32px;
    left: 24px;
    right: auto;
    top: auto;
    width: 340px;
    max-width: calc(100vw - 48px);
    background: #faf8f5;
    border-radius: 4px 16px 16px 4px;
    box-shadow: 
        8px 0 32px rgba(26, 58, 92, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 4px 0 0 #c9a86c;
    z-index: 9999;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    overflow: hidden;
}

.ncgw-cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #c9a86c 0%, #a88b4a 50%, #c9a86c 100%);
}

.ncgw-cookie-banner.ncgw-cookie-visible {
    transform: translateX(0);
    opacity: 1;
}

.ncgw-cookie-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #234d72 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ncgw-cookie-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ncgw-cookie-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #f4a300;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ncgw-cookie-header h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.ncgw-cookie-content {
    padding: 18px 20px;
}

.ncgw-cookie-content p {
    margin: 0 0 16px 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4a5568;
}

.ncgw-cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ncgw-cookie-accept {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #f4a300 0%, #e09500 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(244, 163, 0, 0.3);
}

.ncgw-cookie-accept:hover {
    background: linear-gradient(135deg, #e09500 0%, #cc8500 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 163, 0, 0.4);
}

.ncgw-cookie-essential {
    width: 100%;
    padding: 11px 18px;
    border: 2px solid #cbd5e0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: #4a5568;
}

.ncgw-cookie-essential:hover {
    border-color: #1a3a5c;
    color: #1a3a5c;
    background: rgba(26, 58, 92, 0.04);
}

.ncgw-cookie-footer {
    padding: 0 20px 16px;
    text-align: center;
}

.ncgw-cookie-link {
    color: #1a3a5c;
    font-size: 0.8rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.ncgw-cookie-link:hover {
    color: #f4a300;
}

/* Cookie Banner Mobile */
@media (max-width: 480px) {
    .ncgw-cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        width: auto;
        max-width: none;
        border-radius: 12px;
        transform: translateY(120%);
    }
    
    .ncgw-cookie-banner.ncgw-cookie-visible {
        transform: translateY(0);
    }
    
    .ncgw-cookie-banner::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 4px;
        background: linear-gradient(90deg, #c9a86c 0%, #a88b4a 50%, #c9a86c 100%);
    }
    
    .ncgw-cookie-header {
        padding: 14px 16px;
    }
    
    .ncgw-cookie-content {
        padding: 14px 16px;
    }
    
    .ncgw-cookie-footer {
        padding: 0 16px 14px;
    }
}
