/* ===========================
   ENHANCED PRODUCT PAGES STYLES
   Professional & Interactive Design
=========================== */

/* ===========================
   RESET & GLOBAL STYLES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul{
 list-style-type: none
}
:root {
  --primary: #1e1b4b;
  --secondary: #10b981;
  --accent: #3b82f6;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #64748b;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--light);
  color: #1e293b;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Selection Color */
::selection {
  background: var(--secondary);
  color: var(--white);
}

/* ===========================
   PRELOADER
=========================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #2d1b69 50%, var(--primary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
  gap: 2rem;
}

.loader {
  width: 70px;
  height: 70px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--secondary);
  border-right: 5px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  position: relative;
}

.loader::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-bottom: 3px solid var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===========================
   HEADER / NAVBAR
=========================== */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1400px;
  margin: auto;
}

.brand_logo{
  width: 170px;
}

.brand img{
  width: 100%;
} 

.brand {
  display: flex;
  align-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -1px;
  transition: var(--transition);
  position: relative;
}

.nav {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: block;
  position: relative;
}

.nav-list li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list li a:hover {
  color: var(--secondary);
}

.nav-list li a:hover::before {
  width: 100%;
}

/* Submenu - Enhanced & Beautiful */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  padding: 1rem 0;
  list-style: none;
  margin-top: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 250px;
  opacity: 0;
  transform: translateY(-15px) scale(0.92);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(10px);
}

.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.submenu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 1px solid rgba(16, 185, 129, 0.15);
  transform: rotate(45deg);
  border-radius: 2px;
}

.submenu li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: #334155;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.submenu li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
  transition: width 0.3s ease;
  z-index: -1;
}

.submenu li a:hover::before {
  width: 100%;
}

.submenu li a::after {
  content: '→';
  margin-left: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--secondary);
  font-weight: 700;
}

.submenu li a:hover {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
  color: var(--secondary);
  padding-left: 2rem;
  border-left-color: var(--secondary);
}

.submenu li a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.hamburger {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -9px;
}

.hamburger::after {
  top: 9px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===========================
   HERO BANNER FOR PRODUCT PAGES
=========================== */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* ===========================
   PRODUCT DETAILS SECTION
=========================== */
.product-details {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem 2rem;
  position: relative;
}

.product-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0.5;
}

.buybutton a {
  background: #10b981;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  display: inline-block;
}

.buybutton a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.insurance_detals{
  margin-bottom: 40px;
}

.insurance_detals ul{
  display: flex;
  flex-direction: column;
  color: #000;
  margin-bottom: 40px;
}

.insurance_detals ul li{
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-details h2 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-details h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.product-details > .container > p {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  margin-top: 2rem;
}

.product-details .grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===========================
   PRODUCT CARDS (PREMIUM DESIGN)
=========================== */
.product-details .card {
  background: var(--white);
  padding: 3.5rem 3rem;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-details .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-details .card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  border-radius: 50%;
  z-index: 0;
}

.product-details .card:hover::before {
  transform: scaleX(1);
}

.product-details .card:hover::after {
  width: 500px;
  height: 500px;
}

.product-details .card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary);
}

.product-details .card h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: center;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.product-details .card h3::before {
  content: '✦';
  display: block;
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-10px) rotate(0deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-details .card:hover h3::before {
  opacity: 1;
  transform: translateY(0) rotate(180deg);
}

.product-details .card p {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  padding-left: 0.5rem;
}

.product-details .card p strong {
  color: var(--primary);
  font-weight: 700;
  display: inline-block;
  min-width: 120px;
}

.product-details .card .btn {
  margin-top: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ===========================
   QUOTE SECTION (ELEGANT DESIGN)
=========================== */
.quote {
  background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.quote h2 {
  font-size: 3rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 4rem;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.quote-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quote-form:hover::before {
  opacity: 0.2;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.8rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: #f8fafc;
  color: #1e293b;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #94a3b8;
}

.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}

.quote-form .btn {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.quote-form .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.quote-form .btn:hover::before {
  width: 500px;
  height: 500px;
}

.quote-form .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45);
}

.quote-form .btn:active {
  transform: translateY(-2px);
}

/* ===========================
   FORM MESSAGE
=========================== */
.form-msg {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
  border: 2px solid;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-msg.show {
  display: block;
}

.form-msg.success {
  background: #f0fdf4;
  color: #10b981;
  border-color: #10b981;
}

.form-msg.error {
  background: #fef2f2;
  color: #dc2626;
  border-color: #dc2626;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: var(--white);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-inner p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* ===========================
   BUTTON ENHANCEMENTS
=========================== */
.btn {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn span {
  position: relative;
  z-index: 1;
}

/* ===========================
   UTILITY ANIMATIONS
=========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===========================
   RESPONSIVE DESIGN - Tablet (992px)
=========================== */
@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }

  .header-inner {
    padding: 1rem 1.5rem;
  }

  .brand_logo {
    width: 150px;
  }

  .nav-list {
    gap: 1.8rem;
  }

  .nav-list li a {
    font-size: 0.9rem;
  }

  .product-details {
    padding: 6rem 1.5rem;
  }

  .product-details h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .product-details h2::after {
    bottom: -12px;
    width: 80px;
  }

  .product-details > .container > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
  }

  .product-details .grid.cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }

  .product-details .card {
    padding: 3rem 2.5rem;
  }

  .product-details .card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .product-details .card h3::before {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }

  .product-details .card p {
    font-size: 1rem;
  }

  .quote {
    padding: 6rem 1.5rem;
  }

  .quote h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .quote-form {
    padding: 3.5rem;
  }

  .quote-form input,
  .quote-form textarea {
    padding: 1rem 1.3rem;
    margin-bottom: 1.5rem;
  }

  .site-footer {
    padding: 3rem 1.5rem;
  }

  .insurance_detals ul li {
    font-size: 16px;
  }
}

/* ===========================
   RESPONSIVE DESIGN - Mobile (768px)
=========================== */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .header-inner {
    padding: 1rem 1rem;
  }

  .brand_logo {
    width: 130px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    gap: 0;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    border-radius: 0 0 16px 16px;
    box-shadow: var(--shadow-lg);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-list li:last-child {
    border-bottom: none;
  }

  .nav-list li a {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .nav-list li a::before {
    display: none;
  }

  .nav-list li a:hover {
    background: rgba(16, 185, 129, 0.08);
  }

  .has-submenu > a::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
  }

  .has-submenu.active > a::after {
    transform: rotate(180deg);
  }

  .has-submenu .submenu {
    position: static;
    display: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: none;
    margin-top: 0;
    background: #f0fdf4;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: auto;
    transition: all 0.4s ease;
    padding: 0;
  }

  .has-submenu .submenu::before {
    display: none;
  }

  .has-submenu:hover .submenu {
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
    max-height: 500px;
    opacity: 1;
    padding: 1rem 0;
  }

  .has-submenu .submenu li a {
    padding-left: 3rem;
    font-size: 0.85rem;
    color: #64748b;
    border-left: 3px solid transparent;
  }

  .has-submenu .submenu li a:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    border-left-color: var(--secondary);
  }

  .has-submenu .submenu li a::after {
    display: none;
  }

  .submenu.active {
    display: block;
  }

  .hero {
    height: 300px;
  }

  .product-details {
    padding: 4rem 1rem;
  }

  .product-details h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
  }

  .product-details h2::after {
    bottom: -10px;
    width: 60px;
    height: 4px;
  }

  .product-details > .container > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: 1.2rem;
  }

  .product-details .grid.cards {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    max-width: 100%;
  }

  .product-details .card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .product-details .card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .product-details .card h3::before {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
  }

  .product-details .card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .product-details .card p strong {
    min-width: 100px;
  }

  .quote {
    padding: 4rem 1rem;
  }

  .quote::before {
    width: 400px;
    height: 400px;
    top: -20%;
    right: -30%;
  }

  .quote h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
  }

  .quote-form {
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
  }

  .quote-form input,
  .quote-form textarea {
    padding: 1rem 1rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  .quote-form textarea {
    min-height: 120px;
  }

  .quote-form .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .buybutton a {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .insurance_detals {
    margin-bottom: 30px;
  }

  .insurance_detals ul li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .site-footer {
    padding: 2.5rem 1rem;
  }

  .footer-inner p {
    font-size: 0.95rem;
  }
}

/* ===========================
   RESPONSIVE DESIGN - Small Mobile (480px)
=========================== */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .header-inner {
    padding: 0.8rem 0.75rem;
  }

  .brand_logo {
    width: 110px;
  }

  .brand {
    font-size: 1.3rem;
    letter-spacing: -0.5px;
  }


  .hamburger,
  .hamburger::before,
  .hamburger::after {
    width: 24px;
  }

  .hamburger::before {
    top: -8px;
  }

  .hamburger::after {
    top: 8px;
  }

  .nav-list {
    top: 60px;
    border-radius: 0 0 12px 12px;
    padding: 1rem 0;
  }

  .nav-list li a {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
  }

  .hero {
    height: 250px;
  }

  .product-details {
    padding: 3rem 0.75rem;
  }

  .product-details h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }

  .product-details h2::after {
    width: 50px;
    bottom: -8px;
  }

  .product-details > .container > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    line-height: 1.6;
  }

  .product-details .grid.cards {
    gap: 1.5rem;
  }

  .product-details .card {
    padding: 1.5rem 1.2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
  }

  .product-details .card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .product-details .card h3::before {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .product-details .card p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .product-details .card p strong {
    display: block;
    min-width: auto;
    margin-bottom: 0.3rem;
  }

  .quote {
    padding: 3rem 0.75rem;
  }

  .quote::before {
    width: 300px;
    height: 300px;
    top: -15%;
    right: -40%;
  }

  .quote h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .quote-form {
    padding: 2rem 1.2rem;
    border-radius: 12px;
  }

  .quote-form input,
  .quote-form textarea {
    padding: 0.9rem 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .quote-form textarea {
    min-height: 100px;
  }

  .quote-form .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 25px;
  }

  .buybutton a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 25px;
  }

  .insurance_detals {
    margin-bottom: 25px;
  }

  .insurance_detals ul li {
    font-size: 15px;
    margin-bottom: 7px;
    font-weight: 500;
  }

  .site-footer {
    padding: 2rem 0.75rem;
  }

  .footer-inner p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .preloader {
    gap: 1.5rem;
  }

  .loader {
    width: 60px;
    height: 60px;
    border-width: 4px;
  }

  .loader::after {
    width: 35px;
    height: 35px;
    border-width: 2px;
  }
}