/* ============================================
   Joshi Packers and Movers - Main Stylesheet
   Color Scheme: Orange (#e67e22) + Dark Blue (#2c3e50)
   Font: Poppins
   ============================================ */

/* CSS Variables */
:root {
    --primary: #e67e22;
    --primary-dark: #d35400;
    --primary-light: #f39c12;
    --secondary: #2c3e50;
    --secondary-dark: #1a252f;
    --secondary-light: #34495e;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --success: #27ae60;
    --danger: #e74c3c;
    --info: #3498db;
    --warning: #f1c40f;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-primary); color: var(--gray-700); line-height: 1.7; background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--secondary); line-height: 1.3; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); border: 2px solid transparent; font-family: var(--font-primary); text-align: center; }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--secondary); transform: translateY(-2px); }
.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary-dark); color: var(--white); transform: translateY(-2px); }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 15px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 12px auto 0; border-radius: 2px; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* ============ TOP BAR ============ */
.top-bar { background: var(--secondary-dark); color: var(--gray-300); padding: 8px 0; font-size: 0.85rem; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: var(--gray-300); }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-right { display: flex; gap: 10px; }
.top-bar-right a { width: 30px; height: 30px; background: var(--secondary-light); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; }
.top-bar-right a:hover { background: var(--primary); color: var(--white); }

/* ============ HEADER & NAVBAR ============ */
.header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }

/* Logo - Clean & Consistent */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 50px; height: 50px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.logo-icon img { width: 50px; height: 50px; border-radius: 12px; object-fit: cover; display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-size: 1.3rem; color: var(--secondary); line-height: 1.2; font-weight: 700; white-space: nowrap; }
.logo-subtitle { font-size: 0.7rem; color: var(--gray-400); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }

.nav-menu { display: flex; align-items: center; gap: 5px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 10px 15px; color: var(--secondary); font-weight: 500; font-size: 0.95rem; border-radius: var(--radius); transition: var(--transition); }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--primary); background: rgba(230,126,34,0.08); }
.nav-menu > li > a .arrow { font-size: 0.7rem; margin-left: 3px; }

.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: var(--shadow-lg); border-radius: var(--radius); opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 100; border-top: 3px solid var(--primary); }
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li { border-bottom: 1px solid var(--gray-100); }
.dropdown li:last-child { border-bottom: none; }
.dropdown a { display: block; padding: 10px 18px; color: var(--gray-700); font-size: 0.9rem; transition: var(--transition); }
.dropdown a:hover { color: var(--primary); background: var(--gray-50); padding-left: 24px; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1001; }
.menu-toggle span { width: 28px; height: 3px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; }
.overlay.active { display: block; }

/* ============ HERO SLIDER ============ */
.hero-slider { position: relative; height: 600px; overflow: hidden; }
.slider-wrapper { position: relative; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }
.slide-content { max-width: 700px; color: var(--white); }
.slide-content h1 { color: var(--white); font-size: 3rem; font-weight: 800; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.slide-content p { font-size: 1.15rem; margin-bottom: 30px; line-height: 1.8; text-shadow: 1px 1px 2px rgba(0,0,0,0.2); }
.slide-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); color: var(--white); border: 2px solid rgba(255,255,255,0.4); width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: var(--transition); z-index: 10; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: var(--primary); border-color: var(--primary); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary); transform: scale(1.2); }

/* ============ ENQUIRY STRIP ============ */
.enquiry-strip { background: var(--secondary); padding: 20px 0; }
.enquiry-form { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.enquiry-label { color: var(--white); font-weight: 600; font-size: 1.1rem; white-space: nowrap; }
.enquiry-form input, .enquiry-form select { padding: 10px 15px; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: 0.95rem; flex: 1; min-width: 150px; font-family: var(--font-primary); }
.enquiry-form input:focus, .enquiry-form select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,126,34,0.15); }
.enquiry-form .btn { white-space: nowrap; }

/* ============ WELCOME SECTION ============ */
.welcome-section { padding: 80px 0; background: var(--gray-50); }
.welcome-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 50px; align-items: start; }

.welcome-left h2 { margin-bottom: 20px; font-size: 1.85rem; line-height: 1.4; color: var(--secondary); }
.welcome-left p { margin-bottom: 15px; color: var(--gray-600); line-height: 1.8; font-size: 0.98rem; }

/* Trust Stats Bar */
.welcome-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin: 25px 0; }
.welcome-stat-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 12px 15px; transition: var(--transition); }
.welcome-stat-item:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.welcome-stat-icon { font-size: 1.5rem; color: var(--primary); flex-shrink: 0; }
.welcome-stat-text { display: flex; flex-direction: column; }
.welcome-stat-text strong { font-size: 1.1rem; color: var(--secondary); line-height: 1.2; }
.welcome-stat-text span { font-size: 0.78rem; color: var(--gray-500); }

/* CTA Buttons */
.welcome-cta { display: flex; gap: 15px; margin-top: 25px; flex-wrap: wrap; }
.btn-welcome-outline { background: var(--white); color: var(--primary); border: 2px solid var(--primary); }
.btn-welcome-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Right Column - Service Cards */
.welcome-service-cards { display: flex; flex-direction: column; gap: 12px; }
.welcome-service-card { display: flex; align-items: flex-start; gap: 15px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px 20px; transition: var(--transition); text-decoration: none; }
.welcome-service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateX(-3px); }
.wsc-icon { font-size: 1.8rem; flex-shrink: 0; width: 40px; text-align: center; color: var(--primary); }
.wsc-content h4 { font-size: 1rem; color: var(--secondary); margin-bottom: 4px; line-height: 1.3; }
.wsc-content p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 0; line-height: 1.5; }

/* ============ TWO COL LAYOUT ============ */
.two-col-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }

/* ============ SERVICES GRID ============ */
.services-section { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 35px 25px; text-align: center; transition: var(--transition); display: block; color: var(--gray-700); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary); color: var(--gray-700); }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { margin-bottom: 12px; color: var(--secondary); }
.service-card p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 0; }

/* ============ WHY CHOOSE US ============ */
.why-choose-section { padding: 80px 0; background: var(--gray-50); }
.why-choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.why-card { background: var(--white); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow); transition: var(--transition); border-left: 4px solid var(--primary); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.why-icon { font-size: 2.5rem; margin-bottom: 15px; }
.why-card h3 { margin-bottom: 12px; }
.why-card p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 0; }

/* ============ STATS COUNTER ============ */
.stats-section { padding: 60px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card { text-align: center; color: var(--white); }
.stat-number { font-size: 3rem; font-weight: 800; color: var(--primary); display: inline; }
.stat-suffix { font-size: 2rem; font-weight: 800; color: var(--primary); display: inline; }
.stat-label { display: block; font-size: 1rem; color: var(--gray-300); margin-top: 5px; font-weight: 500; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--warning); font-size: 1.2rem; margin-bottom: 15px; }
.testimonial-text { font-style: italic; color: var(--gray-600); margin-bottom: 20px; line-height: 1.8; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 45px; height: 45px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.author-info h4 { font-size: 1rem; color: var(--secondary); margin-bottom: 2px; }
.author-info span { font-size: 0.85rem; color: var(--gray-400); }

/* ============ NETWORK GRID ============ */
.network-home-section { padding: 80px 0; background: var(--gray-50); }
.network-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.network-card { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); font-size: 0.95rem; font-weight: 500; color: var(--secondary); transition: var(--transition); }
.network-card:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============ PAGE BANNER ============ */
.page-banner { background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%); padding: 60px 0; text-align: center; }
.page-banner h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 15px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--gray-300); font-size: 0.95rem; }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .separator { color: var(--gray-400); }

/* ============ CONTENT SECTION ============ */
.content-section { padding: 60px 0; }
.content-section h2 { margin-bottom: 20px; }
.content-section h3 { margin: 30px 0 15px; color: var(--primary-dark); font-size: 1.3rem; }
.content-section p { margin-bottom: 15px; }
.content-section ul, .content-section ol { margin: 15px 0 15px 20px; }
.content-section ul li, .content-section ol li { margin-bottom: 8px; }

/* ============ CITY PAGE STYLES ============ */
.city-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; }
.city-service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 25px; text-align: center; transition: var(--transition); }
.city-service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.city-service-card .service-icon { font-size: 2rem; margin-bottom: 10px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 30px 0; }
.process-step { text-align: center; padding: 25px 15px; background: var(--gray-50); border-radius: var(--radius); position: relative; }
.process-step .step-number { width: 40px; height: 40px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 12px; }
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0; }

/* FAQ Accordion */
.faq-section { margin: 40px 0; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 18px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: var(--white); font-weight: 600; color: var(--secondary); transition: var(--transition); }
.faq-question:hover { background: var(--gray-50); }
.faq-question .faq-toggle { font-size: 1.3rem; color: var(--primary); transition: var(--transition); font-weight: 400; }
.faq-item.active .faq-question { background: var(--primary); color: var(--white); }
.faq-item.active .faq-question .faq-toggle { color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 20px; color: var(--gray-600); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 500px; }

/* Sidebar */
.page-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 25px; margin-bottom: 25px; box-shadow: var(--shadow); }
.sidebar-widget h3 { font-size: 1.15rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); color: var(--secondary); }
.sidebar-widget ul li { margin-bottom: 8px; }
.sidebar-widget ul li a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--radius); color: var(--gray-600); font-size: 0.93rem; transition: var(--transition); }
.sidebar-widget ul li a:hover { background: var(--gray-50); color: var(--primary); padding-left: 18px; }
.sidebar-widget ul li a.active { background: var(--primary); color: var(--white); }
.sidebar-cta { background: var(--primary); color: var(--white); text-align: center; padding: 30px 25px; }
.sidebar-cta h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.3); }
.sidebar-cta p { color: rgba(255,255,255,0.9); margin-bottom: 15px; }
.sidebar-cta .btn { background: var(--white); color: var(--primary); }
.sidebar-cta .btn:hover { background: var(--secondary); color: var(--white); }
.sidebar-phone { display: block; background: var(--secondary); color: var(--white); padding: 14px; border-radius: var(--radius); text-align: center; font-weight: 600; margin-top: 12px; }
.sidebar-phone:hover { background: var(--secondary-dark); color: var(--white); }

/* ============ CONTACT PAGE ============ */
.contact-info-section { padding: 60px 0 0; margin-top: -30px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; text-align: center; box-shadow: var(--shadow-lg); transition: var(--transition); border-top: 4px solid var(--primary); }
.contact-info-card:hover { transform: translateY(-5px); }
.contact-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.contact-info-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.contact-info-card p { margin-bottom: 5px; font-size: 0.95rem; }
.contact-info-card a { color: var(--primary); font-weight: 500; }
.contact-info-card .small-text { font-size: 0.85rem; color: var(--gray-400); margin-top: 5px; }

.contact-form-section { padding: 60px 0; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .form-group { margin-bottom: 0; }
.contact-form label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.95rem; color: var(--secondary); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font-primary); transition: var(--transition); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(230,126,34,0.15); }
.contact-form textarea { resize: vertical; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .btn { margin-top: 5px; }

.map-container { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 25px; box-shadow: var(--shadow); }
.head-office-info { background: var(--gray-50); padding: 25px; border-radius: var(--radius-lg); border-left: 4px solid var(--primary); }
.head-office-info h3 { margin-bottom: 12px; }
.head-office-info p { margin-bottom: 8px; font-size: 0.95rem; }
.head-office-info a { color: var(--primary); font-weight: 500; }

.whatsapp-cta { padding: 50px 0; background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: var(--white); }
.whatsapp-cta h2 { color: var(--white); margin-bottom: 10px; }
.whatsapp-cta p { color: rgba(255,255,255,0.9); margin-bottom: 25px; }
.whatsapp-cta .btn { background: var(--white); color: #128C7E; border-color: var(--white); }
.whatsapp-cta .btn:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

/* ============ BLOG STYLES ============ */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 40px 0; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-image { height: 220px; background: linear-gradient(135deg, var(--secondary-light), var(--primary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 3rem; }
.blog-card-body { padding: 25px; }
.blog-card-meta { display: flex; gap: 15px; font-size: 0.85rem; color: var(--gray-400); margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--secondary); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 15px; }
.blog-card-body .read-more { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.blog-card-body .read-more:hover { color: var(--primary-dark); }

.blog-post-content { padding: 60px 0; }
.blog-post-content h2 { margin: 30px 0 15px; font-size: 1.5rem; }
.blog-post-content h3 { margin: 25px 0 12px; font-size: 1.25rem; color: var(--secondary); }
.blog-post-content p { margin-bottom: 15px; line-height: 1.8; }
.blog-post-content ul, .blog-post-content ol { margin: 15px 0 15px 25px; }
.blog-post-content ul li, .blog-post-content ol li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-content blockquote { border-left: 4px solid var(--primary); padding: 15px 20px; margin: 20px 0; background: var(--gray-50); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--gray-600); }
.blog-post-meta { display: flex; gap: 20px; font-size: 0.9rem; color: var(--gray-400); margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-200); }

/* ============ FOOTER ============ */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 60px 0; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white); margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 25px; font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.footer { background: var(--secondary-dark); color: var(--gray-300); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 30px; }
.footer-col h3 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-col p { font-size: 0.93rem; line-height: 1.8; margin-bottom: 15px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--gray-300); font-size: 0.93rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a { width: 38px; height: 38px; background: var(--secondary-light); color: var(--gray-300); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-contact p { margin-bottom: 10px; font-size: 0.93rem; }
.footer-contact a { color: var(--gray-300); }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--secondary-light); margin-top: 40px; padding: 20px 0; text-align: center; font-size: 0.9rem; }
.footer-bottom a { color: var(--gray-400); }
.footer-bottom a:hover { color: var(--primary); }

/* ============ FLOAT BUTTONS ============ */
.whatsapp-float { position: fixed; bottom: 90px; left: 20px; width: 55px; height: 55px; background: #25D366; color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-lg); z-index: 998; transition: var(--transition); animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); background: #128C7E; }

.call-float { position: fixed; bottom: 25px; left: 20px; width: 55px; height: 55px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: var(--shadow-lg); z-index: 998; transition: var(--transition); }
.call-float:hover { transform: scale(1.1); color: var(--white); background: var(--primary-dark); }

.back-to-top { position: fixed; bottom: 25px; right: 20px; width: 45px; height: 45px; background: var(--secondary); color: var(--white); border: none; border-radius: 50%; font-size: 1.3rem; cursor: pointer; z-index: 998; transition: var(--transition); opacity: 0; visibility: hidden; box-shadow: var(--shadow); }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE - 768px ============ */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .top-bar .container { flex-direction: column; gap: 5px; }
    .top-bar-left { flex-wrap: wrap; justify-content: center; }

    /* Mobile Logo */
    .logo-icon { width: 45px; height: 45px; }
    .logo-icon img { width: 45px; height: 45px; }
    .logo-title { font-size: 1.1rem; }
    .logo-subtitle { font-size: 0.6rem; }

    .nav-menu { position: fixed; top: 0; right: -300px; width: 280px; height: 100vh; background: var(--white); flex-direction: column; padding: 80px 20px 20px; box-shadow: var(--shadow-xl); transition: var(--transition); z-index: 1000; overflow-y: auto; align-items: stretch; gap: 0; }
    .nav-menu.active { right: 0; }
    .nav-menu > li > a { padding: 12px 15px; border-bottom: 1px solid var(--gray-100); }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; display: none; min-width: auto; background: var(--gray-50); border-radius: 0; }
    .nav-menu > li.dropdown-open .dropdown { display: block; }
    .menu-toggle { display: flex; }

    .hero-slider { height: 450px; }
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content p { font-size: 0.95rem; }

    .enquiry-form { flex-direction: column; }
    .enquiry-label { width: 100%; }

    /* Welcome Section Tablet */
    .welcome-layout { grid-template-columns: 1fr; gap: 30px; }
    .welcome-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .welcome-left h2 { font-size: 1.5rem; }

    .two-col-layout { grid-template-columns: 1fr; gap: 30px; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .network-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form .form-row { grid-template-columns: 1fr; }

    .page-with-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; }

    .city-services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ RESPONSIVE - 480px ============ */
@media (max-width: 480px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }

    /* Small Mobile Logo */
    .logo-icon { width: 40px; height: 40px; }
    .logo-icon img { width: 40px; height: 40px; }
    .logo-title { font-size: 1rem; }
    .logo-subtitle { font-size: 0.55rem; }

    .hero-slider { height: 380px; }
    .slide-content h1 { font-size: 1.4rem; }
    .slide-content p { font-size: 0.9rem; }
    .slide-buttons { flex-direction: column; }
    .slide-buttons .btn { width: 100%; text-align: center; }
    .slider-btn { width: 40px; height: 40px; font-size: 1rem; }

    /* Welcome Section Mobile */
    .welcome-stats-bar { grid-template-columns: 1fr 1fr; gap: 10px; }
    .welcome-stat-item { padding: 10px 12px; }
    .welcome-cta { flex-direction: column; }
    .welcome-cta .btn { width: 100%; text-align: center; }

    .services-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .network-grid { grid-template-columns: 1fr; }

    .contact-cards-grid { grid-template-columns: 1fr; }

    .city-services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .stat-number { font-size: 2.2rem; }

    .page-banner { padding: 40px 0; }
    .page-banner h1 { font-size: 1.5rem; }

    .highlight-stats { flex-direction: column; gap: 15px; }
}
