/* Theme Name: TNT Associates */
 :root {
            /* Brand Color Palette */
            --primary-color: #0e2a47; /* Dark Royal Blue */
            --primary-light: #1a3c61;
            --accent-color: #c9a25d; /* Muted Gold/Bronze */
            --accent-hover: #b08d4b;
            --text-dark: #212529;
            --text-muted: #6c757d;
            
            /* Section Backgrounds */
            --bg-expertise: #f4f7fa; /* Cool Light Grey */
            --bg-why-us: #fffbf2;    /* Warm Ivory/Cream for Premium Look */
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
            font-family: 'Montserrat', sans-serif;
        }

        /* --- Animations --- */
        .fade-up {
            animation: fadeUp 0.8s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Modal (Disclaimer) Styling --- */
        .modal-header {
            background-color: var(--primary-color);
            color: white;
            border-bottom: 3px solid var(--accent-color);
        }
        .modal-title {
            font-weight: 700;
            letter-spacing: 1px;
        }
        .modal-body {
            font-size: 0.95rem;
            color: #444;
            line-height: 1.8;
            max-height: 60vh;
            overflow-y: auto;
        }
        .modal-footer {
            border-top: 1px solid #eee;
        }

        /* --- Top Bar --- */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 0;
            font-size: 0.85rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .top-bar a {
            color: #e0e0e0;
            text-decoration: none;
            margin-left: 20px;
            transition: 0.2s;
        }
        .top-bar a:hover { color: var(--accent-color); }

        /* --- Navbar --- */
        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 15px 0;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary-color) !important;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
        }
        .navbar-brand span {
            color: var(--accent-color);
            font-weight: 400;
            margin: 0 5px;
        }
        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
            padding: 8px 16px !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color) !important;
        }
        .btn-gold {
            background-color: var(--accent-color);
            color: white;
            font-weight: 600;
            border-radius: 4px;
            padding: 10px 24px;
            border: none;
            transition: 0.3s;
        }
        .btn-gold:hover {
            background-color: var(--accent-hover);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(201, 162, 93, 0.4);
        }

        /* --- Hero Section --- */
        .hero-section {
            background: linear-gradient(rgba(14, 42, 71, 0.85), rgba(14, 42, 71, 0.7)), 
                        url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0 140px; /* Reduced top padding slightly for mobile form fit */
            color: white;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-lead {
            font-size: 1.25rem;
            font-weight: 400;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
        }
        /* Mobile adjustment for hero text */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; margin-top: 30px; }
            .hero-section { padding-top: 80px; }
        }

        /* --- Floating Enquiry Form --- */
        .enquiry-card {
            background: white;
            padding: 35px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            border-top: 5px solid var(--accent-color);
        }
        .enquiry-card h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }
        .form-control, .form-select {
            background-color: #f8f9fa;
            border: 1px solid #e0e0e0;
            padding: 12px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: none;
            background-color: white;
        }

        /* --- Section Styling --- */
        .section-padding { padding: 100px 0; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
        .separator {
            width: 80px; height: 3px; background: var(--accent-color); margin: 0 auto;
        }

        /* --- EXPERTISE SECTION (Light Cool Grey) --- */
        #expertise {
            background-color: var(--bg-expertise); 
        }

        .practice-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            border: 1px solid transparent; 
            box-shadow: 0 5px 20px rgba(14, 42, 71, 0.05); 
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .practice-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0; height: 100%;
            background-color: var(--primary-color);
            transition: 0.4s ease;
            z-index: -1;
        }
        .practice-card:hover::before { width: 100%; }
        
        .practice-card:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
        }
        .practice-card:hover h4, 
        .practice-card:hover p, 
        .practice-card:hover .icon-box { 
            color: white !important; 
        }
        
        .icon-box {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 25px;
            transition: 0.3s;
        }
        .practice-card h4 {
            font-size: 1.35rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* --- WHY CHOOSE US (Light Premium Ivory) --- */
        .wcu-section { 
            background: linear-gradient(to bottom, #fff, var(--bg-why-us));
            color: var(--text-dark);
        }
        .wcu-section h5 { color: var(--accent-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .wcu-section h2 { color: var(--primary-color); }
        .wcu-img-wrapper { position: relative; padding: 20px; }
        .wcu-img-wrapper img { border-radius: 8px; box-shadow: 20px 20px 0 rgba(201, 162, 93, 0.2), -5px -5px 0 rgba(14, 42, 71, 0.05); }
        .feature-box { 
            display: flex; margin-bottom: 30px; background: white; padding: 20px;
            border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border-left: 4px solid var(--accent-color); transition: 0.3s;
        }
        .feature-box:hover { transform: translateX(10px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
        .feature-icon {
            flex-shrink: 0; width: 50px; height: 50px; background: rgba(201, 162, 93, 0.1); 
            color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; margin-right: 20px;
        }
        .feature-content h5 { font-weight: 700; color: var(--primary-color); margin-bottom: 5px; }

        /* --- Footer --- */
        footer { background-color: #111; color: #b0b0b0; padding-top: 80px; }
        .footer-logo { color: white; font-weight: 700; font-size: 1.5rem; margin-bottom: 20px; display: block; }
        .footer-widget h5 { color: white; margin-bottom: 25px; font-weight: 600; font-size: 1.1rem; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #b0b0b0; text-decoration: none; transition: 0.3s; }
        .footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
        .contact-list li { display: flex; margin-bottom: 15px; }
        .contact-list i { color: var(--accent-color); margin-right: 15px; margin-top: 5px; }
        .footer-bottom { background: #000; padding: 25px 0; margin-top: 60px; font-size: 0.9rem; }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed; bottom: 30px; right: 30px;
            background: #25d366; color: white;
            width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 32px; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 990; text-decoration: none; transition: 0.3s;
        }
        .whatsapp-btn:hover { transform: scale(1.1); background: #1da851; color: white; }
        /* =========================================
           2. INNER PAGE SPECIFIC STYLES
           ========================================= */
        
        /* --- Page Header Banner --- */
        .page-header {
            background: linear-gradient(rgba(14, 42, 71, 0.9), rgba(14, 42, 71, 0.8)), 
                        url('https://demosite.name/tntassociates/wp-content/uploads/2026/01/images.jpg');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            margin-bottom: 60px;
        } 

        /* --- Breadcrumbs --- */
        .breadcrumb-item a { color: #ccc; text-decoration: none; font-size: 0.9rem; }
        .breadcrumb-item a:hover { color: var(--accent-color); }
        .breadcrumb-item.active { color: var(--accent-color); font-weight: 600; }
        .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

        /* --- Sidebar Widgets --- */
        .sidebar-widget {
            background: white;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            background: var(--primary-color);
            color: white;
            padding: 15px 20px;
            margin: 0;
            font-size: 1.1rem;
            font-weight: 700;
            border-bottom: 3px solid var(--accent-color);
        }
        
        /* Sidebar Links (Expertise List) */
        .service-list { list-style: none; padding: 0; margin: 0; }
        .service-list li a {
            display: block;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            color: var(--text-dark);
            text-decoration: none;
            transition: 0.3s;
            font-weight: 500;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        textarea.wpcf7-form-control.wpcf7-textarea.form-control {
            height: 120px;
        }
        li.btn.btn-gold a.nav-link {
            color: #fff !important;
        }
        footer#contact ul.list-unstyled.contact-list.text-muted a {
            color: #b0b0b0;
            text-decoration: none;
        }
        ul.sub-menu {
            display: none;
        }
        li.menu-item:hover ul.sub-menu {
            display: block;
            position: absolute;
            background: #fff;
            list-style: none;
            border-radius: 8px;
            padding:0px;
        }
        ul.sub-menu li {
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            border-left: 5px solid var(--accent-color);
        }
        .service-list li a:hover, .service-list li a.active {
            background-color: var(--bg-why-us);
            color: var(--accent-color);
            padding-left: 25px;
            border-left: 4px solid var(--accent-color);
        }
        .service-list li a i { font-size: 0.8rem; }

        /* --- Content Area Typography --- */
        .content-area h3 { color: var(--primary-color); font-weight: 700; margin-top: 30px; margin-bottom: 15px; }
        .content-area p { text-align: justify; margin-bottom: 20px; color: #555; }
        .content-area img { border-radius: 8px; margin-bottom: 30px; }
        
        /* Custom Check List */
        .custom-list { list-style: none; padding: 0; }
        .custom-list li { margin-bottom: 12px; position: relative; padding-left: 30px; color: #444; }
        .custom-list li::before {
            content: '\f00c'; /* FontAwesome Check */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute; left: 0; top: 2px;
            color: var(--accent-color);
        }
        section#expertise a {
    text-decoration: none;
}