/*
 * Gati Packers and Movers - Complete HTML Website
 * Modern Gradient Design with Glassmorphism
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --secondary: #0F172A;
    --accent: #10B981;
    --accent-2: #F59E0B;
    --gradient-1: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #D946EF 100%);
    --gradient-2: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text: #1E293B;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--secondary); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { color: var(--text-light); margin-bottom: 1rem; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--gradient-2); color: var(--white); }
.section-dark h2, .section-dark p { color: var(--white); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 32px; font-size: 1rem; font-weight: 600; border-radius: var(--radius); cursor: pointer; transition: all 0.3s ease; border: none; font-family: inherit; }
.btn-primary { background: var(--gradient-1); color: var(--white); box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px rgba(99, 102, 241, 0.5); color: var(--white); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #128C7E; color: var(--white); }
.btn-lg { padding: 20px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s ease; }
.header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-lg); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 50px; height: 50px; background: var(--gradient-1); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: #fff; transition: all 0.3s ease; }
.logo-text small { display: block; font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.7); letter-spacing: 1px; transition: all 0.3s ease; }
.header.scrolled .logo-text { color: var(--secondary); }
.header.scrolled .logo-text small { color: var(--text-light); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { padding: 12px 20px; color: rgba(255,255,255,0.9); font-weight: 500; border-radius: var(--radius); transition: all 0.3s ease; }
.nav a:hover { color: #fff; background: rgba(255,255,255,0.15); }
.header.scrolled .nav a { color: var(--text); }
.header.scrolled .nav a:hover { color: var(--primary); background: rgba(99, 102, 241, 0.08); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 280px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-xl); padding: 12px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; }
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; }
.nav-dropdown-menu a i { width: 40px; height: 40px; background: rgba(99, 102, 241, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-weight: 600; transition: all 0.3s ease; }
.header.scrolled .header-phone { color: var(--text); }
.mobile-menu-btn { display: none; width: 44px; height: 44px; border: none; background: rgba(255,255,255,0.15); border-radius: 12px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.header.scrolled .mobile-menu-btn { background: var(--bg); }
.mobile-menu-btn span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s ease; }
.header.scrolled .mobile-menu-btn span { background: var(--secondary); }

.hero { min-height: 100vh; display: flex; align-items: center; background: var(--gradient-2); padding-top: 100px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 60%); }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.hero-text { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); padding: 10px 20px; border-radius: var(--radius-full); font-size: 0.9rem; margin-bottom: 24px; }
.hero-title { font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 800; margin-bottom: 24px; line-height: 1.1; color: var(--white); }
.hero-title span { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.25rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.hero-stat { text-align: center; padding: 24px; background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--radius); }
.hero-stat-number { font-size: 2.5rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.hero-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.hero-form h3 { text-align: center; margin-bottom: 8px; }
.hero-form .subtitle { text-align: center; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group select { width: 100%; padding: 16px 20px; border: 2px solid #E2E8F0; border-radius: 12px; font-size: 1rem; font-family: inherit; transition: all 0.3s; background: var(--bg); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: var(--white); }

.card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); transition: all 0.4s ease; border: 1px solid #E2E8F0; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--primary-light); }
.card-icon { width: 80px; height: 80px; background: var(--gradient-1); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); margin-bottom: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.cities-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.city-card { background: var(--white); padding: 30px 20px; border-radius: var(--radius); text-align: center; transition: all 0.3s ease; border: 2px solid transparent; }
.city-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.city-card i { font-size: 2.5rem; margin-bottom: 16px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.pricing-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin: 30px 0; }
.pricing-table th { background: var(--gradient-1); color: var(--white); padding: 20px 24px; text-align: left; }
.pricing-table td { padding: 20px 24px; border-bottom: 1px solid #E2E8F0; }
.pricing-table tr:hover td { background: rgba(99, 102, 241, 0.05); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { text-align: center; padding: 40px 30px; background: var(--white); border-radius: var(--radius-lg); transition: all 0.3s; }
.why-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon { width: 80px; height: 80px; background: var(--gradient-1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--white); margin: 0 auto 24px; }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; border: 1px solid #E2E8F0; }
.faq-question { padding: 24px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; }
.faq-item.active .faq-question { background: var(--gradient-1); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-answer-inner { padding: 24px 30px; }
.faq-item.active .faq-answer { max-height: 500px; }

.cta-section { background: var(--gradient-1); padding: 80px; border-radius: var(--radius-lg); text-align: center; }
.cta-section h2, .cta-section p { color: var(--white); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.trust-badges { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-badge { text-align: center; padding: 30px 40px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.trust-badge i { font-size: 3rem; margin-bottom: 12px; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step { text-align: center; }
.step-number { width: 100px; height: 100px; background: var(--gradient-1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; font-weight: 800; color: var(--white); margin: 0 auto 24px; }

.footer { background: var(--secondary); color: var(--white); padding-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { color: var(--white); margin-bottom: 24px; padding-bottom: 12px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--gradient-1); }
.footer-about p { color: rgba(255,255,255,0.7); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.footer-social a:hover { background: var(--gradient-1); }
.footer-links a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); padding: 10px 0; }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; color: rgba(255,255,255,0.7); }
.footer-contact i { width: 48px; height: 48px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-light); }
.footer-bottom { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 16px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); }

.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 16px; z-index: 999; }
.float-btn { width: 60px; height: 60px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; box-shadow: var(--shadow-lg); transition: all 0.3s; }
.float-btn:hover { transform: scale(1.1); color: var(--white); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.call { background: var(--gradient-1); }
.float-btn.scroll-top { background: var(--secondary); opacity: 0; visibility: hidden; }
.float-btn.scroll-top.visible { opacity: 1; visibility: visible; }

.page-header { background: var(--gradient-2); padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 150%; background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 60%); }
.page-header h1 { color: var(--white); margin-bottom: 16px; position: relative; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 1.2rem; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb .current { color: var(--white); }

.content-layout { display: grid; grid-template-columns: 1fr 380px; gap: 50px; }
.main-content h2 { margin-top: 50px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 3px solid var(--primary); display: inline-block; }
.main-content h2:first-child { margin-top: 0; }
.main-content ul { margin: 24px 0; padding-left: 24px; list-style: disc; }
.main-content li { margin-bottom: 12px; color: var(--text-light); }
.sidebar { position: sticky; top: 120px; }
.sidebar-widget { background: var(--white); padding: 30px; border-radius: var(--radius-lg); margin-bottom: 30px; box-shadow: var(--shadow); }
.sidebar-widget h4 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #E2E8F0; }
.sidebar-widget.quick-contact { background: var(--gradient-1); color: var(--white); }
.sidebar-widget.quick-contact h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.3); }
.sidebar-services li { padding: 14px 0; border-bottom: 1px solid #E2E8F0; }
.sidebar-services a { display: flex; align-items: center; gap: 12px; color: var(--text); }
.sidebar-services a:hover { color: var(--primary); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header span { display: inline-block; background: rgba(99, 102, 241, 0.1); color: var(--primary); padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }

.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 320px; height: 100%; background: var(--white); z-index: 1002; transition: all 0.3s ease; overflow-y: auto; }
.mobile-nav.active { right: 0; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #E2E8F0; }
.mobile-nav-close { width: 44px; height: 44px; border: none; background: var(--bg); border-radius: 12px; cursor: pointer; font-size: 1.2rem; }
.mobile-nav-content { padding: 24px; }
.mobile-menu li { border-bottom: 1px solid #E2E8F0; }
.mobile-menu a { display: block; padding: 16px 0; color: var(--text); font-weight: 500; }
.mobile-nav-cta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(4, 1fr); }
    .why-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .header-actions .btn { display: none; }
}
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .hero { padding-top: 80px; min-height: auto; padding-bottom: 60px; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid, .cities-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-section { padding: 50px 30px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .services-grid, .cities-grid, .why-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}
