/* ================= GLOBAL STYLES ================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Footer Background (Black) */
            --bg-color: #000000; 
            
            /* RTPL Logo Blue */
            --accent-color: #0f2c66; 
            
            /* General Text Colors */
            --text-color: #aebac6;
            --heading-color: #ffffff;
            --border-color: #1c3546;
            --input-bg: #ffffff;
            
            /* Secondary Dark Backgrounds */
            --darker-bg: #00121e;
            
            /* Text Color for Headers on Light Backgrounds (Matched to Logo Blue) */
            --header-text-dark: #0f2c66;
            
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: #f4f4f4;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px; 
        }

        /* ================= CUSTOM LOGO STYLES ================= */
        .rtpl-logo-container {
            display: inline-flex;
            flex-direction: column;
            text-decoration: none;
            --logo-scale: 4.5px; 
            font-size: var(--logo-scale);
            font-family: Arial, Helvetica, sans-serif;
            transition: transform 0.3s ease;
        }

        .rtpl-logo-container:hover {
            transform: scale(1.02);
        }

        .rtpl-logo-container .top-section {
            display: flex;
            align-items: center; 
            gap: 1.5em; 
        }

        .rtpl-logo-container .logo-image-container {
            width: 8.5em; 
            height: 8.5em;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .rtpl-logo-container .logo-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .rtpl-logo-container .rtpl-text {
            font-size: 9.6em; 
            font-weight: 900;
            line-height: 0.75; 
            letter-spacing: 0.01em;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            color: white; 
            -webkit-text-stroke: 0.03em #17215b; 
        }

        .rtpl-logo-container .divider {
            width: 100%;
            height: 0.3em; 
            background-color: #17215b;
            margin-top: 1.4em; 
            margin-bottom: 0.6em; 
        }

        .rtpl-logo-container .sub-text {
            font-size: 1.7em; 
            font-weight: bold;
            text-align: center;
            margin: 0;
            letter-spacing: 0.035em;
            color: #17215b; 
            -webkit-text-stroke: 0; 
            white-space: nowrap;
        }

        /* Navbar context constraints */
        .navbar .rtpl-logo-container {
            --logo-scale: 4px; 
        }

        /* Footer context constraints & Dark Mode Inversion */
        .footer-brand .rtpl-logo-container {
            --logo-scale: 5px; 
            margin-bottom: 25px;
        }
        .footer-brand .rtpl-logo-container .rtpl-text {
            color: #000000; 
            -webkit-text-stroke: 0.03em #ffffff; 
        }
        .footer-brand .rtpl-logo-container .divider {
            background-color: #ffffff;
        }
        .footer-brand .rtpl-logo-container .sub-text {
            color: #ffffff;
        }

        /* ================= VIDEO MODAL STYLES ================= */
        #video-modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 5000;
            display: none; align-items: center; justify-content: center; padding: 20px;
        }
        #video-modal.active { display: flex; }
        .modal-content { width: 100%; max-width: 1000px; position: relative; }
        .close-modal-btn {
            position: absolute; top: -40px; right: 0; color: white; background: none; border: none; cursor: pointer; transition: all 0.3s ease;
            z-index: 5001; display: flex; align-items: center; gap: 12px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
        }
        .close-modal-btn:hover { color: var(--accent-color); transform: translateX(-5px); }

        /* ================= SIDE PANEL STYLES ================= */
        #info-panel {
            position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh;
            background: #ffffff; z-index: 2000; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: #000000; display: flex; flex-direction: column; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }
        #info-panel.active { right: 0; }
        #panel-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        #panel-overlay.active { opacity: 1; visibility: visible; }
        
        .panel-header { padding: 30px; border-bottom: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
        .panel-header-logo { display: flex; align-items: center; }
        .close-info-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: #888; transition: color 0.3s; padding: 5px; }
        .close-info-btn:hover { color: #000; }
        
        .panel-body { padding: 30px; flex: 1; overflow-y: auto; }
        .panel-section { margin-bottom: 40px; }
        .panel-section h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 15px; }
        .panel-section p { color: #555; line-height: 1.8; font-size: 14px; }
        .panel-section .contact-text { color: #000; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
        .panel-contact-link { display: flex; align-items: center; gap: 10px; color: #000; text-decoration: none; font-weight: 700; margin-bottom: 10px; font-size: 15px; }
        .panel-contact-link i { color: var(--accent-color); font-size: 14px; }
        .get-direction-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-color); text-decoration: none; font-weight: 700; font-size: 14px; transition: color 0.3s; }
        .get-direction-link:hover { color: #000; }
        
        .panel-footer { padding: 30px; border-top: 1px solid #f0f0f0; }
        .panel-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: #000; color: #fff; text-align: center; padding: 15px; text-decoration: none; font-weight: 700; text-transform: uppercase; font-size: 14px; border-radius: 4px; transition: background 0.3s; }
        .panel-btn:hover { background: var(--accent-color); color: #fff; }

        .header-grid-toggle {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px;
            padding: 8px;
            cursor: pointer;
            background: transparent;
            border: 1px solid #eee;
            border-radius: 4px;
            height: 38px;
            width: 38px;
            align-items: center;
            justify-items: center;
            box-sizing: border-box;
            transition: border-color 0.3s;
        }
        .header-grid-toggle:hover { border-color: var(--accent-color); }
        .header-grid-toggle span { width: 5px; height: 5px; background: var(--header-text-dark); border-radius: 1px; }

        /* ================= BUTTON SHARED STYLES ================= */
        .btn-know-more, .btn-sm, .btn-get-quote, .btn-primary-round, .btn-outline-round, .btn-hero-primary, .btn-hero-outline, .btn-explore-round, .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .mobile-whatsapp-btn {
            display: none !important;
        }

        /* ================= HEADER STYLES ================= */
        .top-bar {
            background-color: var(--darker-bg);
            color: var(--text-color);
            padding: 10px 0;
            font-size: 13px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1001;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            height: 30px;
        }

        .top-contact-left, .top-contact-right {
            display: flex;
            gap: 20px;
            align-items: center;
            z-index: 2;
        }

        .top-contact-left span, .top-contact-right span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar i {
            color: #ffffff; 
        }

        .top-notification {
            color: #fff;
            font-weight: 500;
            letter-spacing: 0.5px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            text-align: center;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-know-more {
            pointer-events: auto;
            background-color: var(--accent-color);
            color: #ffffff; 
            font-size: 10px;
            font-weight: 800;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #ffffff;
        }

        .btn-know-more:hover {
            background-color: #fff;
            color: var(--accent-color); 
            transform: translateY(-1px);
        }

        /* --- Navbar --- */
        .navbar {
            background-color: #ffffff;
            position: relative;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            height: 100%;
            align-items: center;
        }

        .nav-item {
            height: 100%;
            display: flex;
            align-items: center;
            position: static;
        }

        .nav-link {
            color: var(--header-text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link:hover, .nav-item.active .nav-link {
            color: var(--accent-color);
        }

        .nav-link i {
            font-size: 12px;
            margin-top: 2px;
            transition: transform 0.3s;
        }

        .nav-social-item {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .header-social {
            display: flex;
            gap: 10px;
        }

        .header-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            color: var(--accent-color);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .header-social a:hover {
            background-color: var(--accent-color);
            color: #ffffff; 
            transform: translateY(-2px);
        }

        .btn-get-quote {
            padding: 8px 20px;
            border: 2px solid var(--accent-color);
            color: var(--header-text-dark);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            border-radius: 50px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-get-quote:hover {
            background-color: var(--accent-color);
            color: #ffffff;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--header-text-dark);
            transition: color 0.3s;
        }

        .mobile-toggle-icon {
            display: none;
        }
        
        /* --- Mega Menu --- */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            transform: translateY(10px);
            background-color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border-top: 3px solid var(--accent-color);
            z-index: 999;
            display: flex;
            justify-content: center;
        }

        @media (min-width: 993px) {
            .has-mega-menu:hover .mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        .mega-menu-inner {
            width: 100%;
            max-width: 1200px;
            display: flex;
            padding: 0;
        }

        .mega-menu-image {
            width: 30%;
            background-image: url('https://images.unsplash.com/photo-1531297461136-82lw02222222?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .mega-menu-image::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to bottom, rgba(15, 44, 102, 0.3), rgba(15, 44, 102, 0.8)); 
        }

        .mega-menu-image-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: #fff;
        }

        .mega-menu-image-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .mega-menu-image-content p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        .btn-sm {
            padding: 8px 20px;
            background-color: var(--accent-color);
            color: #ffffff; 
            text-decoration: none;
            font-weight: 700;
            font-size: 13px;
            border-radius: 50px; 
            align-self: flex-start;
            border: 1px solid #ffffff; 
        }

        .mega-menu-links {
            width: 70%;
            padding: 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            background-color: #fff;
            position: relative;
            z-index: 1;
        }

        .mega-column h4 {
            color: var(--accent-color); 
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mega-column ul {
            list-style: none;
        }

        .mega-column li {
            margin-bottom: 12px;
        }

        .mega-column a {
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mega-column a:hover {
            color: var(--accent-color);
            transform: translateX(3px);
        }
        
        .mega-column a i {
            font-size: 8px;
            color: #ccc;
        }
        
        .mega-column a:hover i {
            color: var(--accent-color);
        }
        
        .mobile-mega-content {
            display: none;
        }

        /* ================= PAGE HERO SECTION ================= */
        .page-hero {
            position: relative;
            height: 300px;
            background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(15, 44, 102, 0.75);
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
        }

        .page-hero-content h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .breadcrumb {
            font-size: 16px;
            opacity: 0.9;
        }

        .breadcrumb a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
        }

        /* ================= CONTACT INFO CARDS SECTION ================= */
        .contact-info-section {
            padding: 80px 0;
            background-color: #fff;
            margin-top: -50px; 
            position: relative;
            z-index: 10;
        }

        .contact-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .info-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border: 1px solid var(--accent-color);
            transition: transform 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-10px);
            background-color: var(--accent-color);
        }

        .info-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(15, 44, 102, 0.08);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 20px auto;
            transition: all 0.3s ease;
        }

        .info-card:hover .info-icon {
            background-color: #fff;
            color: var(--accent-color);
        }

        .info-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--header-text-dark);
            transition: color 0.3s;
        }

        .info-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
            transition: color 0.3s;
        }

        .info-card:hover h3, .info-card:hover p {
            color: #fff;
        }

        /* ================= HORIZONTAL CONTACT FORM SECTION ================= */
        .contact-form-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .form-container {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-top: 5px solid var(--accent-color);
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 36px;
            color: var(--header-text-dark);
            font-weight: 800;
        }

        .horizontal-form {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .form-group {
            flex: 1;
            min-width: 250px;
        }

        .form-group.full-width {
            flex: 0 0 100%;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #eee;
            background-color: #f9f9f9;
            border-radius: 10px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(15, 44, 102, 0.1);
        }

        select.form-control {
            appearance: none; 
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230f2c66%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 15px top 50%;
            background-size: 12px auto;
            cursor: pointer;
        }

        #other-field {
            display: none;
        }

        .btn-submit {
            padding: 15px 40px;
            background-color: var(--accent-color);
            color: #ffffff;
            border: none;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #000;
            transform: translateY(-2px);
        }

        /* ================= HORIZONTAL MAP SECTION ================= */
        .map-section {
            height: 450px;
            width: 100%;
            overflow: hidden;
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* ================= CTA SECTION ================= */
        .cta-section {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }
        
        .video-bg-cta {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }
        
        .video-bg-cta video {
            width: 100%; height: 100%; object-fit: cover;
        }
        
        .video-bg-cta::after {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 44, 102, 0.85);
        }
        
        .cta-content {
            position: relative; z-index: 2; max-width: 800px; padding: 0 20px;
        }
        
        .cta-content h2 {
            font-size: 42px; font-weight: 800; margin-bottom: 20px; line-height: 1.2;
        }
        
        .cta-content p {
            font-size: 18px; margin-bottom: 40px; opacity: 0.9;
        }

        .btn-hero-primary {
            padding: 15px 35px; background-color: var(--accent-color); color: #ffffff;
            text-decoration: none; font-weight: 700; border-radius: 50px;
            border: 2px solid #ffffff; transition: all 0.3s;
        }
        .btn-hero-primary:hover { background-color: transparent; color: #ffffff; border-color: #ffffff; }

        .btn-hero-outline {
            padding: 15px 35px; background-color: transparent; color: #fff;
            text-decoration: none; font-weight: 700; border-radius: 50px;
            border: 2px solid #fff; transition: all 0.3s;
        }
        .btn-hero-outline:hover { background-color: #fff; color: var(--accent-color); }

        /* ================= FOOTER STYLES ================= */
        .footer-section {
            background-color: var(--bg-color);
            color: var(--text-color);
            padding-top: 80px;
            font-size: 15px; 
            line-height: 1.6;
        }

        .footer-top { display: flex; flex-wrap: wrap; gap: 40px; }
        .footer-brand { flex: 0 0 300px; padding-right: 20px; }
        .footer-text { margin-bottom: 30px; color: #aebac6; }
        
        /* GSTIN and Social Heading Styles */
        .footer-gstin {
            margin-bottom: 20px;
            color: var(--text-color);
            font-size: 14px; 
        }
        .social-heading {
            color: var(--heading-color);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .social-icons { display: flex; gap: 15px; }
        .social-icons a {
            display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
            border: 1px solid #ffffff; border-radius: 50%; color: #ffffff; font-size: 18px;
            text-decoration: none; transition: all 0.3s ease;
        }
        .social-icons a:hover { background-color: #ffffff; color: var(--bg-color); transform: translateY(-3px); }

        /* Business Hours Style */
        .business-hours {
            margin-top: 25px;
            color: var(--text-color);
        }
        .business-hours h5 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .business-hours p {
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
            max-width: 250px;
            font-size: 14px; 
            border-radius: 4px; 
            transition: all 0.3s ease;
        }
        
        /* Highlight Class for Current Day */
        .business-hours p.today-highlight {
            font-weight: 800;
            color: #ffffff;
            position: relative;
            padding-left: 15px; 
            transform: scale(1.05); 
            transform-origin: left;
        }

        /* --- KEYFRAMES FOR BLOW/PULSE EFFECT --- */
        @keyframes pulse-blow {
            0% { transform: translateY(-50%) scale(1); opacity: 0.8; }
            100% { transform: translateY(-50%) scale(4); opacity: 0; }
        }
        
        .business-hours p.today-highlight::before {
            content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
            width: 6px; height: 6px; background-color: var(--accent-color); border-radius: 50%;
            box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); z-index: 2; 
        }

        .business-hours p.today-highlight::after {
            content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px;
            background-color: var(--accent-color); border-radius: 50%; transform: translateY(-50%);
            z-index: 1; animation: pulse-blow 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        }

        .footer-content-right { flex: 1; display: flex; flex-direction: column; gap: 40px; }
        
        /* Revised Footer Layout Styles */
        .footer-newsletter-row {
            display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px;
            border-bottom: 1px solid var(--border-color); gap: 30px; flex-wrap: wrap;
        }
        
        .newsletter-content-left, .newsletter-content-right { flex: 1; min-width: 250px; }
        .contact-item { display: flex; gap: 15px; min-width: 200px; }
        
        /* Contact Vertical Styling */
        .contact-col-vertical { flex: 1.3; min-width: 250px; }
        .vertical-contact-container { display: flex; flex-direction: column; gap: 25px; }

        .icon-box {
            width: 50px; height: 50px; border: 2px solid #ffffff; display: flex;
            align-items: center; justify-content: center; color: #ffffff; font-size: 20px;
            flex-shrink: 0; transition: all 0.3s ease; border-radius: 50%; 
        }
        .contact-item:hover .icon-box { background-color: #ffffff; color: var(--bg-color); }
        .contact-details h4 { color: var(--heading-color); font-size: 18px; font-weight: 700; margin-bottom: 5px; }
        .contact-details p { font-size: 14px; margin: 0; } 
        
        /* Get Direction Link Style */
        .get-direction-link {
            display: inline-flex; align-items: center; gap: 5px; color: var(--accent-color);
            text-decoration: none; font-size: 14px; font-weight: 700; margin-top: 5px; transition: color 0.3s;
        }
        .get-direction-link:hover { color: #fff; }

        /* --- GOOGLE REVIEW BADGE STYLES --- */
        .google-review-badge {
            margin-top: 15px; display: flex; flex-direction: column; align-items: flex-start; width: 100%; 
        }
        .google-text {
            font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 24px;
            color: #ffffff; text-transform: uppercase; line-height: 1; margin-bottom: 5px;
        }
        .rating-row { display: flex; align-items: center; gap: 10px; }
        .rating-num { color: #ffffff; font-size: 16px; font-weight: 700; line-height: 1; }
        .stars-container {
            display: flex; gap: 3px; padding-left: 10px; border-left: 1px solid #7d7d7d; height: 20px; align-items: center;
        }
        .star-box {
            width: 20px; height: 20px; background-color: #ffffff; border-radius: 2px; display: flex; align-items: center; justify-content: center;
        }
        .star-box i { color: #000000; font-size: 12px; }
        .star-box.partial { background: linear-gradient(to right, #ffffff 80%, #7d7d7d 80%); }

        .links-newsletter-row { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
        .footer-col { flex: 1; min-width: 160px; }
        .footer-heading { color: var(--heading-color); font-size: 18px; font-weight: 700; margin-bottom: 25px; }
        .footer-links { list-style: none; }
        .footer-links a { color: var(--text-color); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: color 0.3s ease; } 
        .footer-links a i { color: #ffffff; font-size: 14px; } 
        .footer-links a:hover { color: #ffffff; }

        .newsletter-text { margin-bottom: 20px; }
        .newsletter-form { display: flex; }
        .newsletter-form input { padding: 12px 15px; border: none; outline: none; flex: 1; font-family: inherit; font-size: 14px; }
        .newsletter-form button { padding: 12px 25px; background-color: var(--accent-color); color: #ffffff; border: none; font-weight: 700; cursor: pointer; font-family: inherit; transition: background-color 0.3s ease; border: 1px solid #ffffff; }
        .newsletter-form button:hover { background-color: #ffffff; color: var(--bg-color); }
        
        /* Our Clients Row - Footer */
        .footer-clients-row {
            margin-top: 40px; padding-top: 30px; padding-bottom: 30px;
            border-bottom: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
            display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
        }
        .clients-heading { color: var(--heading-color); font-size: 18px; font-weight: 700; min-width: 150px; margin-bottom: 0; }
        .clients-logos { display: flex; gap: 20px; flex-wrap: wrap; flex: 1; align-items: center; }
        .client-logo-box {
            width: 90px; height: 70px; display: flex; align-items: center; justify-content: center;
            overflow: hidden; background: #f4f4f4; border-radius: 2px; padding: 10px;
        }
        .client-logo-box img { width: 100%; height: 100%; object-fit: contain; }
        .see-more-icon {
            display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
            background-color: var(--accent-color); color: #ffffff; border-radius: 50%;
            text-decoration: none; transition: all 0.3s ease; margin-left: 10px; border: 1px solid var(--accent-color);
        }
        .see-more-icon:hover { background-color: #ffffff; color: var(--accent-color); transform: translateX(5px); }

        .footer-bottom { background-color: #000000; margin-top: 60px; padding: 25px 0; border-top: 1px solid var(--border-color); }
        .bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .copyright { font-size: 14px; } 
        
        /* Made with love styles */
        .made-with-love { color: #aebac6; font-size: 14px; }
        .made-with-love a { color: #ffffff; text-decoration: none; font-weight: 700; transition: color 0.3s; }
        .made-with-love a:hover { color: var(--accent-color); }

        /* Mobile Accordion Default State (Desktop) */
        .accordion-group { margin-bottom: 40px; }
        .accordion-group:last-child { margin-bottom: 0; }
        .mobile-toggle-plus { display: none; }
        
        @media (min-width: 769px) { .accordion-content > li { margin-bottom: 15px; } }

        @media (min-width: 992px) {
            .footer-top { flex-wrap: nowrap; }
            .footer-brand { flex: 0 0 25%; max-width: 300px; }
            .footer-content-right { flex: 1; padding-left: 20px; }
        }

        /* ================= MEDIA QUERIES (RESPONSIVE) ================= */
        body.menu-open .top-bar { display: none; }

        @media (max-width: 992px) {
            .navbar .rtpl-logo-container { --logo-scale: 3.5px; }

            .top-contact-left, .top-contact-right { display: none; }
            .top-notification {
                font-size: 12px; position: absolute; left: 50%; transform: translateX(-50%);
                top: 10px; width: auto; white-space: nowrap;
            }
            .hamburger { display: block; }
            .navbar .container { position: relative; }

            .nav-menu {
                position: fixed; top: 80px; left: 0; right: 0; bottom: 0; background-color: #ffffff;
                flex-direction: column; height: calc(100vh - 80px); padding: 20px; display: none;
                border-top: 1px solid #eee; overflow-y: auto; align-items: flex-start; gap: 0; z-index: 999;
            }
            .nav-menu.active { display: flex; }
            .nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; position: relative; }
            .nav-link { width: 100%; padding: 20px 0; border-bottom: 1px solid #eee; font-size: 20px; font-weight: 700; color: var(--header-text-dark); }
            .nav-link i { display: none; }
            .nav-social-item { width: 100%; padding: 20px 0; height: auto; border-bottom: 1px solid #eee; align-items: center; }
            .nav-social-item .header-social a { width: 48px; height: 48px; font-size: 20px; }
            .nav-quote-item { width: 100%; padding: 20px 0; border-bottom: 1px solid #eee; flex-direction: column; gap: 15px; }
            .btn-get-quote { display: flex; text-align: center; width: 100%; justify-content: center; padding: 14px 20px; } 
            .mobile-whatsapp-btn { display: flex !important; }

            .mobile-toggle-icon {
                display: flex; align-items: center; justify-content: center; width: 30px; height: 30px;
                position: absolute; right: 0; top: 15px; color: var(--accent-color); cursor: pointer;
                font-size: 16px; border: none; border-radius: 0; z-index: 100;
            }

            .header-grid-toggle { display: none !important; }

            .mega-menu {
                position: static; width: 100%; transform: none; opacity: 1; visibility: visible;
                display: none; box-shadow: none; background-color: #f9f9f9; padding: 0; margin-top: 10px; border-top: none;
            }
            .mega-menu.mobile-active { display: block; }
            .mega-menu-inner { flex-direction: column; }
            .mega-menu-image, .mega-menu-links { display: none !important; }
            .mobile-mega-content { display: block; padding: 10px 10px 20px 10px; width: 100%; }
            .mobile-service-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
            .mobile-service-list li { border-bottom: 1px solid #eee; }
            .mobile-service-list a { display: block; padding: 12px 5px; color: #444; text-decoration: none; font-size: 15px; transition: color 0.2s; }
            .mobile-service-list a:hover { color: var(--accent-color); padding-left: 10px; }
            .btn-explore-round {
                display: flex; width: 100%; justify-content: center; padding: 12px 0;
                background-color: var(--accent-color); color: #ffffff; text-decoration: none;
                border-radius: 50px; font-weight: 700; transition: background 0.3s; border: 1px solid #ffffff;
            }
            .btn-explore-round:hover { background-color: #000; }

            /* Contact Page specific responsive fixes */
            .contact-cards-grid { grid-template-columns: 1fr; }
            .info-card { margin-bottom: 20px; }
            .form-container { padding: 30px 20px; }

            .cta-content h2 { font-size: 32px; }
            
            /* Footer adjustments for tablet/mobile */
            .footer-brand { flex: 0 0 100%; margin-bottom: 20px; padding-right: 0; }
            .footer-newsletter-row { flex-direction: column; align-items: flex-start; gap: 20px; }
            .footer-content-right { gap: 30px; }
            .links-newsletter-row { flex-direction: column; }
            .footer-clients-row { flex-direction: column; align-items: flex-start; }
            .clients-logos { width: 100%; }
        }

        @media (max-width: 768px) {
            .cta-content h2 { font-size: 28px; }

            /* Footer Mobile Accordion Styles */
            .accordion-group { margin-bottom: 0; }
            .accordion-toggle {
                display: flex; justify-content: space-between; align-items: center;
                cursor: pointer; padding: 15px 0; margin-bottom: 0; border-bottom: 1px solid #1c3546;
            }
            .mobile-toggle-plus { display: block; font-size: 14px; color: var(--text-color); transition: transform 0.3s ease; }
            .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; margin: 0; }
            .accordion-content.open { border-bottom: 1px solid #1c3546; }
            .accordion-content > li:first-child { margin-top: 15px; }
            .accordion-content > li:last-child { margin-bottom: 15px; }
            .footer-col { margin-bottom: 0; }
            
            .bottom-content { flex-direction: column; justify-content: center; text-align: center; gap: 15px; }
            .made-with-love { margin-left: 0; margin-top: 5px; display: block;}
        }

        @media (max-width: 480px) {
            .navbar .rtpl-logo-container { --logo-scale: 3.2px; }
            .footer-brand .rtpl-logo-container { --logo-scale: 4px; }
            .top-notification { max-width: 90%; gap: 5px; }
            .btn-know-more { padding: 3px 8px; font-size: 9px; }
        }