/* 
 * Ottmegastore.in - Main Stylesheet
 * Author: Ravi Shandilya
 * Version: 1.2
 * Updated: May 25, 2025
 */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

/* Reset & Base Styles */
:root {
  --primary-color: #4f46e5; /* Slightly darker indigo */
  --primary-dark: #3730a3;
  --primary-light: #818cf8;
  --secondary-color: #f59e0b;
  --secondary-dark: #d97706;
  --secondary-light: #fbbf24;
  --accent-color: #06b6d4; /* Cyan for accents */
  --text-color: #1f2937;
  --text-light: #6b7280;
  --light-bg: #f9fafb;
  --light-bg-2: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #3b82f6;
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color, #1f2937);
  background-color: var(--light-bg, #f9fafb);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-color, #4f46e5);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  color: var(--primary-dark, #3730a3);
}

img {
  max-width: 100%;
  height: auto;
    margin-left: 12px;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color, #4f46e5);
  color: white;
  border: none;
  border-radius: var(--border-radius, 8px);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: var(--transition, all 0.3s ease);
  transition: var(--transition, all 0.3s ease);
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  will-change: transform, background-color;
}

.btn:hover {
  background-color: var(--primary-dark, #3730a3);
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark, #3730a3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark, #d97706);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color, #4f46e5);
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: #0891b2;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.text-center {
  text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* Testimonials Section */
.testimonials {
  background: var(--light-bg-2, #f3f4f6);
  padding: 60px 0 40px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 40px;
}
.testimonial-item {
  background: #fff;
  border-radius: var(--border-radius-lg, 12px);
  box-shadow: var(--box-shadow-md, 0 10px 15px -3px rgba(0,0,0,0.1));
  padding: 2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  border: 1px solid var(--border-color, #e5e7eb);
}
.testimonial-item:hover {
  box-shadow: var(--box-shadow-lg, 0 20px 25px -5px rgba(0,0,0,0.12));
}
.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonial-text {
  font-size: 1.08rem;
  color: var(--text-color, #1f2937);
  margin-bottom: 0.7rem;
  font-style: italic;
  min-height: 68px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light, #818cf8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--primary-color, #4f46e5);
}
.testimonial-info h4 {
  margin: 0 0 3px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color, #4f46e5);
}
.testimonial-info p {
  margin: 0 0 4px 0;
  color: var(--text-light, #6b7280);
  font-size: 0.98rem;
}
.testimonial-rating {
  color: #fbbf24;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .testimonials { padding: 38px 0 16px 0; }
  .testimonial-grid { gap: 1.2rem; }
  .testimonial-item { padding: 1.2rem 0.8rem 1.1rem 0.8rem; }
  .testimonial-text { font-size: 0.97rem; }
}

/* Page Header */

/* --- HOW IT WORKS BLOCK MOVED TO how-it-works.css --- */

/* Container and Row Styling */
.why-love-OttMega Store{
  padding: 3.5rem 0 2.5rem 0;
  background: var(--light-bg, #f9fafb);
}


/* Step Card Modern Design */
/* --- Beautiful & Premium Step Card Design for How Ottmegastore.in Works --- */

/* Step Badge for Number */
.how-it-works .step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color, #4f46e5) 60%, var(--primary-light, #818cf8) 100%);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 3px 12px 0 rgba(79,70,229,0.16);
  border: 3px solid #fff;
  z-index: 2;
  letter-spacing: 0.01em;
}
.how-it-works .step-icon {
  position: relative;
  margin-top: 1.2rem;
}

/* Step Links */
.how-it-works .step-link {
  text-decoration: underline;
  color: var(--primary-color, #4f46e5);
  font-weight: 500;
  transition: color 0.18s;
}
.how-it-works .step-link:hover,
.how-it-works .step-link:focus {
  color: var(--primary-dark, #3730a3);
  text-decoration: underline wavy;
  outline: none;
}

.how-it-works .step-card {
  overflow: visible !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-width: 100vw !important;

  background: linear-gradient(135deg, #fff 85%, #f3f4f6 100%);
  border-radius: var(--border-radius-lg, 18px);
  border-left: 5px solid var(--primary-light, #818cf8);
  border-top: 1.5px solid var(--border-color, #e5e7eb);
  border-right: 1.5px solid var(--border-color, #e5e7eb);
  border-bottom: 1.5px solid var(--border-color, #e5e7eb);
  box-shadow:
    0 2px 8px 0 rgba(60,72,88,0.10),
    0 8px 32px 0 rgba(79,70,229,0.07),
    0 1.5px 0 0 #fff inset;
  padding: 2.3rem 1.7rem 1.8rem 1.5rem;
  min-width: 210px;
  max-width: 100%;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  animation: fadeUpBlueShadow 0.65s cubic-bezier(0.4,0,0.2,1) forwards;
  box-sizing: border-box;
  margin-bottom: 0;
  transition: box-shadow 0.24s, transform 0.24s, background 0.24s, border-color 0.24s;
  overflow: hidden;
}
.how-it-works .step-card::after {
  /* Soft blue blurred glow behind the icon */
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 38px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,0.13) 0%, rgba(79,70,229,0) 80%);
  z-index: 0;
  filter: blur(5px);
  pointer-events: none;
}
.how-it-works .step-card[data-aos] {
  opacity: 1;
  transform: none;
}
.how-it-works .step-card:hover, .how-it-works .step-card:focus-within {
  box-shadow:
    0 8px 32px 0 rgba(79,70,229,0.16),
    0 2px 12px 0 rgba(60,72,88,0.12);
  border-left: 5px solid var(--primary-color, #4f46e5);
  background: linear-gradient(135deg, #f5f7ff 70%, #fff 100%);
  transform: translateY(-10px) scale(1.017);
}
.how-it-works .step-icon {
  margin-top: 0.2rem;
  margin-bottom: 1.1rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light, #818cf8) 60%, var(--primary-color, #4f46e5) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  box-shadow:
    0 2px 16px 0 rgba(79,70,229,0.11),
    0 0 0 10px rgba(79,70,229,0.08);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.24s, transform 0.24s;
}
.how-it-works .step-card:hover .step-icon {
  box-shadow:
    0 4px 24px 0 rgba(79,70,229,0.20),
    0 0 0 16px rgba(79,70,229,0.13);
  transform: translateY(-4px) scale(1.04);
}
@keyframes fadeUpBlueShadow {
  0% { opacity: 0; transform: translateY(36px) scale(0.98); box-shadow: 0 2px 8px 0 rgba(79,70,229,0.03); }
  80% { box-shadow: 0 8px 32px 0 rgba(79,70,229,0.10); }
  100% { opacity: 1; transform: translateY(0) scale(1); box-shadow: 0 4px 18px 0 rgba(60,72,88,0.12); }
}
/* Responsive grid for cards */
@media (max-width: 991px) {
  .how-it-works .steps-row {
    flex-wrap: wrap;
    gap: 1.3rem;
  }
  .how-it-works .step-card {
  overflow: visible !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-width: 100vw !important;

    min-width: 0;
    width: 48%;
    margin-bottom: 1.2rem;
    padding: 1.4rem 0.7rem 1.1rem 0.7rem;
  }
}

/* Removed old how-it-works section CSS. Now modular in how-it-works.css */
.how-it-works .step-number {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.how-it-works .step-title {
  overflow: visible !important;
  word-break: break-word !important;
  white-space: normal !important;

  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: var(--primary-color, #4f46e5);
  text-align: center;
}
.how-it-works .step-options {
  overflow: visible !important;
  word-break: break-word !important;
  white-space: normal !important;

  list-style: none;
  padding: 0;
  margin: 0 0 0.2rem 0;
  color: var(--text-light, #6b7280);
  font-size: 1rem;
}
.how-it-works .step-options li {
  overflow: visible !important;
  word-break: break-word !important;
  white-space: normal !important;

  margin-bottom: 0.55em;
  line-height: 1.6;
}

/* Step Connectors (Desktop only) */
@media (min-width: 992px) {
  .how-it-works .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.25rem;
    width: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light, #818cf8) 0%, var(--primary-color, #4f46e5) 100%);
    opacity: 0.25;
    border-radius: 3px;
    transform: translateY(-50%);
    z-index: 0;
  }
}

/* Responsive: Stack on Mobile, Adjust Gaps */
@media (max-width: 991px) {
  .how-it-works .steps-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .how-it-works .step-card {
  overflow: visible !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-width: 100vw !important;

    max-width: 100%;
    margin-bottom: 1.2rem;
    min-width: 0;
    box-shadow: var(--box-shadow);
  }
  .how-it-works .step-card:not(:last-child)::after { display: none; }
}

/* Why Customers Love Section */
.why-love-OttMega Store.love-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.2rem;
}
.why-love-OttMega Store.love-item {
  background: #fff;
  border-radius: var(--border-radius-lg, 16px);
  box-shadow: var(--box-shadow);
  padding: 1.5rem 1rem 1.2rem 1rem;
  min-width: 180px;
  max-width: 260px;
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: fadeUpScaleIn 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: 0.2s;
  margin-bottom: 0;
  transition: box-shadow 0.28s, transform 0.28s, background 0.28s;
}
.why-love-OttMega Store.love-item[data-aos] {
  opacity: 1;
  transform: none;
}
.why-love-OttMega Store.love-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success-color, #10b981) 60%, #d1fae5 100%);
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(16,185,129,0.10);
  animation: iconPulse 1.7s infinite alternate cubic-bezier(0.4,0,0.2,1);
}
.why-love-OttMega Store.love-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-light, #6b7280);
  font-size: 0.96rem;
  font-weight: 500;
  padding: 0 0.5rem;
  flex-grow: 1;
}
.why-love-OttMega Store.love-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-color, #111827);
  margin-bottom: 0.25rem;
  display: block;
}
.why-love-OttMega Store.love-sub {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color,#4f46e5);
  margin-bottom: 0.2rem;
  display: block;
}
.why-love-OttMega Store.love-desc {
  font-size: 0.85rem;
  color: var(--text-light,#6b7280);
}
/* Card polish */
.why-love-OttMega Store.love-item {
  min-height: 260px;
  padding: 1.6rem 1rem 1.3rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow .25s, transform .25s;
}
.why-love-OttMega Store.love-item:hover,
.why-love-OttMega Store.love-item:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
@media (max-width: 991px) {
  .why-love-OttMega Store.love-list {
    flex-direction: column;
    gap: 1rem;
  }
  .why-love-OttMega Store.love-item {
    max-width: 100%;
    margin-bottom: 1rem;
    min-width: 0;
  }
}
/* --- END MOVED BLOCK --- */

.page-header {
  background: -webkit-linear-gradient(315deg, var(--primary-color, #4f46e5) 0%, var(--primary-dark, #3730a3) 100%);
  background: linear-gradient(135deg, var(--primary-color, #4f46e5) 0%, var(--primary-dark, #3730a3) 100%);
  color: white;
  padding: calc(var(--header-height, 80px) + 3rem) 0 3rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  will-change: transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  height: 60px;
}

.header .logo {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  margin-left: 0;
}

.header .container,
.header .container .logo {
  /* Remove inherited padding from .container for header only */
  padding-left: 0;
  margin-left: 0;
}

.header .logo img {
    max-width: 166px;
    width: 100%;
    height: auto;
    margin-left: 12px;
}

@media (max-width: 600px) {
  .header .logo img {
    max-width: 28px;
    width: 100%;
    height: auto;
    margin-left: 12px !important;
  }
  .header,
  .header .container,
  .header .logo {
    padding-left: 0;
    margin-left: 0;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .header .logo img {
    width: 150px;
    height: auto;
    margin-left: 12px;
    max-width: 220px;
    max-height: 220px;
  }
}


.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo span {
  color: var(--secondary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 1.5rem;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 700 !important;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #f5f7ff 0%, #e3e9ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Services Section */
.services {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card-link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link:hover, .service-card-link:focus {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1.5px 8px rgba(0,0,0,0.08);
  background: #f6f8fa;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, background 0.2s;
}

.service-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* USP Section */
.usp {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.usp-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.usp-item {
  display: flex;
  align-items: flex-start;
}

.usp-icon {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.usp-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.usp-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Packages Section */
.packages {
  padding: 5rem 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.package-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
}

.package-body {
  padding: 2rem;
}

.package-features {
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

.package-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.package-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0 var(--border-radius) 0 var(--border-radius);
}

/* Cart Section */
.cart {
  padding: 5rem 0;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th {
  background-color: var(--light-bg);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.cart-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-table .item-remove {
  color: var(--error-color);
  cursor: pointer;
}

.cart-summary {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.cart-summary h3 {
  margin-bottom: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cart-total:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.coupon-form {
  display: flex;
  margin-bottom: 2rem;
}

.coupon-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.coupon-form button {
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
}

.coupon-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.coupon-message.success {
  color: var(--success-color);
}

.coupon-message.error {
  color: var(--error-color);
}

/* Checkout Form */
.checkout-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: var(--border-radius, 8px);
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color, #4f46e5);
  -webkit-box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
          box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-error {
  color: var(--error-color);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Order Confirmation */
.order-confirmation {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--box-shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.faq-toggle {
  background-color: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
  will-change: max-height, padding;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.order-confirmation-header {
  text-align: center;
  margin-bottom: 2rem;
}

.order-confirmation-header i {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.order-confirmation-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.order-details {
  margin-bottom: 2rem;
}

.order-details-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.order-details-row:last-child {
  border-bottom: none;
}

.order-details-label {
  font-weight: 500;
}

/* Auth Forms */
.auth-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-light);
}

.auth-links {
  text-align: center;
  margin-top: 1.5rem;
}

.auth-links a {
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #fff;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(31, 41, 55, 0) 70%);
  border-radius: 50%;
  opacity: 0.5;
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, rgba(31, 41, 55, 0) 70%);
  border-radius: 50%;
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #d1d5db;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Legal Pages Styles */
.legal-section {
  padding: 3rem 0;
}

.legal-content {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.legal-section h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-color);
}

.legal-section p, .legal-section ul, .legal-section ol {
  margin-bottom: 1rem;
}

.legal-section ul, .legal-section ol {
  padding-left: 2rem;
}

.legal-section ul li, .legal-section ol li {
  margin-bottom: 0.5rem;
}

.legal-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-style: italic;
}

/* FAQ Page Styles */

/* --- Social Icons Clickable Patch (Cascade AI) --- */
.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  justify-content: flex-start;
  align-items: center;
  z-index: 10;
  position: relative;
  width: auto;
  overflow: visible;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.09);
  border-radius: 50%;
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 1px 4px 0 rgba(31,41,55,0.07);
  pointer-events: auto;
  z-index: 10;
  position: relative;
  border: 1px solid transparent;
}
.social-icons a:hover,
.social-icons a:focus {
  background: rgba(99,102,241,0.16);
  color: #6366f1;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 16px 0 rgba(99,102,241,0.10);
  border-color: #6366f1;
  outline: none;
}
.social-icons i {
  font-size: 22px;
  color: inherit;
}
/* --- End Patch --- */

/* --- Footer Contact Desktop Styles (Cascade AI) --- */
.footer-contact {
  padding: 0;
  margin: 0 0 16px 0;
  list-style: none;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  background: transparent;
  border-radius: 7px;
  padding: 0;
  transition: background 0.18s;
}
.footer-contact li:hover {
  background: rgba(99,102,241,0.07);
}
.footer-contact i {
  font-size: 18px;
  color: #6366f1;
  margin-right: 6px;
  width: 24px;
  text-align: center;
}
.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.18s;
  display: inline-block;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: #6366f1;
  text-decoration: underline;
  outline: none;
}
/* --- End Footer Contact Desktop Styles --- */

/* --- Homepage CTA Section Styles (Cascade AI) --- */

/* Force same height and style for all hero section buttons */
/* Optional: keep hero-btns .btn specific sizing if needed */

/* Match step section buttons to hero buttons */
.how-it-works .btn:not(.btn-sm),
.how-it-works .animate-on-click:not(.btn-sm),
.how-it-works a.btn:not(.btn-sm),
.how-it-works a.animate-on-click:not(.btn-sm) {
    padding: 13px 38px !important;
    font-size: 1.13rem !important;
    min-height: 48px;
    line-height: 1.2;
    border-radius: 8px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-btns .btn, .hero-btns .animate-on-click, .hero-btns a.btn, .hero-btns a.animate-on-click {
    padding: 13px 38px !important;
    font-size: 1.13rem !important;
    min-height: 48px;
    line-height: 1.2;
    border-radius: 8px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-btns .btn {
    padding: 13px 38px !important;
    font-size: 1.13rem !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    min-height: 52px;
    box-sizing: border-box;
}



.btn-success {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 32px;
  font-weight: 600;
  box-shadow: 0 2px 12px 0 rgba(39, 174, 96, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
  padding: 9px 12px;
}
@media (min-width: 769px) {
  .btn-success {
    padding: 17px 34px;
  }
}
.btn-success:hover, .btn-success:focus {
  background-color: #20b358;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(39, 174, 96, 0.18);
  outline: none;
}

.cta {
  background: #1e40af;
  color: #fff;
  padding: 34px 0 28px 0;
  text-align: center;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  /* Remove left/right/transform to prevent shifting */
  left: unset;
  right: unset;
  transform: none;
  display: block;
}
/* Prevent horizontal scroll due to 100vw on body/html */
body, html {
  overflow-x: hidden;
}

.cta .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(79,70,229,0.10);
}
.cta p {
  font-size: 1.18rem;
  margin-bottom: 26px;
  color: #e0e7ff;
  max-width: 480px;
}
.cta .btn {
  font-size: 1.13rem;
  padding: 15px 38px;
  border-radius: 32px;
  font-weight: 600;
  background: #fff;
  color: #4f46e5;
  box-shadow: 0 2px 12px 0 rgba(79,70,229,0.10);
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s;
  margin-top: 6px;
}
.cta .btn:hover, .cta .btn:focus {
  background: #6366f1;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(99,102,241,0.13);
}
@media (max-width: 650px) {
  .cta {
    padding: 38px 0 30px 0;
    border-radius: 12px;
  }
  .cta h2 {
    font-size: 1.7rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .cta .btn {
    font-size: 1rem;
    padding: 11px 22px;
  }
}
/* --- End Homepage CTA Section Styles --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: white;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--box-shadow-md);
}

.faq-question {
  padding: 1.2rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: var(--transition);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--light-bg);
}

.faq-item.active .faq-question {
  background-color: var(--primary-light);
  color: white;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.2rem;
}

.faq-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-category {
  padding: 0.5rem 1rem;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.faq-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

.faq-category.active {
  background-color: var(--primary-color);
  color: white;
}

/* Portfolio Page Styles */
.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.portfolio-filter .filter-btn {
  padding: 0.5rem 1rem;
  background-color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.portfolio-filter .filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

.portfolio-filter .filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-lg);
}

.portfolio-search{
  position:sticky;
  top:var(--header-height,80px);
  z-index:999;
  padding:0.75rem 0 1rem;
  background:#fff;
  text-align:center;
  margin:0 auto 1.5rem;
}
.portfolio-search input[type="search"]{max-width:320px;width:90%;padding:10px 14px;border:1px solid var(--border-color);border-radius:var(--border-radius);box-shadow:var(--box-shadow);transition:var(--transition);}
.portfolio-search input[type="search"]:focus{outline:none;border-color:var(--primary-color);box-shadow:var(--box-shadow-md);}

.portfolio-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.portfolio-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.portfolio-tag {
  font-size: 0.8rem;
  background-color: var(--light-bg);
  color: var(--text-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-bg-2);
  padding: 5rem 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
}

.testimonial-item::before {
  content: '\201C';
  font-size: 5rem;
  font-family: serif;
  color: var(--primary-light);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid var(--primary-light);
}

.testimonial-info h4 {
  margin: 0;
  font-size: 1rem;
}

.testimonial-info p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-rating {
  color: var(--secondary-color);
  margin-top: 0.3rem;
}

/* Blog Styles */
.blog-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-md);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.2rem;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-dark);
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.2rem;
}

.search-form {
  display: flex;
}

.search-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  outline: none;
  transition: var(--transition);
}

.search-form input:focus {
  border-color: var(--primary-color);
}

.search-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-form button:hover {
  background-color: var(--primary-dark);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.category-list a:hover {
  color: var(--primary-color);
}

.category-count {
  background-color: var(--light-bg);
  border-radius: 20px;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
}

.recent-post {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-image {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius);
  margin-right: 1rem;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.recent-post-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.4;
}

.recent-post-content h4 a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.recent-post-content h4 a:hover {
  color: var(--primary-color);
}

.recent-post-date {
  color: var(--text-light);
  font-size: 0.8rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  color: var(--text-color);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.pagination a:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-md);
}

.pagination .active {
  background-color: var(--primary-color);
  color: white;
}

.pagination .disabled {
  color: var(--text-light);
  cursor: not-allowed;
  opacity: 0.7;
}

.pagination a.prev::before {content:'\f104';font-family:'Font Awesome 5 Free';font-weight:900;margin-right:4px;}
.pagination a.next::after {content:'\f105';font-family:'Font Awesome 5 Free';font-weight:900;margin-left:4px;}
.pagination a, .pagination span {padding:0 18px;width:auto;height:42px;}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 5rem 0;
  margin: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-content.cta {
  background: var(--primary-color);
  color: #fff;
  padding: 4rem 0 3rem;
  text-align: center;
  margin-bottom: 0;
}

.cta-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.18rem;
  margin-bottom: 2rem;
}

.cta .btn {
  background: #25d366;
  color: #fff;
  font-size: 1.1rem;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--box-shadow-md);
  transition: var(--transition);
}

.cta .btn:hover {
  background: #128c7e;
}

.cta-services {
  background: var(--secondary-light);
  color: #1f2937;
  padding: 3.5rem 0 3rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.cta-services h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-services .btn {
  margin: 0 0.5rem;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.cta-services .btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.cta-services .btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-services .btn-primary:hover,
.cta-services .btn-outline:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

/* Order Tracking (track.php) Styles */
.order-tracking {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem 2rem;
  margin: 2.5rem 0 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.order-status {
  text-align: center;
  margin-bottom: 2rem;
}
.status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  background: var(--light-bg-2);
  color: var(--primary-color);
  box-shadow: 0 2px 6px rgba(79,70,229,0.07);
}
.status-badge.status-completed {
  background: var(--success-color);
  color: #fff;
}
.status-badge.status-processing {
  background: var(--info-color);
  color: #fff;
}
.status-badge.status-pending {
  background: var(--warning-color);
  color: #fff;
}
.status-badge.status-cancelled {
  background: var(--error-color);
  color: #fff;
}
.order-details {
  margin-top: 2rem;
}
.order-details h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.order-info {
  background: var(--light-bg-2);
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background: #fff;
}
.table th, .table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
}
.table th {
  background: var(--light-bg-2);
  color: var(--primary-color);
  font-weight: 600;
}
.table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .order-tracking {
    padding: 1.2rem 0.5rem;
  }
  .order-info {
    padding: 0.7rem 0.5rem;
  }
  .table th, .table td {
    padding: 0.55rem 0.4rem;
    font-size: 0.97rem;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Mobile menu button styles are in responsive-nav.css */

  
  .nav-menu {
    position: fixed;
    top: var(--header-height, 80px);
    left: -100%;
    width: 80%;
    height: calc(100vh - var(--header-height, 80px));
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem;
    -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  
  .nav-menu.active {
    left: 0;
    -webkit-animation: slideIn 0.3s forwards;
            animation: slideIn 0.3s forwards;
  }
  
  .nav-menu li {
    margin: 1rem 0;
    width: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: transform, opacity;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  
  .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  
  .cart-table thead {
    display: none;
  }
  
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  
  .cart-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
  }
  
  .cart-table td {
    text-align: right;
    padding: 0.8rem;
    position: relative;
    padding-left: 50%;
  }
  
  .cart-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 0.8rem;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
  }
}

/* Animation for mobile menu is defined in responsive-nav.css */

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .coupon-form {
    flex-direction: column;
  }
  
  .coupon-form input {
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
  }
  
  .coupon-form button {
    border-radius: var(--border-radius);
  }
}

@media (max-width: 600px) {
  /* Stacked mobile table for track page */
  .package-tracking-table .table {
    border: 0;
  }
  .package-tracking-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
  }
  .package-tracking-table .table tr {
    display: block;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    padding: 12px 15px;
  }
  .package-tracking-table .table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
  }
  .package-tracking-table .table td:last-child {
    border-bottom: 0;
  }
  .package-tracking-table .table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6b7280;
    margin-right: 1rem;
  }
  .package-tracking-table .table-responsive {
    overflow-x: hidden;
  }
}

/* Booking form reset button modern style */
.reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  padding: 0;
  font-size: 20px;
  line-height: 1;
  background: #ef4444;
  color: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: background 0.15s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.reset-btn:hover,
.reset-btn:focus {
  background: #dc2626;
  box-shadow: 0 2px 8px rgba(220,38,38,0.18);
  outline: none;
}
.reset-btn:active {
  transform: scale(0.92);
}