
        /* ===== Main Home Page_CSS VARIABLES ===== */
        :root {
            --primary-dark: #192A3E;
            --primary-medium: #1b3a4b;
            --primary-light: #192A3E;
            --accent-gold: #E5C16D;
            --accent-dark-gold: #E5C16D;
            --light-bg: #f8f9fa;
            --section-bg: #ffffff;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #777777;
            --white: #ffffff;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.15);
            --border-radius: 10px;
            --transition: all 0.3s ease;
        }
        
        /* ===== BASIC RESET ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--light-bg);
            overflow-x: hidden;
        }
        
        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--primary-dark);
            line-height: 1.3;
        }
        
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
        }
        
        h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
        }
        
        .text-center {
            text-align: center;
        }
        
        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
        }
        
        p {
            margin-bottom: 1.2rem;
            color: var(--text-medium);
        }
        
        /* ===== HEADER ===== */
        .top-bar {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }
        
        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .top-bar-contact {
            display: flex;
            gap: 20px;
        }
        
        .top-bar-contact span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .top-bar-contact i {
            color: var(--accent-gold);
        }
        
        /* ===== MAIN HEADER ===== */
        .main-header {
            background-color: var(--white);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            position: relative;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0px;
            width: 200px;
            height: 80px;
        }
        
        .logo img {
            max-width: 180px;
            height: auto;
            object-fit: contain;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        /* ===== NAVIGATION ===== */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--primary-dark);
            text-decoration: none;
            padding: 12px 20px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition);
            border-radius: 5px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--accent-gold);
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 220px;
            box-shadow: var(--shadow-heavy);
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
        }
        
        .dropdown-menu li {
            list-style: none;
            width: 100%;
        }
        
        .dropdown-menu a {
            padding: 5px 10px;
            display: block;
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: var(--transition);
        }
        
        .dropdown-menu a:hover {
            background-color: rgba(193, 154, 83, 0.1);
            color: var(--accent-gold);
            padding-left: 25px;
        }
        
        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-dark);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }
        
        /* Mobile Menu Styles */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                z-index: 1000;
                max-height: 80vh;
                overflow-y: auto;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-item {
                width: 100%;
            }
            
            .nav-link {
                width: 100%;
                padding: 15px;
                border-bottom: 1px solid #eee;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                background: rgba(0, 0, 0, 0.02);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                width: 100%;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .nav-link .fa-chevron-down {
                transition: transform 0.3s ease;
            }
            
            .nav-item.active .nav-link .fa-chevron-down {
                transform: rotate(180deg);
            }
        }
        
        /* ===== HERO SLIDER ===== */
        .hero-slider {
            width: 100%;
            height: auto;
            position: relative;
            overflow: hidden;
			margin-top:-60px;
        }
        
        .swiper {
            width: 100%;
            height: 100%;
        }
        
        .swiper-slide {
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slide-content {
            max-width: 800px;
            text-align: center;
            padding: 40px;
            color: white;
            z-index: 2;
            position: relative;
        }
        
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9));
            z-index: 1;
        }
        
        .slide-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--accent-gold) !important;
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 20px;
            
            backdrop-filter: blur(5px);
        }
        
        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 1.5rem !important;
        }
        
        .swiper-pagination-bullet {
            background: var(--white) !important;
            opacity: 0.5;
            width: 12px;
            height: 12px;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--accent-gold) !important;
            opacity: 1;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            cursor: pointer;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
			
        }
        
        section {
            padding: 20px 0;
			margin-top:-100px;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== SERVICES SECTION ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
			margin-top:-80px;
        }
        
        .service-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-gold);
            height: 100%;
            cursor: pointer;
			
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .service-icon {
            background-color: rgba(193, 154, 83, 0.1);
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .service-features {
            list-style: none;
            margin-top: 15px;
        }
        
        .service-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li i {
            color: var(--accent-gold);
            margin-right: 10px;
        }
        
        /* ===== PAID LEGAL SERVICES SECTION ===== */
        .paid-services-section {
            background: linear-gradient(135deg, #1a2b4a 0%, #2c3e6e 100%);
            color: #ffffff;
            padding: 80px 0;
            position: relative;
            margin: 60px 0;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(26, 43, 74, 0.2);
			
        }
        
        .paid-services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        
        .paid-services-section h2 {
            color: #ffffff;
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .paid-services-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        .paid-services-section .text-center {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Services Ribbon */
        .services-ribbon {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 40px 0 60px;
            flex-wrap: wrap;
        }
        
        .ribbon-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 25px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .ribbon-item:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .ribbon-item i {
            color: var(--accent-gold);
            font-size: 1.3rem;
        }
        
        .ribbon-item span {
            font-size: 0.95rem;
            color: #ffffff;
        }
        
        /* Paid Services Grid */
        .paid-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .paid-service-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .paid-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), #e6b450);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .paid-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .paid-service-card:hover::before {
            transform: scaleX(1);
        }
        
        .paid-service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
            min-height: 60px;
        }
        
        .paid-service-header h3 {
            color: #ffffff;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .paid-service-header h3 i {
            color: var(--accent-gold);
            font-size: 1.5rem;
            min-width: 30px;
        }
        
        .price-tag {
            background: var(--accent-gold);
            color: #1a2b4a;
            padding: 8px 18px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.95rem;
            white-space: nowrap;
            box-shadow: 0 4px 15px rgba(193, 154, 83, 0.3);
            transition: var(--transition);
            letter-spacing: 0.5px;
        }
        
        .paid-service-card:hover .price-tag {
            background: #e6b450;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(193, 154, 83, 0.4);
        }
        
        .service-list {
            margin-bottom: 30px;
            padding-left: 5px;
        }
        
        .service-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
            line-height: 1.5;
            padding-left: 5px;
        }
        
        .service-list i {
            color: var(--accent-gold);
            font-size: 0.9rem;
            min-width: 18px;
        }
        
        .razorpay-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #b08940 100%);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(193, 154, 83, 0.3);
        }
        
        .razorpay-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .razorpay-btn:hover {
            background: linear-gradient(135deg, #b08940 0%, var(--accent-gold) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(193, 154, 83, 0.4);
        }
        
        .razorpay-btn:hover::before {
            left: 100%;
        }
        
        .razorpay-btn i {
            font-size: 1.1rem;
        }
        
        /* Property Law Specialization */
        .property-law-section {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 50px;
            margin-top: 60px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .property-law-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        
        .property-law-section h3 {
            color: #ffffff;
            margin-bottom: 40px;
            text-align: center;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .property-law-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        .property-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .property-service {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .property-service::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent-gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .property-service:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }
        
        .property-service:hover::before {
            transform: scaleX(1);
        }
        
        .property-service i {
            font-size: 2.8rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .property-service:hover i {
            transform: scale(1.1) rotate(5deg);
            color: #e6b450;
        }
        
        .property-service h4 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .property-service p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* Additional Services */
        .additional-services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .additional-service {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 35px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 15px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .additional-service::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent-gold);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.5s ease;
        }
        
        .additional-service:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }
        
        .additional-service:hover::before {
            transform: scaleY(1);
        }
        
        .additional-service i {
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin-top: 5px;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .additional-service:hover i {
            transform: rotate(10deg) scale(1.1);
            color: #e6b450;
        }
        
        .additional-service h4 {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .additional-service p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.5;
        }
        
        /* ===== DOCUMENT REQUEST FORM ===== */
        .document-request-section {
            background-color: #f8f9fa;
            padding: 80px 0;
            position: relative;
            margin: 60px 0;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .document-request-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        
        .document-request-section h2 {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 20px;
            font-weight: 700;
            color: #1a2b4a;
        }
        
        .document-request-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--accent-gold);
        }
        
        .document-request-section .text-center {
            color: #666666;
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .document-form-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 50px;
        }
        
        /* Form Styles - Dark Theme */
        #documentRequestForm {
           
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(26, 43, 74, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        #documentRequestForm::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), #e6b450);
            border-radius: 15px 15px 0 0;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #ffffff;
            font-size: 0.95rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .form-group label::after {
            content: ' *';
            color: #ff6b6b;
            opacity: 0.8;
        }
        
        .form-group label:has(+ input[type="file"])::after,
        .form-group label:has(+ select:not([required]))::after {
            content: '';
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            backdrop-filter: blur(10px);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.3);
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }
        
        .form-group textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.5;
        }
        
        .form-group input[type="file"] {
            padding: 12px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.05);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-group input[type="file"]:hover {
            border-color: var(--accent-gold);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .form-group input[type="file"]::file-selector-button {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            margin-right: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #ffffff;
            font-weight: 500;
        }
        
        .form-group input[type="file"]::file-selector-button:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--accent-gold);
        }
        
        .form-group small {
            display: block;
            margin-top: 8px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            line-height: 1.4;
        }
        
        .form-actions {
            margin-top: 35px;
        }
        
        .submit-doc-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #b08940 100%);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(193, 154, 83, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-doc-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .submit-doc-btn:hover {
            background: linear-gradient(135deg, #b08940 0%, var(--accent-gold) 100%);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(193, 154, 83, 0.5);
        }
        
        .submit-doc-btn:hover::before {
            left: 100%;
        }
        
        .submit-doc-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .submit-doc-btn:hover i {
            transform: translateX(5px);
        }
        
        .form-note {
            margin-top: 20px;
            padding: 18px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            border-left: 4px solid var(--accent-gold);
            backdrop-filter: blur(10px);
        }
        
        .form-note strong {
            color: var(--accent-gold);
        }
        
        /* Payment Info Sidebar - Dark Theme */
        .payment-info {
            background: linear-gradient(135deg, #1a2b4a 0%, #2c3e6e 100%);
            color: #ffffff;
            padding: 35px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 100px;
            box-shadow: 0 15px 35px rgba(26, 43, 74, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        
        .payment-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        
        .payment-info h4 {
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
            font-size: 1.3rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .payment-info h4 i {
            color: var(--accent-gold);
            font-size: 1.4rem;
        }
        
        .payment-info p {
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 0.95rem;
        }
        
        .payment-methods {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            font-size: 2.2rem;
            color: rgba(255, 255, 255, 0.8);
            flex-wrap: wrap;
            justify-content: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .payment-methods i {
            transition: all 0.3s ease;
        }
        
        .payment-methods i:hover {
            color: var(--accent-gold);
            transform: translateY(-5px) scale(1.1);
        }
        
        .bc-safe-notice {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            margin-top: 30px;
            border-left: 4px solid var(--accent-gold);
            backdrop-filter: blur(10px);
        }
        
        .bc-safe-notice i {
            color: var(--accent-gold);
            font-size: 1.4rem;
            margin-top: 2px;
        }
        
        .bc-safe-notice span {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            flex: 1;
        }
        
        /* ===== CONSULTATION FORM WITH MAP ===== */
        .consultation-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .consultation-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }
        
        .form-side {
            
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            height: 100%;
            color: #ffffff;
        }
        
        .map-side {
            height: 100%;
        }
        
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            height: 100%;
            min-height: 500px;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: var(--primary-dark);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .map-placeholder i {
            font-size: 3rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ffffff;
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            backdrop-filter: blur(10px);
        }
        
        input::placeholder, textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--accent-gold);
            color: #ffffff;
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(255, 255, 255, 0.08);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            border-left: 4px solid var(--accent-gold);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== DISCLAIMER MODAL ===== */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .modal-content {
            background-color: var(--white);
            max-width: 800px;
            width: 100%;
            border-radius: var(--border-radius);
            padding: 40px;
            position: relative;
            max-height: 85vh;
            overflow-y: auto;
            animation: slideUp 0.5s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .modal-content h2 {
            text-align: center;
            margin-bottom: 25px;
            color: var(--primary-dark);
        }
        
        .modal-content h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .disclaimer-content {
            margin-bottom: 30px;
        }
        
        .disclaimer-content p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        .disclaimer-content ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }
        
        .disclaimer-content li {
            margin-bottom: 10px;
            color: var(--text-medium);
        }
        
        .modal-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .modal-btn {
            padding: 14px 40px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            min-width: 160px;
        }
        
        .accept-btn {
            background-color: var(--primary-dark);
            color: var(--white);
        }
        
        .accept-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .exit-btn {
            background-color: #f1f1f1;
            color: var(--text-dark);
        }
        
        .exit-btn:hover {
            background-color: #ddd;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 1200px) {
            .container, .header-container, .top-bar-content {
                max-width: 100%;
                padding: 0 30px;
            }
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .slide-content h1 {
                font-size: 2.8rem;
            }
            
            .consultation-container,
            .document-form-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .payment-info {
                position: static;
                order: -1;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .property-services-grid,
            .additional-services {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                padding: 10px 15px;
            }
            
            .logo {
                width: 150px;
                height: 60px;
            }
            
            .logo img {
                max-width: 140px;
            }
            
            .hero-slider {
                height: 450px;
            }
            
            .slide-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-side {
                padding: 25px;
            }
            
            .modal-content {
                padding: 25px;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .modal-btn {
                width: 100%;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .paid-services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-ribbon {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .ribbon-item {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .property-services-grid,
            .additional-services {
                grid-template-columns: 1fr;
            }
            
            .property-law-section {
                padding: 35px;
            }
            
            .additional-service {
                flex-direction: column;
                text-align: center;
                gap: 20px;
                padding: 30px;
            }
            
            .additional-service i {
                margin-top: 0;
            }
            
            #documentRequestForm,
            .payment-info {
                padding: 30px;
            }
            
            .paid-services-section,
            .document-request-section {
                margin: 40px 15px;
                padding: 60px 20px;
                border-radius: 15px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .slide-content h1 {
                font-size: 1.8rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .hero-slider {
                height: 400px;
            }
            
            .logo {
                width: 120px;
            }
            
            .logo img {
                max-width: 110px;
            }
            
            .paid-service-header {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .price-tag {
                align-self: flex-start;
            }
            
            .property-law-section {
                padding: 25px;
            }
            
            .property-service {
                padding: 25px;
            }
            
            .document-form-container {
                gap: 30px;
            }
            
            #documentRequestForm,
            .payment-info {
                padding: 25px;
            }
            
            .payment-methods {
                font-size: 1.8rem;
                gap: 15px;
            }
            
            .paid-services-section h2,
            .document-request-section h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-slider {
                height: 350px;
            }
            
            .slide-content {
                padding: 20px;
            }
            
            .slide-content h1 {
                font-size: 1.5rem;
            }
            
            .logo {
                width: 100px;
            }
            
            .logo img {
                max-width: 90px;
            }
            
            .container, .header-container {
                padding: 0 15px;
            }
            
            section {
                padding: 50px 0;
            }
        }
    
    
    
        
        /* ===== CONSULTATION Page ===== */
        .consultation-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .consultation-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .consultation-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .consultation-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== CONSULTATION OPTIONS ===== */
        .consultation-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .consultation-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .consultation-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .consultation-card.featured {
            border: 2px solid var(--accent-gold);
            transform: scale(1.05);
        }
        
        .consultation-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .featured-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent-gold);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .consultation-icon {
            width: 80px;
            height: 80px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 0 auto 20px;
        }
        
        .consultation-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 20px 0;
        }
        
        .consultation-price span {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: normal;
        }
        
        .consultation-features {
            list-style: none;
            margin: 25px 0;
            text-align: left;
        }
        
        .consultation-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .consultation-features li:last-child {
            border-bottom: none;
        }
        
        .consultation-features li i {
            color: var(--accent-gold);
        }
        
        .consultation-features li.disabled {
            color: var(--text-light);
        }
        
        .consultation-features li.disabled i {
            color: var(--text-light);
        }
        
        /* ===== BOOKING PROCESS ===== */
        .booking-process {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
        }
        
        .booking-process h2,
        .booking-process h3,
        .booking-process h4 {
            color: white;
        }
        
        .booking-process h2:after {
            background: var(--accent-gold);
        }
        
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .process-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .process-number {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        /* ===== SPECIALISTS SECTION ===== */
        .specialists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .specialist-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .specialist-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .specialist-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .specialist-content {
            padding: 25px;
        }
        
        .specialist-name {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .specialist-name h3 {
            margin-bottom: 0;
        }
        
        .specialist-badge {
            background: var(--accent-gold);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .specialist-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        
        .expertise-tag {
            background: rgba(193, 154, 83, 0.1);
            color: var(--accent-gold);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        /* ===== BOOKING FORM ===== */
        .booking-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .booking-form h2,
        .booking-form h3 {
            color: white;
        }
        
        .booking-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }
        
        .radio-option input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }
        
        .checkbox-option {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            cursor: pointer;
        }
        
        .checkbox-option input[type="checkbox"] {
            width: auto;
            margin-top: 5px;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .consultation-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .consultation-card.featured {
                transform: scale(1);
            }
            
            .consultation-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .consultation-hero {
                padding: 80px 0;
            }
            
            .consultation-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .consultation-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .consultation-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .consultation-price {
                font-size: 2rem;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ===== AVAILABILITY CALENDAR ===== */
        .availability-calendar {
            margin-top: 20px;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
        }
        
        .calendar-day {
            text-align: center;
            padding: 10px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .calendar-date {
            text-align: center;
            padding: 15px 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid #eee;
        }
        
        .calendar-date:hover {
            background: rgba(193, 154, 83, 0.1);
            border-color: var(--accent-gold);
        }
        
        .calendar-date.selected {
            background: var(--accent-gold);
            color: white;
            border-color: var(--accent-gold);
        }
        
        .calendar-date.disabled {
            background: #f5f5f5;
            color: #ccc;
            cursor: not-allowed;
        }
        
        .calendar-date.disabled:hover {
            background: #f5f5f5;
            border-color: #eee;
        }
        
        .calendar-date.today {
            border: 2px solid var(--primary-dark);
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
            margin-top: 20px;
        }
        
        .time-slot {
            padding: 10px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .time-slot:hover {
            background: rgba(193, 154, 83, 0.1);
            border-color: var(--accent-gold);
        }
        
        .time-slot.selected {
            background: var(--accent-gold);
            color: white;
            border-color: var(--accent-gold);
        }
        
        .time-slot.booked {
            background: #f5f5f5;
            color: #ccc;
            cursor: not-allowed;
            text-decoration: line-through;
        }
        
        /* ===== PROGRESS BAR ===== */
        .progress-container {
            margin-bottom: 40px;
        }
        
        .progress-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 30px;
        }
        
        .progress-steps:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: #eee;
            transform: translateY(-50%);
            z-index: 1;
        }
        
        .progress-bar {
            position: absolute;
            top: 50%;
            left: 0;
            height: 2px;
            background: var(--accent-gold);
            transform: translateY(-50%);
            transition: var(--transition);
            z-index: 2;
        }
        
        .step {
            width: 40px;
            height: 40px;
            background: white;
            border: 2px solid #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--text-light);
            position: relative;
            z-index: 3;
            transition: var(--transition);
        }
        
        .step.active {
            border-color: var(--accent-gold);
            background: var(--accent-gold);
            color: white;
        }
        
        .step.completed {
            border-color: var(--accent-gold);
            background: var(--accent-gold);
            color: white;
        }
        
        .step-label {
            position: absolute;
            top: 45px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 0.85rem;
            color: var(--text-light);
        }
        
        .step.active .step-label {
            color: var(--accent-gold);
            font-weight: 600;
        }
        
        /* ===== FORM STEP CONTENT ===== */
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
        }
        
        .nav-btn {
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--primary-dark);
            background: var(--white);
            color: var(--primary-dark);
        }
        
        .nav-btn:hover {
            background: var(--primary-dark);
            color: white;
        }
        
        .nav-btn.next {
            background: var(--primary-dark);
            color: white;
        }
        
        .nav-btn.next:hover {
            background: var(--accent-gold);
            border-color: var(--accent-gold);
        }
        
        .nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .nav-btn:disabled:hover {
            background: var(--white);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
    
    
        
        
        /* ===== CRIMINAL LAW  ===== */
        .criminal-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1584556811973-b4d0c9c3c7ce?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .criminal-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .criminal-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .criminal-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-emergency {
            background-color: #dc3545;
            color: var(--white);
            border: 2px solid #dc3545;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }
        
        .btn-emergency:hover {
            background-color: #c82333;
            border-color: #c82333;
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== CRIMINAL LAW OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== TYPES OF CRIMINAL CASES ===== */
        .criminal-cases {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
        }
        
        .criminal-cases h2,
        .criminal-cases h3,
        .criminal-cases h4 {
            color: white;
        }
        
        .criminal-cases h2:after {
            background: var(--accent-gold);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .case-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }
        
        .case-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .case-icon {
            width: 70px;
            height: 70px;
            background: rgba(193, 154, 83, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .case-card h3 {
            margin-bottom: 15px;
        }
        
        .case-card ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .case-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .case-card li:last-child {
            border-bottom: none;
        }
        
        .case-card li i {
            color: var(--accent-gold);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* ===== BAIL SERVICES SECTION ===== */
        .bail-services {
            background: linear-gradient(rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.98)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            background-attachment: fixed;
        }
        
        .bail-services h2,
        .bail-services h3,
        .bail-services h4 {
            color: white;
        }
        
        .bail-services h2:after {
            background: var(--accent-gold);
        }
        
        .bail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .bail-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .bail-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .bail-card h3 i {
            color: var(--accent-gold);
        }
        
        .bail-card ul {
            list-style: none;
        }
        
        .bail-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .bail-card li:last-child {
            border-bottom: none;
        }
        
        .bail-card li i {
            color: var(--accent-gold);
            margin-top: 3px;
        }
        
        .bail-process {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        
        .bail-process h3 {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            text-align: center;
        }
        
        .process-step {
            padding: 20px;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 15px;
            font-family: 'Playfair Display', serif;
        }
        
        /* ===== COURT HEIRARCHY SECTION ===== */
        .court-section {
            background: var(--white);
        }
        
        .court-hierarchy {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
            position: relative;
            min-height: 400px;
        }
        
        .court-levels {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 100%;
            max-width: 800px;
        }
        
        .court-level {
            background: var(--light-bg);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-gold);
            position: relative;
        }
        
        .court-level h4 {
            color: var(--primary-dark);
            margin-bottom: 10px;
        }
        
        .court-level ul {
            list-style: none;
            padding-left: 20px;
        }
        
        .court-level li {
            padding: 5px 0;
            color: var(--text-medium);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .court-level li i {
            color: var(--accent-gold);
            font-size: 0.8rem;
        }
        
        /* ===== CRIMINAL PROCEDURE SECTION ===== */
        .procedure-section {
            background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
            color: white;
        }
        
        .procedure-section h2,
        .procedure-section h3,
        .procedure-section h4 {
            color: white;
        }
        
        .procedure-section h2:after {
            background: var(--accent-gold);
        }
        
        .procedure-timeline {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }
        
        .procedure-timeline:before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255, 255, 255, 0.3);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-number {
            width: 60px;
            height: 60px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 30px;
            flex-shrink: 0;
            z-index: 1;
        }
        
        .timeline-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            flex: 1;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .timeline-content h4 {
            margin-bottom: 10px;
        }
        
        /* ===== APPEALS & REVISIONS SECTION ===== */
        .appeals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .appeal-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-gold);
        }
        
        .appeal-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .appeal-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .appeal-card h3 i {
            color: var(--accent-gold);
        }
        
        .appeal-card ul {
            list-style: none;
        }
        
        .appeal-card li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .appeal-card li:last-child {
            border-bottom: none;
        }
        
        .appeal-card li i {
            color: var(--accent-gold);
            margin-top: 3px;
            font-size: 0.9rem;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(193, 154, 83, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== EMERGENCY BANNER ===== */
        .emergency-banner {
            background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
            color: white;
            padding: 20px 0;
            text-align: center;
            position: sticky;
            top: 100px;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .emergency-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .emergency-banner h3 {
            color: white;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .emergency-banner h3 i {
            animation: ring 2s infinite;
        }
        
        @keyframes ring {
            0% { transform: rotate(0deg); }
            10% { transform: rotate(15deg); }
            20% { transform: rotate(-15deg); }
            30% { transform: rotate(15deg); }
            40% { transform: rotate(-15deg); }
            50% { transform: rotate(0deg); }
            100% { transform: rotate(0deg); }
        }
        
        .emergency-contacts {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .emergency-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .emergency-contact-item i {
            color: white;
            font-size: 1.2rem;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .criminal-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .emergency-banner-content {
                justify-content: center;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .criminal-hero {
                padding: 80px 0;
            }
            
            .criminal-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .procedure-timeline:before {
                left: 25px;
            }
            
            .timeline-number {
                width: 50px;
                height: 50px;
                margin-right: 20px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .criminal-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .criminal-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .emergency-banner {
                top: 80px;
            }
            
            .emergency-contacts {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
    
    
        
        
        /* ===== FAMILY LAW Page ===== */
        .family-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .family-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .family-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .family-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== FAMILY LAW OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== TYPES OF FAMILY MATTERS ===== */
        .family-matters {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6572 100%);
            color: white;
        }
        
        .family-matters h2,
        .family-matters h3,
        .family-matters h4 {
            color: white;
        }
        
        .family-matters h2:after {
            background: var(--accent-gold);
        }
        
        .matters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .matter-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }
        
        .matter-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .matter-icon {
            width: 70px;
            height: 70px;
            background: rgba(193, 154, 83, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .matter-card h3 {
            margin-bottom: 15px;
        }
        
        .matter-card ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .matter-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .matter-card li:last-child {
            border-bottom: none;
        }
        
        .matter-card li i {
            color: var(--accent-gold);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* ===== DIVORCE TYPES SECTION ===== */
        .divorce-types-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .divorce-type {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 5px solid var(--accent-gold);
        }
        
        .divorce-type:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .divorce-type h3 {
            color: var(--primary-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .divorce-type h3 i {
            color: var(--accent-gold);
        }
        
        .divorce-type ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .divorce-type li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .divorce-type li i {
            color: var(--accent-gold);
            margin-top: 3px;
            font-size: 0.8rem;
        }
        
        .type-highlight {
            background: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
            border-left: 3px solid var(--accent-gold);
        }
        
        /* ===== CHILD CUSTODY SECTION ===== */
        .custody-section {
            background: linear-gradient(rgba(13, 27, 42, 0.95), rgba(13, 27, 42, 0.98)), url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2068&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            background-attachment: fixed;
        }
        
        .custody-section h2,
        .custody-section h3,
        .custody-section h4 {
            color: white;
        }
        
        .custody-section h2:after {
            background: var(--accent-gold);
        }
        
        .custody-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .custody-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .custody-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .custody-card h3 i {
            color: var(--accent-gold);
        }
        
        .custody-card ul {
            list-style: none;
        }
        
        .custody-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .custody-card li:last-child {
            border-bottom: none;
        }
        
        .custody-card li i {
            color: var(--accent-gold);
            margin-top: 3px;
        }
        
        /* ===== LEGAL PROCESS ===== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-step {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 0 auto 20px;
        }
        
        /* ===== DOMESTIC VIOLENCE SECTION ===== */
        .violence-section {
            background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
            color: white;
        }
        
        .violence-section h2,
        .violence-section h3,
        .violence-section h4 {
            color: white;
        }
        
        .violence-section h2:after {
            background: var(--accent-gold);
        }
        
        .violence-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .violence-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .violence-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .violence-card h3 i {
            color: var(--accent-gold);
        }
        
        .violence-card ul {
            list-style: none;
        }
        
        .violence-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .violence-card li:last-child {
            border-bottom: none;
        }
        
        .violence-card li i {
            color: var(--accent-gold);
            margin-top: 3px;
        }
        
        .emergency-contact {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 30px;
            text-align: center;
            border: 2px solid var(--accent-gold);
        }
        
        .emergency-contact h3 {
            color: white;
            margin-bottom: 10px;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(193, 154, 83, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .family-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .family-hero {
                padding: 80px 0;
            }
            
            .family-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .family-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .family-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
    
    
        
        
        /* ===== MOTOR VEHICLE ACCIDENT HERO ===== */
        .mva-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .mva-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .mva-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .mva-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-orange);
            color: var(--white);
            border: 2px solid var(--accent-orange);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-orange);
            border-color: var(--accent-dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-emergency {
            background-color: #ff3d00;
            color: var(--white);
            border: 2px solid #ff3d00;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 61, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
        }
        
        .btn-emergency:hover {
            background-color: #dd2c00;
            border-color: #dd2c00;
            transform: translateY(-3px);
        }
        
        /* ===== STATISTICS BANNER ===== */
        .stats-banner {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8b35 100%);
            color: white;
            padding: 40px 0;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stat-item h3 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            font-size: 1.1rem;
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== MVA OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-orange);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            border-left: 5px solid var(--accent-orange);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 30px;
        }
        
        .warning-box h4 {
            color: var(--accent-orange);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* ===== COMPENSATION CALCULATOR ===== */
        .calculator-section {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
            color: white;
        }
        
        .calculator-section h2,
        .calculator-section h3 {
            color: white;
        }
        
        .calculator-section h2:after {
            background: var(--accent-orange);
        }
        
        .calculator-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .calculator-form .form-group {
            margin-bottom: 20px;
        }
        
        .calculator-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .calculator-form select, .calculator-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .calculator-results {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            padding: 30px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-orange);
        }
        
        .result-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .result-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .result-label {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-orange);
        }
        
        .disclaimer {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 20px;
            font-style: italic;
        }
        
        /* ===== TYPES OF MVA ===== */
        .mva-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .mva-type-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-orange);
            height: 100%;
        }
        
        .mva-type-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .mva-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-orange);
            margin-bottom: 20px;
        }
        
        .mva-type-card h3 {
            margin-bottom: 15px;
        }
        
        .mva-type-card ul {
            list-style: none;
        }
        
        .mva-type-card li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .mva-type-card li:last-child {
            border-bottom: none;
        }
        
        .mva-type-card li i {
            color: var(--accent-orange);
            margin-top: 3px;
            font-size: 0.9rem;
        }
        
        /* ===== COMPENSATION TYPES ===== */
        .compensation-section {
            background: linear-gradient(135deg, #ff6b35 0%, #ff8b35 100%);
            color: white;
        }
        
        .compensation-section h2,
        .compensation-section h3,
        .compensation-section h4 {
            color: white;
        }
        
        .compensation-section h2:after {
            background: var(--accent-gold);
        }
        
        .compensation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .compensation-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        
        .compensation-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .compensation-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .compensation-amount {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            text-align: center;
        }
        
        .amount-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 5px;
        }
        
        .amount-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }
        
        /* ===== MV ACT SECTION ===== */
        .act-section {
            background: linear-gradient(135deg, #2a4d6e 0%, #1b3a4b 100%);
            color: white;
        }
        
        .act-section h2,
        .act-section h3 {
            color: white;
        }
        
        .act-section h2:after {
            background: var(--accent-orange);
        }
        
        .act-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .act-provisions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .provision-item {
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
        }
        
        .provision-item h4 {
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        
        /* ===== CLAIM PROCESS ===== */
        .process-timeline {
            max-width: 900px;
            margin: 40px auto 0;
            position: relative;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #eee;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent-orange);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 30px;
            flex-shrink: 0;
            z-index: 1;
        }
        
        .step-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            flex: 1;
            box-shadow: var(--shadow);
        }
        
        .step-content h4 {
            margin-bottom: 10px;
            color: var(--accent-orange);
        }
        
        .step-duration {
            background: #fff3e0;
            color: var(--accent-orange);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* ===== DOCUMENTS REQUIRED ===== */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .document-category {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent-orange);
        }
        
        .document-category h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .document-category h3 i {
            color: var(--accent-orange);
        }
        
        .document-category ul {
            list-style: none;
        }
        
        .document-category li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .document-category li:last-child {
            border-bottom: none;
        }
        
        .document-category li i {
            color: var(--accent-orange);
            margin-top: 3px;
            font-size: 0.9rem;
        }
        
        .document-important {
            background: #fff3e0;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        
        /* ===== INSURANCE SECTION ===== */
        .insurance-section {
            background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
            color: white;
        }
        
        .insurance-section h2,
        .insurance-section h3 {
            color: white;
        }
        
        .insurance-section h2:after {
            background: var(--accent-orange);
        }
        
        .insurance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .insurance-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .insurance-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .insurance-card h3 i {
            color: var(--accent-gold);
        }
        
        /* ===== CASE STUDIES ===== */
        .case-studies {
            background: var(--white);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .case-card {
            background: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-orange);
        }
        
        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .case-outcome {
            background: var(--accent-orange);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
        }
        
        .case-details {
            background: #fff3e0;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        
        /* ===== WHY CHOOSE US ===== */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .why-us-card {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .why-us-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .why-us-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin: 0 auto 20px;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(255, 107, 53, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(255, 107, 53, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-orange);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 80px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-orange);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: var(--accent-orange);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-orange);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--accent-orange);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-dark-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== EMERGENCY CONTACT ===== */
        .emergency-contact {
            background: linear-gradient(135deg, #ff3d00 0%, #dd2c00 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        
        .emergency-contact h2 {
            color: white;
        }
        
        .emergency-contact h2:after {
            background: white;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .emergency-numbers {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .emergency-number {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: var(--border-radius);
            min-width: 250px;
        }
        
        .emergency-number i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .emergency-number h3 {
            color: white;
            margin-bottom: 10px;
        }
        
        .emergency-number p {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0;
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-orange);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-orange);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-orange);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .mva-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .calculator-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .process-timeline:before {
                left: 25px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                margin-right: 20px;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .mva-hero {
                padding: 80px 0;
            }
            
            .mva-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .emergency-numbers {
                flex-direction: column;
                align-items: center;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .mva-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .mva-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .process-timeline:before {
                display: none;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                margin-right: 15px;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
    
    
       
        
        /* ===== NRI services page ===== */
        .nri-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1517935706615-2717063c2225?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .nri-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nri-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .nri-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== NRI SERVICES OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== NRI SERVICES GRID ===== */
        .nri-services {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
        }
        
        .nri-services h2,
        .nri-services h3,
        .nri-services h4 {
            color: white;
        }
        
        .nri-services h2:after {
            background: var(--accent-gold);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            background: rgba(193, 154, 83, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
        }
        
        .service-card ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .service-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .service-card li:last-child {
            border-bottom: none;
        }
        
        .service-card li i {
            color: var(--accent-gold);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* ===== NRI LEGAL PROCESS ===== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-step {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 0 auto 20px;
        }
        
        /* ===== NRI CHALLENGES SECTION ===== */
        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .challenge-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-gold);
        }
        
        .challenge-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .challenge-card h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .challenge-card h3 i {
            color: var(--accent-gold);
        }
        
        /* ===== NRI DOCUMENTS SECTION ===== */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .document-category {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-gold);
        }
        
        .document-category:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .document-category h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .document-category h3 i {
            color: var(--accent-gold);
        }
        
        .document-list {
            list-style: none;
        }
        
        .document-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .document-list li:last-child {
            border-bottom: none;
        }
        
        .document-list li i {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(193, 154, 83, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== TIMEZONE SUPPORT SECTION ===== */
        .timezone-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .timezone-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .timezone-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .timezone-icon {
            width: 80px;
            height: 80px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 0 auto 20px;
        }
        
        .timezone-list {
            list-style: none;
            margin-top: 20px;
            text-align: left;
        }
        
        .timezone-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .timezone-list li:last-child {
            border-bottom: none;
        }
        
        .timezone-list li i {
            color: var(--accent-gold);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .nri-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .nri-hero {
                padding: 80px 0;
            }
            
            .nri-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .nri-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .nri-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ===== FLAG ICONS ===== */
        .flag-icon {
            font-size: 1.2rem;
            margin-right: 5px;
        }
        
        /* ===== TIMELINE STYLES ===== */
        .timeline {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-gold);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-start;
        }
        
        .timeline-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            width: 45%;
            position: relative;
        }
        
        .timeline-content h4 {
            color: var(--primary-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 5%;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 5%;
        }
        
        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
            border: 4px solid var(--white);
        }
        
        @media (max-width: 768px) {
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
                margin: 0 !important;
            }
            
            .timeline-marker {
                left: 20px;
            }
        }
    
    
        
        
        /* ===== LEGAL OPINION PAGE ===== */
        .opinion-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1589391886085-8b6b0ac72a1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .opinion-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .opinion-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .opinion-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== LEGAL OPINION OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== TYPES OF LEGAL OPINIONS ===== */
        .opinion-types {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
        }
        
        .opinion-types h2,
        .opinion-types h3,
        .opinion-types h4 {
            color: white;
        }
        
        .opinion-types h2:after {
            background: var(--accent-gold);
        }
        
        .opinion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .opinion-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }
        
        .opinion-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .opinion-icon {
            width: 70px;
            height: 70px;
            background: rgba(193, 154, 83, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .opinion-card h3 {
            margin-bottom: 15px;
        }
        
        .opinion-card ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .opinion-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .opinion-card li:last-child {
            border-bottom: none;
        }
        
        .opinion-card li i {
            color: var(--accent-gold);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* ===== LEGAL OPINION PROCESS ===== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-step {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 0 auto 20px;
        }
        
        /* ===== OPINION COMPONENTS ===== */
        .components-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .component-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-gold);
        }
        
        .component-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .component-card h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .component-card h3 i {
            color: var(--accent-gold);
        }
        
        /* ===== IMPORTANCE OF LEGAL OPINIONS ===== */
        .importance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .importance-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .importance-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .importance-icon {
            width: 60px;
            height: 60px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(193, 154, 83, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .opinion-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .opinion-hero {
                padding: 80px 0;
            }
            
            .opinion-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .opinion-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .opinion-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ===== TIMELINE STYLES ===== */
        .timeline {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-gold);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-start;
        }
        
        .timeline-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            width: 45%;
            position: relative;
        }
        
        .timeline-content h4 {
            color: var(--primary-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 5%;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 5%;
        }
        
        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
            border: 4px solid var(--white);
        }
        
        @media (max-width: 768px) {
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
                margin: 0 !important;
            }
            
            .timeline-marker {
                left: 20px;
            }
        }
        
        /* ===== OPINION FORMAT EXAMPLE ===== */
        .format-example {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            margin-top: 40px;
            border-left: 4px solid var(--accent-gold);
        }
        
        .format-section {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        
        .format-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .format-section h4 {
            color: var(--accent-gold);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .format-section p {
            margin-bottom: 10px;
        }
        
        .format-list {
            list-style: none;
            margin-top: 10px;
            padding-left: 20px;
        }
        
        .format-list li {
            padding: 5px 0;
            position: relative;
        }
        
        .format-list li:before {
            content: '•';
            color: var(--accent-gold);
            position: absolute;
            left: -15px;
        }
    
    

        
        /* ===== PROPERTY HERO BANNER ===== */
        .property-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .property-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .property-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .property-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== PROPERTY DISPUTES OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== TYPES OF PROPERTY DISPUTES ===== */
        .dispute-types {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
        }
        
        .dispute-types h2,
        .dispute-types h3,
        .dispute-types h4 {
            color: white;
        }
        
        .dispute-types h2:after {
            background: var(--accent-gold);
        }
        
        .dispute-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .dispute-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }
        
        .dispute-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .dispute-icon {
            width: 70px;
            height: 70px;
            background: rgba(193, 154, 83, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .dispute-card h3 {
            margin-bottom: 15px;
        }
        
        .dispute-card ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .dispute-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .dispute-card li:last-child {
            border-bottom: none;
        }
        
        .dispute-card li i {
            color: var(--accent-gold);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* ===== PROPERTY LEGAL PROCESS ===== */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .process-step {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: -20px;
            width: 50px;
            height: 50px;
            background: var(--accent-gold);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background: rgba(193, 154, 83, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-gold);
            margin: 0 auto 20px;
        }
        
        /* ===== PROPERTY DOCUMENTS SECTION ===== */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .document-category {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-gold);
        }
        
        .document-category:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .document-category h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .document-category h3 i {
            color: var(--accent-gold);
        }
        
        .document-list {
            list-style: none;
        }
        
        .document-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .document-list li:last-child {
            border-bottom: none;
        }
        
        .document-list li i {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(193, 154, 83, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .property-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .property-hero {
                padding: 80px 0;
            }
            
            .property-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .property-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .property-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
    
    
        
        
        /* ===== RAILWAY ACCIDENT HERO BANNER ===== */
        .railway-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1523531294919-4bcd7c65e216?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .railway-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .railway-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .railway-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-red);
            color: var(--white);
            border: 2px solid var(--accent-red);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-red);
            border-color: var(--accent-dark-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .btn-emergency {
            background-color: #ff5722;
            color: var(--white);
            border: 2px solid #ff5722;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 87, 34, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
        }
        
        .btn-emergency:hover {
            background-color: #e64a19;
            border-color: #e64a19;
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== RAILWAY ACCIDENT OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-red);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            border-left: 5px solid var(--accent-red);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-top: 30px;
        }
        
        .warning-box h4 {
            color: var(--accent-red);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* ===== COMPENSATION CALCULATOR ===== */
        .calculator-section {
            background: linear-gradient(135deg, #0d1b2a 0%, #1b3a4b 100%);
            color: white;
        }
        
        .calculator-section h2,
        .calculator-section h3 {
            color: white;
        }
        
        .calculator-section h2:after {
            background: var(--accent-red);
        }
        
        .calculator-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .calculator-form .form-group {
            margin-bottom: 20px;
        }
        
        .calculator-form label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .calculator-form select, .calculator-form input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .calculator-results {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            padding: 30px;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--accent-red);
        }
        
        .result-item {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .result-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .result-label {
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent-red);
        }
        
        .disclaimer {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 20px;
            font-style: italic;
        }
        
        /* ===== TYPES OF RAILWAY ACCIDENTS ===== */
        .accidents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .accident-type {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-red);
            height: 100%;
        }
        
        .accident-type:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .accident-icon {
            width: 70px;
            height: 70px;
            background: rgba(211, 47, 47, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-red);
            margin-bottom: 20px;
        }
        
        .accident-type h3 {
            margin-bottom: 15px;
        }
        
        .accident-type ul {
            list-style: none;
        }
        
        .accident-type li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .accident-type li:last-child {
            border-bottom: none;
        }
        
        .accident-type li i {
            color: var(--accent-red);
            margin-top: 3px;
            font-size: 0.9rem;
        }
        
        /* ===== COMPENSATION TYPES ===== */
        .compensation-section {
            background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
            color: white;
        }
        
        .compensation-section h2,
        .compensation-section h3,
        .compensation-section h4 {
            color: white;
        }
        
        .compensation-section h2:after {
            background: var(--accent-gold);
        }
        
        .compensation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .compensation-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
        }
        
        .compensation-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .compensation-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .compensation-amount {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 20px;
            text-align: center;
        }
        
        .amount-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 5px;
        }
        
        .amount-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
        }
        
        /* ===== CLAIM PROCESS ===== */
        .process-timeline {
            max-width: 900px;
            margin: 40px auto 0;
            position: relative;
        }
        
        .process-timeline:before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #eee;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--accent-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 30px;
            flex-shrink: 0;
            z-index: 1;
        }
        
        .step-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            flex: 1;
            box-shadow: var(--shadow);
        }
        
        .step-content h4 {
            margin-bottom: 10px;
            color: var(--accent-red);
        }
        
        .step-duration {
            background: #ffebee;
            color: var(--accent-red);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }
        
        /* ===== DOCUMENTS REQUIRED ===== */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .document-category {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--accent-red);
        }
        
        .document-category h3 {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .document-category h3 i {
            color: var(--accent-red);
        }
        
        .document-category ul {
            list-style: none;
        }
        
        .document-category li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .document-category li:last-child {
            border-bottom: none;
        }
        
        .document-category li i {
            color: var(--accent-red);
            margin-top: 3px;
            font-size: 0.9rem;
        }
        
        .document-important {
            background: #ffebee;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            font-size: 0.9rem;
        }
        
        /* ===== RAILWAYS ACT SECTION ===== */
        .act-section {
            background: linear-gradient(135deg, #2a4d6e 0%, #1b3a4b 100%);
            color: white;
        }
        
        .act-section h2,
        .act-section h3 {
            color: white;
        }
        
        .act-section h2:after {
            background: var(--accent-red);
        }
        
        .act-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: var(--border-radius);
            margin-top: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .act-provisions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .provision-item {
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
        }
        
        .provision-item h4 {
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        
        /* ===== CASE STUDIES ===== */
        .case-studies {
            background: var(--white);
        }
        
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .case-card {
            background: var(--light-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-red);
        }
        
        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .case-outcome {
            background: var(--accent-red);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
        }
        
        .case-details {
            background: #ffebee;
            padding: 15px;
            border-radius: 5px;
            margin-top: 15px;
            font-size: 0.9rem;
        }
        
        /* ===== WHY CHOOSE US ===== */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .why-us-card {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .why-us-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        
        .why-us-icon {
            width: 80px;
            height: 80px;
            background: rgba(211, 47, 47, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--accent-red);
            margin: 0 auto 20px;
        }
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(211, 47, 47, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(211, 47, 47, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-red);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 80px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-red);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: var(--accent-red);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-red);
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--accent-red);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-dark-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(211, 47, 47, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== EMERGENCY CONTACT ===== */
        .emergency-contact {
            background: linear-gradient(135deg, #ff5722 0%, #d84315 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: var(--border-radius);
            margin-top: 40px;
        }
        
        .emergency-contact h2 {
            color: white;
        }
        
        .emergency-contact h2:after {
            background: white;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .emergency-numbers {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .emergency-number {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: var(--border-radius);
            min-width: 250px;
        }
        
        .emergency-number i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .emergency-number h3 {
            color: white;
            margin-bottom: 10px;
        }
        
        .emergency-number p {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0;
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-red);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-red);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-red);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .railway-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .calculator-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .process-timeline:before {
                left: 25px;
            }
            
            .step-number {
                width: 50px;
                height: 50px;
                margin-right: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .railway-hero {
                padding: 80px 0;
            }
            
            .railway-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
            
            .emergency-numbers {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .railway-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .railway-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .process-timeline:before {
                display: none;
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                margin-right: 15px;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
    
    
        
        /* ===== LEGAL NOTICE Page ===== */
        .legal-hero {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0;
            text-align: center;
        }
        
        .legal-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .legal-hero-content h1 {
            color: var(--white);
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .legal-hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 14px 32px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .btn-primary {
            background-color: var(--accent-gold);
            color: var(--white);
            border: 2px solid var(--accent-gold);
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark-gold);
            border-color: var(--accent-dark-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* ===== MAIN CONTENT CONTAINER ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-bg {
            background-color: var(--section-bg);
        }
        
        .section-light {
            background-color: var(--light-bg);
        }
        
        /* ===== LEGAL NOTICE OVERVIEW ===== */
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 40px;
        }
        
        .overview-content h3 {
            margin-bottom: 20px;
        }
        
        .overview-features {
            list-style: none;
            margin-top: 25px;
        }
        
        .overview-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .overview-features li:last-child {
            border-bottom: none;
        }
        
        .overview-features li i {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }
        
        .overview-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* ===== TYPES OF LEGAL NOTICES ===== */
        .notice-types {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
            color: white;
        }
        
        .notice-types h2,
        .notice-types h3,
        .notice-types h4 {
            color: white;
        }
        
        .notice-types h2:after {
            background: var(--accent-gold);
        }
        
        .notice-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .notice-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 100%;
        }
        
        .notice-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-gold);
        }
        
        .notice-icon {
            width: 70px;
            height: 70px;
            background: rgba(193, 154, 83, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--accent-gold);
            margin-bottom: 20px;
        }
        
        .notice-card h3 {
            margin-bottom: 15px;
        }
        
        .notice-card ul {
            list-style: none;
            margin-top: 15px;
        }
        
        .notice-card li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .notice-card li:last-child {
            border-bottom: none;
        }
        
        .notice-card li i {
            color: var(--accent-gold);
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
   /* ===== LEGAL NOTICE PROCESS SECTION ===== */
#process {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

#process .text-center {
    color: #1a365d;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
}

#process .text-center::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #c19a53, #d4af37);
    border-radius: 2px;
}

#process p.text-center {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto 50px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

/* Process Steps Container */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Process Step Individual Items */
.process-step {
    background: white;
    border-radius: 12px;
    padding: 40px 25px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-top: 5px solid #c19a53;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c19a53, #d4af37);
    width: 0;
    transition: width 0.4s ease;
}

.process-step:hover::before {
    width: 100%;
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Step Number Background */
.step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(26, 54, 93, 0.05);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 0;
    user-select: none;
    transition: color 0.3s ease;
}

.process-step:hover .step-number {
    color: rgba(193, 154, 83, 0.1);
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c19a53, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    z-index: 1;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(193, 154, 83, 0.3);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(193, 154, 83, 0.4);
}

.step-icon i {
    font-size: 32px;
    color: white;
    transition: transform 0.3s ease;
}

/* Step Content */
.process-step h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.process-step:hover h3 {
    color: #c19a53;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    flex-grow: 1;
}

/* Connector Lines for Desktop */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(193, 154, 83, 0.2) 25%, 
        rgba(193, 154, 83, 0.4) 50%, 
        rgba(193, 154, 83, 0.2) 75%, 
        transparent 100%);
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-steps {
        gap: 25px;
    }
    
    .process-step {
        padding: 35px 20px 25px;
    }
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    #process {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
    }
    
    #process {
        padding: 60px 20px;
    }
    
    #process .text-center {
        font-size: 2.2rem;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 28px;
    }
    
    .step-number {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    #process .text-center {
        font-size: 1.8rem;
    }
    
    #process .text-center::after {
        width: 60px;
    }
    
    .process-step h3 {
        font-size: 1.3rem;
    }
    
    .process-step p {
        font-size: 0.95rem;
    }
}

/* Animation for steps when they appear */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

/* ===== DRAFT YOUR LEGAL NOTICE SECTION ===== */
.consultation-form {
    background: linear-gradient(rgba(26, 54, 93, 0.95), rgba(13, 33, 58, 0.95)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: white;
    position: relative;
}

.consultation-form .text-center {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.consultation-form p.text-center {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row > * {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

@media (max-width: 768px) {
    .form-row > * {
        flex: 1 1 100%;
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a365d;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c19a53;
    box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

/* Multi-select styling */
.form-group select[multiple] {
    min-height: 120px;
    padding: 12px;
}

.form-group select[multiple] option {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.form-group select[multiple] option:hover {
    background-color: #f0f0f0;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #c19a53, #d4af37);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #d4af37, #c19a53);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(193, 154, 83, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading Animation */
.loading {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

/* Form Note */
.form-note {
    margin-top: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #1a365d;
}

.form-note p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.form-note p strong {
    color: #1a365d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-light,
    .consultation-form {
        padding: 60px 20px;
    }
    
    .section-light .text-center,
    .consultation-form .text-center {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .consultation-form {
        background-attachment: scroll;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .step-number {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .section-light .text-center,
    .consultation-form .text-center {
        font-size: 1.8rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}
        
        /* ===== FAQ SECTION ===== */
        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: var(--white);
            border-radius: var(--border-radius);
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: rgba(193, 154, 83, 0.05);
        }
        
        .faq-question.active {
            background-color: rgba(193, 154, 83, 0.1);
        }
        
        .faq-question i {
            color: var(--accent-gold);
            transition: var(--transition);
        }
        
        .faq-question.active i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-answer.show {
            padding: 20px;
            max-height: 1000px;
        }
        
        /* ===== CONSULTATION FORM ===== */
        .consultation-form {
            background: var(--primary-dark);
            color: white;
            padding: 60px 0;
        }
        
        .consultation-form h2,
        .consultation-form h3 {
            color: white;
        }
        
        .consultation-form h2:after {
            background: var(--accent-gold);
        }
        
        .form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-heavy);
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary-dark);
        }
        
        .required {
            color: #e74c3c;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(193, 154, 83, 0.2);
        }
        
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--accent-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .form-note {
            background-color: rgba(193, 154, 83, 0.1);
            padding: 15px;
            border-radius: 5px;
            margin-top: 25px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }
        
        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-dark);
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }
        
        /* ===== FOOTER ===== */
        footer {
            background-color: var(--primary-dark);
            color: var(--white);
            padding: 70px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.4rem;
        }
        
        .footer-column h3:after {
            background: var(--accent-gold);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
            padding-left: 5px;
        }
        
        .footer-contact p {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .legal-hero-content h1 {
                font-size: 2.8rem;
            }
            
            .overview-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 100%;
                flex-direction: column;
                background-color: var(--white);
                box-shadow: var(--shadow-heavy);
                transition: var(--transition);
                z-index: 999;
                padding: 20px;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            
            .nav-item.active .dropdown-menu {
                max-height: 500px;
            }
            
            .legal-hero {
                padding: 80px 0;
            }
            
            .legal-hero-content h1 {
                font-size: 2.2rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .form-container {
                padding: 25px;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 25px;
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .legal-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .legal-hero-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
        }
        
        /* ===== FORM STATUS MESSAGES ===== */
        .form-message {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 600;
            display: none;
        }
        
        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* ===== TIMELINE STYLES ===== */
        .timeline {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-gold);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            justify-content: flex-end;
        }
        
        .timeline-item:nth-child(even) {
            justify-content: flex-start;
        }
        
        .timeline-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            width: 45%;
            position: relative;
        }
        
        .timeline-content h4 {
            color: var(--primary-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 5%;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 5%;
        }
        
        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 0;
            width: 20px;
            height: 20px;
            background: var(--accent-gold);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 1;
            border: 4px solid var(--white);
        }
        
        @media (max-width: 768px) {
            .timeline:before {
                left: 30px;
            }
            
            .timeline-item {
                justify-content: flex-start !important;
                padding-left: 60px;
            }
            
            .timeline-content {
                width: 100%;
                margin: 0 !important;
            }
            
            .timeline-marker {
                left: 20px;
            }
        }
    