/* ============================================================
   Century Packer - Global Stylesheet
   Mobile First | Performance Optimized | Beautiful UI
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* Brand Colors */
  --primary:        #e63946;
  --primary-dark:   #c1121f;
  --primary-light:  #ff6b6b;
  --secondary:      #1d3557;
  --secondary-light:#457b9d;
  --accent:         #f4a261;

  /* Neutral Colors */
  --white:          #ffffff;
  --off-white:      #f8f9fa;
  --light-gray:     #e9ecef;
  --mid-gray:       #adb5bd;
  --dark-gray:      #495057;
  --black:          #212529;

  /* Status Colors */
  --success:        #2ecc71;
  --warning:        #f39c12;
  --error:          #e74c3c;
  --info:           #3498db;

  /* Typography */
  --font-main:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading:   'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Font Sizes */
  --text-xs:        0.75rem;
  --text-sm:        0.875rem;
  --text-base:      1rem;
  --text-lg:        1.125rem;
  --text-xl:        1.25rem;
  --text-2xl:       1.5rem;
  --text-3xl:       1.875rem;
  --text-4xl:       2.25rem;
  --text-5xl:       3rem;

  /* Spacing */
  --space-1:        0.25rem;
  --space-2:        0.5rem;
  --space-3:        0.75rem;
  --space-4:        1rem;
  --space-5:        1.25rem;
  --space-6:        1.5rem;
  --space-8:        2rem;
  --space-10:       2.5rem;
  --space-12:       3rem;
  --space-16:       4rem;
  --space-20:       5rem;

  /* Border Radius */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      16px;
  --radius-full:    9999px;

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:      0 8px 24px rgba(0,0,0,0.12);
  --shadow-xl:      0 16px 48px rgba(0,0,0,0.15);

  /* Transitions */
  --transition:     all 0.3s ease;
  --transition-fast:all 0.15s ease;

  /* Container */
  --container:      1200px;
  --container-sm:   768px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover { color: var(--primary-dark); }

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-main);
}

input, textarea, select {
  font-family: var(--font-main);
  font-size: var(--text-base);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--secondary);
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-base); }
h6 { font-size: var(--text-sm); }

p { margin-bottom: var(--space-4); line-height: 1.7; }

strong { font-weight: 700; }
em { font-style: italic; }

@media (min-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-5xl); }
}


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-6); }
}

.section {
  padding: var(--space-12) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-16) 0; }
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-3);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.section-title p {
  color: var(--dark-gray);
  max-width: 600px;
  margin: var(--space-4) auto 0;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 576px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Page with Sidebar */
.page-with-sidebar {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .page-with-sidebar {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}


/* ============================================================
   5. HEADER
   ============================================================ */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar */
.header-top {
  background: var(--secondary);
  color: var(--white);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.header-top a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}

.header-top a:hover { color: var(--accent); }

/* Main Header */
.header-main {
  padding: var(--space-3) 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-xl);
  font-weight: 900;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.logo-text span:last-child {
  font-size: var(--text-xs);
  color: var(--mid-gray);
  font-weight: 400;
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav a {
  padding: var(--space-2) var(--space-3);
  color: var(--dark-gray);
  font-weight: 500;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: rgba(230, 57, 70, 0.08);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile Menu Button */
.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: var(--space-1);
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

@media (min-width: 1024px) {
  .menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  padding: var(--space-4);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--dark-gray);
  font-weight: 500;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-1);
}

.mobile-menu a:hover { background: var(--off-white); color: var(--primary); }


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.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(-1px);
  box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #152a45;
  border-color: #152a45;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-lg);
}

.btn-full { width: 100%; }


/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d5986 100%);
  color: var(--white);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(230,57,70,0.08);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 480px;
    align-items: center;
  }
}

.hero-content h1 {
  color: var(--white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: var(--text-4xl); }
}

@media (min-width: 1024px) {
  .hero-content h1 { font-size: var(--text-5xl); }
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Hero Form */
.hero-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xl);
}

.hero-form h3 {
  color: var(--secondary);
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
  text-align: center;
}

.hero-form-subtitle {
  text-align: center;
  color: var(--dark-gray);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
  margin-top: calc(-1 * var(--space-3));
}


/* ============================================================
   8. FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--dark-gray);
  margin-bottom: var(--space-2);
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--black);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.form-control::placeholder { color: var(--mid-gray); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: var(--space-8);
}

.form-row {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-error {
  color: var(--error);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
  display: none;
}

.form-error.show { display: block; }

.form-success {
  background: rgba(46,204,113,0.1);
  border: 1px solid var(--success);
  color: #27ae60;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  text-align: center;
  display: none;
}

.form-success.show { display: block; }


/* ============================================================
   9. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: var(--space-5);
}

.card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-2);
}

.card-text {
  color: var(--dark-gray);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.card-footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--light-gray);
  background: var(--off-white);
}

/* City Card */
.city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.city-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.city-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.city-card-info h4 {
  font-size: var(--text-base);
  color: var(--secondary);
  margin-bottom: var(--space-1);
}

.city-card-info span {
  font-size: var(--text-xs);
  color: var(--mid-gray);
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* Route Card */
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.route-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.route-card-cities {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.route-card-cities .from,
.route-card-cities .to {
  font-weight: 700;
  color: var(--secondary);
  font-size: var(--text-sm);
}

.route-card-cities .arrow {
  color: var(--primary);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.route-card-service {
  font-size: var(--text-xs);
  color: var(--mid-gray);
  flex-shrink: 0;
}


/* ============================================================
   10. BREADCRUMBS
   ============================================================ */
.breadcrumb {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--light-gray);
  background: var(--off-white);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--mid-gray);
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.breadcrumb-list li::after {
  content: '›';
  color: var(--mid-gray);
  margin-left: var(--space-1);
}

.breadcrumb-list li:last-child::after { display: none; }

.breadcrumb-list a {
  color: var(--dark-gray);
}

.breadcrumb-list a:hover { color: var(--primary); }

.breadcrumb-list li:last-child span {
  color: var(--primary);
  font-weight: 500;
}


/* ============================================================
   11. CHARGES TABLE
   ============================================================ */
.charges-section {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin: var(--space-8) 0;
}

.charges-section h2 {
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.charges-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: var(--text-sm);
}

.charges-table th {
  background: var(--secondary);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.charges-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.charges-table th:last-child  { border-radius: 0 var(--radius-md) 0 0; }

.charges-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-gray);
}

.charges-table tr:last-child td { border-bottom: none; }

.charges-table tr:nth-child(even) td {
  background: rgba(248,249,250,0.5);
}

.charges-table tr:hover td {
  background: rgba(230,57,70,0.03);
}

.price-range {
  font-weight: 700;
  color: var(--primary);
}

.no-charges {
  text-align: center;
  padding: var(--space-8);
  color: var(--mid-gray);
}


/* ============================================================
   12. FAQ
   ============================================================ */
.faq-section {
  margin: var(--space-8) 0;
}

.faq-section h2 {
  margin-bottom: var(--space-6);
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  background: var(--white);
  text-align: left;
  font-weight: 600;
  color: var(--secondary);
  font-size: var(--text-base);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: rgba(230,57,70,0.04); color: var(--primary); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: var(--text-lg);
  color: var(--dark-gray);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: var(--space-4) var(--space-5);
  color: var(--dark-gray);
  line-height: 1.7;
  border-top: 1px solid var(--light-gray);
  font-size: var(--text-sm);
}

.faq-item.open .faq-answer { display: block; }


/* ============================================================
   13. INTERNAL LINKS
   ============================================================ */
.internal-links {
  margin: var(--space-8) 0;
}

.internal-links h3 {
  margin-bottom: var(--space-4);
  font-size: var(--text-xl);
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

@media (min-width: 576px) {
  .links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .links-grid { grid-template-columns: repeat(4, 1fr); }
}

.links-grid a {
  display: block;
  padding: var(--space-2) var(--space-3);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--dark-gray);
  transition: var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.links-grid a:hover {
  background: rgba(230,57,70,0.06);
  border-color: var(--primary);
  color: var(--primary);
}


/* ============================================================
   14. BLOG
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: var(--space-5);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--mid-gray);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.blog-card-category {
  background: rgba(230,57,70,0.08);
  color: var(--primary);
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-xs);
}

.blog-card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--space-3);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title:hover { color: var(--primary); }

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--dark-gray);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  border-top: 1px solid var(--light-gray);
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--dark-gray);
}

.blog-card-author img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

/* Blog Single */
.blog-content {
  line-height: 1.8;
  font-size: var(--text-base);
  color: var(--dark-gray);
}

.blog-content h2 {
  margin: var(--space-8) 0 var(--space-4);
  font-size: var(--text-2xl);
  color: var(--secondary);
}

.blog-content h3 {
  margin: var(--space-6) 0 var(--space-3);
  font-size: var(--text-xl);
}

.blog-content p { margin-bottom: var(--space-4); }

.blog-content ul,
.blog-content ol {
  list-style: disc;
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.blog-content ul li,
.blog-content ol li {
  margin-bottom: var(--space-2);
}

.blog-content ol { list-style: decimal; }

.blog-content img {
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
}

.blog-content strong { color: var(--secondary); }

.blog-content a {
  color: var(--primary);
  text-decoration: underline;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-6) 0;
  background: rgba(230,57,70,0.04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--dark-gray);
}

/* Author Box */
.author-box {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
  margin: var(--space-8) 0;
  border: 1px solid var(--light-gray);
}

.author-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box-info h4 { margin-bottom: var(--space-1); }

.author-box-info .designation {
  font-size: var(--text-sm);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.author-box-info p {
  font-size: var(--text-sm);
  color: var(--dark-gray);
  margin-bottom: var(--space-3);
}

.author-socials {
  display: flex;
  gap: var(--space-2);
}

.author-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  background: var(--light-gray);
  color: var(--dark-gray);
  transition: var(--transition-fast);
}

.author-socials a:hover {
  background: var(--primary);
  color: var(--white);
}


/* ============================================================
   15. SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.sidebar-widget-title {
  background: var(--secondary);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-base);
  font-weight: 700;
}

.sidebar-widget-body {
  padding: var(--space-4);
}

/* Recent Posts Widget */
.recent-post-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--light-gray);
}

.recent-post-item:last-child { border-bottom: none; }

.recent-post-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-info a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.recent-post-info a:hover { color: var(--primary); }

.recent-post-info span {
  font-size: var(--text-xs);
  color: var(--mid-gray);
  display: block;
  margin-top: var(--space-1);
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  color: var(--dark-gray);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
}

.tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* Category Widget */
.category-list li {
  border-bottom: 1px solid var(--light-gray);
}

.category-list li:last-child { border-bottom: none; }

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: var(--space-3) 0;
  color: var(--dark-gray);
  font-size: var(--text-sm);
}

.category-list a:hover { color: var(--primary); }

.category-list .count {
  background: var(--light-gray);
  color: var(--dark-gray);
  padding: 2px var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
}


/* ============================================================
   16. PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2);
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1.5px solid var(--light-gray);
  background: var(--white);
  color: var(--dark-gray);
  transition: var(--transition-fast);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pagination .disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}


/* ============================================================
   17. STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--secondary);
  color: var(--white);
  padding: var(--space-12) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item h3 {
  font-size: var(--text-4xl);
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  margin: 0;
}


/* ============================================================
   18. WHY CHOOSE US
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 576px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-content h4 {
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.feature-content p {
  font-size: var(--text-sm);
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}


/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: var(--space-16) 0 var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 576px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer-brand .logo-text span:first-child {
  color: var(--white);
}

.footer-brand p {
  margin: var(--space-4) 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-socials {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--text-sm);
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-heading {
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: var(--space-1);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

.footer-contact-item span:first-child {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
}

.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-5) 0;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover { color: var(--white); }


/* ============================================================
   20. ALERTS & NOTICES
   ============================================================ */
.alert {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
}

.alert-success {
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3);
  color: #27ae60;
}

.alert-error {
  background: rgba(231,76,60,0.1);
  border: 1px solid rgba(231,76,60,0.3);
  color: var(--error);
}

.alert-info {
  background: rgba(52,152,219,0.1);
  border: 1px solid rgba(52,152,219,0.3);
  color: var(--info);
}

.alert-warning {
  background: rgba(243,156,18,0.1);
  border: 1px solid rgba(243,156,18,0.3);
  color: var(--warning);
}


/* ============================================================
   21. FLOATING BUTTONS
   ============================================================ */
.float-btns {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.1); }

.float-btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.float-btn-call {
  background: var(--primary);
  color: var(--white);
}

/* Pulse Animation for WhatsApp */
.float-btn-whatsapp::before {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.4; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* ============================================================
   22. BADGE & LABELS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  line-height: 1;
}

.badge-primary { background: rgba(230,57,70,0.1); color: var(--primary); }
.badge-success { background: rgba(46,204,113,0.1); color: #27ae60; }
.badge-secondary { background: rgba(29,53,87,0.1); color: var(--secondary); }


/* ============================================================
   23. LOADING SPINNER
   ============================================================ */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--light-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  margin-left: var(--space-2);
  vertical-align: middle;
}


/* ============================================================
   24. UTILITY CLASSES
   ============================================================ */
.text-primary   { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-white     { color: var(--white) !important; }
.text-muted     { color: var(--mid-gray) !important; }
.text-center    { text-align: center !important; }
.text-right     { text-align: right !important; }

.bg-primary     { background: var(--primary) !important; }
.bg-secondary   { background: var(--secondary) !important; }
.bg-light       { background: var(--off-white) !important; }
.bg-white       { background: var(--white) !important; }

.mt-0  { margin-top: 0 !important; }
.mt-4  { margin-top: var(--space-4) !important; }
.mt-8  { margin-top: var(--space-8) !important; }
.mb-0  { margin-bottom: 0 !important; }
.mb-4  { margin-bottom: var(--space-4) !important; }
.mb-8  { margin-bottom: var(--space-8) !important; }

.p-4   { padding: var(--space-4) !important; }
.p-6   { padding: var(--space-6) !important; }

.rounded    { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }

.shadow-sm  { box-shadow: var(--shadow-sm) !important; }
.shadow-md  { box-shadow: var(--shadow-md) !important; }
.shadow-lg  { box-shadow: var(--shadow-lg) !important; }

.d-none     { display: none !important; }
.d-block    { display: block !important; }
.d-flex     { display: flex !important; }
.d-grid     { display: grid !important; }

.flex-center {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.flex-between {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.gap-2 { gap: var(--space-2) !important; }
.gap-4 { gap: var(--space-4) !important; }

.w-100  { width: 100% !important; }
.hidden { display: none !important; }
.visible { display: block !important; }

.overflow-hidden { overflow: hidden !important; }
.position-relative { position: relative !important; }


/* ============================================================
   25. PRINT STYLES
   ============================================================ */
@media print {
  .header,
  .footer,
  .float-btns,
  .hero-form,
  .sidebar { display: none !important; }

  body { font-size: 12px; }
  a    { color: var(--black); text-decoration: none; }
}