/* 
  Pooja Transport Service - Redesign CSS

  Focus: Trust, Professionalism, and High Conversion
*/

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

:root {
  /* Refined Color Palette */
  --primary: #0f172a;       
  --primary-light: #1e293b;
  --secondary: #d22b2b;     
  --secondary-hover: #b91c1c;
  --accent: #10b981;        
  
  --bg-main: #fcfcfd;       /* Even cleaner white */
  --bg-card: #ffffff;
  --text-dark: #0f172a;     
  --text-muted: #64748b;    /* Slate 500 for better contrast */
  --text-light: #f8fafc;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Softer, more premium shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-premium: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  
  --radius: 16px;           /* Larger radius for modern feel */
  --radius-lg: 24px;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Faster yet smoother */

  /* Enhanced Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
}

/* --- Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Animations --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(210, 43, 43, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(210, 43, 43, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(210, 43, 43, 0); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade { animation: fadeIn 0.8s ease-out forwards; }

/* --- Utilities --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}


.section-padding {
  padding: 6rem 0;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  border: none;
  position: relative;
  overflow: hidden;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #991b1b 100%);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(210, 43, 43, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(210, 43, 43, 0.4);
}

/* --- Top Bar --- */
.new-topbar {
  background: #020617;
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.new-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Header --- */
.new-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
  .new-header {
    position: relative;
  }
}


/* --- Common Typography --- */
.hero-title {
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: white;
}

.section-title {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .section-header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
}


.new-logo img {
  height: 60px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.new-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.new-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.new-nav a:hover::after {
  width: 100%;
}

/* --- Hero Section --- */
.new-hero {
  padding: 10rem 0 12rem;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.85)), url('https://images.unsplash.com/photo-1570126618953-d437176e8c79?q=80&w=2000&auto=format&fit=crop') center/cover;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
}


.hero-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge i { color: var(--secondary); }

.hero-features {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.h-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.h-feat i {
  width: 40px;
  height: 40px;
  background: rgba(210, 43, 43, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
}

.h-feat span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Floating Stats --- */
.floating-stats {
  margin-top: -5rem;
  position: relative;
  z-index: 10;
}

.stats-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 4rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-txt {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.05);
}

/* --- Cards --- */
.service-card, .feature-card, .stat-card {
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--secondary);
}

/* --- Form --- */
.form-group {
  margin-bottom: 1rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  background: white;
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(210, 43, 43, 0.1);
}

/* --- Gallery --- */
.gallery-item {
  height: 350px;
}

.gallery-overlay {
  background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, transparent 100%);
}

/* --- Mobile Specific --- */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 12px;
  transition: var(--transition);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100%;
  background: white;
  z-index: 2000;
  box-shadow: 20px 0 50px rgba(0,0,0,0.1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.drawer-header img {
  height: 40px;
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer-nav a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.drawer-nav a i {
  color: var(--secondary);
  width: 25px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* --- Process --- */
.step-num-premium {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.05);
  margin-bottom: -1.5rem;
  font-family: var(--font-heading);
}

.process-step h4 {
  position: relative;
  z-index: 1;
}

/* --- Portfolio --- */
.gallery-item-premium {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item-premium:hover img {
  transform: scale(1.1);
}

.gallery-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

/* --- Testimonials --- */
.testimonial-card-premium {
  border: none;
  transition: var(--transition);
}

.testimonial-card-premium:hover {
  transform: translateY(-10px);
}

/* --- Sticky Buttons --- */
.mobile-only-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px 24px 0 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-text h1 { font-size: 3.5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero-badges, .hero-features { justify-content: center; }
  .services-grid, .process-grid, .testimonials-grid-premium { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
  
  .hero-text h1 { 
    font-size: 2.5rem; 
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .new-logo img { height: 45px; }
  .new-nav { display: none; }
  .mobile-toggle { display: flex; }
  
  .floating-stats { margin-top: -4rem; }
  .stats-wrapper { 
    padding: 1.5rem; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item {
    padding: 0.5rem;
  }
  .stat-num { font-size: 1.75rem; }
  .stat-txt { font-size: 0.7rem; }
  .stat-divider { display: none; }

  .page-hero {
    padding: 4rem 0 !important;
  }

  .page-hero h1 {
    font-size: 2.25rem !important;
  }

  .page-hero p {
    font-size: 1.1rem !important;
  }

  /* Cleaner Grids - 2 columns for smaller cards makes it look more "PC-like" */
  .services-grid { 
    grid-template-columns: 1fr !important; 
    gap: 1.5rem !important; 
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  .testimonials-grid-premium {
    grid-template-columns: 1fr !important;
  }

  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .feature-card {
    padding: 1.5rem !important;
  }

  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .gallery-item-premium {
    height: 250px;
  }

  /* Section Headings */
  .section-padding h2 {
    font-size: 2rem !important;
    line-height: 1.3 !important;
    text-align: center;
  }
  
  .section-padding div[style*="justify-content: space-between"] {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 2rem;
  }

  .mobile-only-bar { 
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: 20px 20px 0 0;
  }
  
  .mobile-only-bar .btn { 
    flex: 1; 
    padding: 0.85rem; 
    border-radius: 12px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
  }

  /* Form spacing */
  .quote-form-card {
    padding: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr !important;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
}



