/* Buyverix - Fitness & Wellness Style Sheet */

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

/* CSS Variables */
:root {
  /* Color Palette */
  --buyverix-navy: #000957;
  --buyverix-blue: #344CB7;
  --buyverix-light-blue: #577BC1;
  --buyverix-yellow: #FFEB00;
  --buyverix-white: #ffffff;
  --buyverix-black: #111111;
  --buyverix-gray: #f5f5f5;
  
  /* Spacing System */
  --buyverix-space-xs: 0.5rem;
  --buyverix-space-sm: 1rem;
  --buyverix-space-md: 2rem;
  --buyverix-space-lg: 3rem;
  --buyverix-space-xl: 5rem;
  
  /* Typography */
  --buyverix-font-primary: 'Montserrat', sans-serif;
  --buyverix-font-secondary: 'Playfair Display', serif;
  
  /* Shadow */
  --buyverix-shadow-sm: 0 2px 4px rgba(0, 9, 87, 0.1);
  --buyverix-shadow-md: 0 4px 8px rgba(0, 9, 87, 0.15);
  --buyverix-shadow-lg: 0 8px 16px rgba(0, 9, 87, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--buyverix-font-primary);
  color: var(--buyverix-navy);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--buyverix-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--buyverix-font-secondary);
  margin-bottom: var(--buyverix-space-md);
  text-shadow: 1px 1px 1px rgba(0, 9, 87, 0.1);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.8rem;
  font-weight: 600;
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.8rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--buyverix-space-md);
  font-size: 1rem;
}

a {
  color: var(--buyverix-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--buyverix-light-blue);
}

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

.buyverix-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--buyverix-space-md) 0;
}

/* Header & Navigation */
.buyverix-header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.buyverix-header .buyverix-container{
  padding: 0;
}

.buyverix-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.buyverix-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000957;
}

.buyverix-logo svg {
  height: 35px;
  margin-right: 10px;
}

.buyverix-logo span {
  font-family: var(--buyverix-font-secondary);
  font-size: 1.6rem;
  font-weight: 700;
}

.buyverix-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.buyverix-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #000957;
  margin-bottom: 6px;
  transition: transform 0.3s, opacity 0.3s;
}

.buyverix-menu-toggle span:last-child {
  margin-bottom: 0;
}

.buyverix-nav {
  display: block;
}

.buyverix-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.buyverix-nav ul li {
  margin-left: 30px;
}

.buyverix-nav ul li a {
  color: #000957;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.buyverix-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFEB00;
  transition: width 0.3s;
}

.buyverix-nav ul li a:hover::after {
  width: 100%;
}

/* Top margin for content to accommodate fixed header */
.buyverix-hero {
  margin-top: 70px;
}

.buyverix-policy {
  padding-top: 100px;
}

/* Mobile menu animation */
.buyverix-mobile-menu-line.rotate-down {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.buyverix-mobile-menu-line.fade-out {
  opacity: 0;
}

.buyverix-mobile-menu-line.rotate-up {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Add a little padding to the page to account for the fixed header */
body {
  padding-top: 0;
}

/* Policy pages need extra padding because of fixed header */
.buyverix-policy {
  padding-top: 120px;
}

/* Hero Section */
.buyverix-hero {
  background-image: linear-gradient(rgba(0, 9, 87, 0.7), rgba(0, 9, 87, 0.7)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--buyverix-white);
  text-align: center;
  margin-top: 70px; /* Account for fixed header */
  padding: 0 var(--buyverix-space-md);
}

.buyverix-hero-content {
  max-width: 800px;
}

.buyverix-hero h1 {
  font-size: 4rem;
  margin-bottom: var(--buyverix-space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.buyverix-hero p {
  font-size: 1.4rem;
  margin-bottom: var(--buyverix-space-lg);
}

.buyverix-btn {
  display: inline-block;
  padding: var(--buyverix-space-sm) var(--buyverix-space-md);
  background-color: var(--buyverix-yellow);
  color: var(--buyverix-navy);
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: var(--buyverix-shadow-md);
}

.buyverix-btn:hover {
  background-color: var(--buyverix-white);
  transform: translateY(-3px);
  box-shadow: var(--buyverix-shadow-lg);
}

/* Section Styles */
.buyverix-section {
  padding: var(--buyverix-space-xl) 0;
}

.buyverix-section-title {
  text-align: center;
  margin-bottom: var(--buyverix-space-lg);
}

.buyverix-section-title h2 {
  display: inline-block;
  position: relative;
  word-break: break-all;
}

.buyverix-section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--buyverix-yellow);
}

/* About Section */
.buyverix-about {
  background-color: var(--buyverix-gray);
}

.buyverix-about-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--buyverix-space-lg);
  align-items: center;
}

.buyverix-about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--buyverix-shadow-md);
  transform: rotate(2deg);
  transition: all 0.3s ease;
}

.buyverix-about-image:hover {
  transform: rotate(0);
}

.buyverix-about-text h3 {
  margin-bottom: var(--buyverix-space-sm);
}

/* Services Section */
.buyverix-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--buyverix-space-md);
}

.buyverix-service-card {
  background-color: var(--buyverix-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--buyverix-shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buyverix-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--buyverix-shadow-lg);
}

.buyverix-service-image {
  height: 234px;
  overflow: hidden;
}

.buyverix-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.buyverix-service-card:hover .buyverix-service-image img {
  transform: scale(1.1);
}

.buyverix-service-content {
  padding: var(--buyverix-space-md);
}

.buyverix-service-content h4 {
  margin-bottom: var(--buyverix-space-sm);
}

.buyverix-service-icon {
  display: flex;
  align-items: center;
  margin: var(--buyverix-space-sm) 0;
}

.buyverix-service-icon svg {
  width: 40px;
  height: 40px;
  margin-right: var(--buyverix-space-xs);
  fill: var(--buyverix-blue);
}

/* Products Section */
.buyverix-products {
  background-color: var(--buyverix-navy);
  color: var(--buyverix-white);
}

.buyverix-products .buyverix-section-title h2::after {
  background-color: var(--buyverix-yellow);
}

.buyverix-price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--buyverix-space-md);
}

.buyverix-price-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: var(--buyverix-space-md);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buyverix-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--buyverix-yellow);
}

.buyverix-price-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.buyverix-price-title {
  font-size: 1.4rem;
  margin-bottom: var(--buyverix-space-sm);
}

.buyverix-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--buyverix-space-sm);
  color: var(--buyverix-yellow);
}

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

.buyverix-price-features {
  list-style: none;
  margin-bottom: var(--buyverix-space-md);
}

.buyverix-price-features li {
  margin-bottom: var(--buyverix-space-xs);
  padding-bottom: var(--buyverix-space-xs);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Testimonials Section */
.buyverix-testimonials {
  background-color: var(--buyverix-gray);
}

.buyverix-testimonials-slider {
  position: relative;
  overflow: hidden;
}

.buyverix-testimonial-card {
  background-color: var(--buyverix-white);
  padding: var(--buyverix-space-md);
  border-radius: 10px;
  box-shadow: var(--buyverix-shadow-md);
  margin: 0 var(--buyverix-space-sm);
}

.buyverix-testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: var(--buyverix-space-sm);
}

.buyverix-testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--buyverix-space-sm);
}

.buyverix-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buyverix-testimonial-author h4 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.buyverix-testimonial-author p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--buyverix-light-blue);
}

.buyverix-testimonial-text {
  font-style: italic;
}

.buyverix-testimonial-quote {
  font-size: 3rem;
  color: var(--buyverix-yellow);
  line-height: 1;
}

/* Image Gallery */
.buyverix-gallery {
  padding: var(--buyverix-space-xl) 0;
}

.buyverix-gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--buyverix-space-sm);
}

.buyverix-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.buyverix-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.buyverix-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 9, 87, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.buyverix-gallery-item:hover .buyverix-gallery-overlay {
  opacity: 1;
}

.buyverix-gallery-overlay svg {
  width: 50px;
  height: 50px;
  fill: var(--buyverix-white);
}

/* Gallery Modal */
.buyverix-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  padding: var(--buyverix-space-md);
}

.buyverix-gallery-modal-content {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.buyverix-gallery-modal-img {
  max-width: 90%;
  max-height: 90%;
}

.buyverix-gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: var(--buyverix-white);
  cursor: pointer;
}

.buyverix-gallery-prev, .buyverix-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--buyverix-white);
  font-size: 30px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buyverix-gallery-prev {
  left: 20px;
}

.buyverix-gallery-next {
  right: 20px;
}

/* Contact Section */
.buyverix-contact {
  background-color: var(--buyverix-navy);
  color: var(--buyverix-white);
}

.buyverix-contact .buyverix-section-title h2::after {
  background-color: var(--buyverix-yellow);
}

.buyverix-contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--buyverix-space-lg);
}

.buyverix-contact-info h3 {
  margin-bottom: var(--buyverix-space-md);
}

.buyverix-contact-details {
  margin-bottom: var(--buyverix-space-md);
}

.buyverix-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--buyverix-space-sm);
}

.buyverix-contact-icon {
  margin-right: var(--buyverix-space-sm);
  width: 24px;
  height: 24px;
  fill: var(--buyverix-yellow);
}

.buyverix-contact-text {
  flex: 1;
}

.buyverix-contact-text h4 {
  margin-bottom: var(--buyverix-space-xs);
  font-size: 1.2rem;
}

.buyverix-contact-text p, .buyverix-contact-text a {
  margin-bottom: 0;
  color: var(--buyverix-white);
}

.buyverix-contact-text a:hover {
  color: var(--buyverix-yellow);
}

.buyverix-form-group {
  margin-bottom: var(--buyverix-space-md);
}

.buyverix-form-control {
  width: 100%;
  padding: var(--buyverix-space-sm);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 5px;
  color: var(--buyverix-white);
  font-family: var(--buyverix-font-primary);
}

.buyverix-form-control option{
  color: var(--buyverix-navy);
}

.buyverix-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.buyverix-form-control:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}

textarea.buyverix-form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.buyverix-footer {
  background-color: var(--buyverix-black);
  color: var(--buyverix-white);
  padding: var(--buyverix-space-lg) 0;
}

.buyverix-footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--buyverix-space-md);
}

.buyverix-footer-logo {
  margin-bottom: var(--buyverix-space-md);
}

.buyverix-footer-logo svg {
  height: 40px;
  margin-bottom: var(--buyverix-space-xs);
  fill: var(--buyverix-white);
}

.buyverix-footer-logo h4 {
  font-family: var(--buyverix-font-secondary);
  font-size: 1.8rem;
  margin-bottom: var(--buyverix-space-xs);
}

.buyverix-footer-social {
  display: flex;
  margin-top: var(--buyverix-space-sm);
}

.buyverix-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: var(--buyverix-space-xs);
  transition: all 0.3s ease;
}

.buyverix-social-link:hover {
  background-color: var(--buyverix-yellow);
}

.buyverix-social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--buyverix-white);
}

.buyverix-social-link:hover svg {
  fill: var(--buyverix-navy);
}

.buyverix-footer-title {
  font-size: 1.4rem;
  margin-bottom: var(--buyverix-space-md);
  position: relative;
  padding-bottom: var(--buyverix-space-xs);
}

.buyverix-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--buyverix-yellow);
}

.buyverix-footer-links {
  list-style: none;
}

.buyverix-footer-links li {
  margin-bottom: var(--buyverix-space-xs);
}

.buyverix-footer-links a {
  color: var(--buyverix-white);
  transition: all 0.3s ease;
}

.buyverix-footer-links a:hover {
  color: var(--buyverix-yellow);
  padding-left: var(--buyverix-space-xs);
}

.buyverix-footer-bottom {
  margin-top: var(--buyverix-space-lg);
  padding-top: var(--buyverix-space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.buyverix-copyright {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Thank You Page */
.buyverix-thankyou {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--buyverix-navy), var(--buyverix-blue));
  color: var(--buyverix-white);
}

.buyverix-thankyou-content {
  max-width: 600px;
  padding: var(--buyverix-space-lg);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.buyverix-thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--buyverix-space-md);
  fill: var(--buyverix-yellow);
}

.buyverix-thankyou h1 {
  margin-bottom: var(--buyverix-space-md);
  line-height: 43px;
}

.buyverix-thankyou p {
  margin-bottom: var(--buyverix-space-sm);
}

/* Policy Pages */
.buyverix-policy {
  padding: calc(var(--buyverix-space-xl) * 1.5) 0 var(--buyverix-space-xl);
}

.buyverix-policy-container {
  max-width: 900px;
  margin: 0 auto;
}

.buyverix-policy-title {
  margin-bottom: var(--buyverix-space-sm);
  margin-top: 20px;
}

.buyverix-policy-section {
  margin-bottom: var(--buyverix-space-lg);
}

.buyverix-policy-section h3 {
  margin-bottom: var(--buyverix-space-sm);
  font-size: 1.8rem;
}

.buyverix-policy-section p, .buyverix-policy-section ul, .buyverix-policy-section ol {
  margin-bottom: var(--buyverix-space-sm);
}

.buyverix-policy-section ul, .buyverix-policy-section ol {
  padding-left: var(--buyverix-space-md);
}

.buyverix-policy-section li {
  margin-bottom: var(--buyverix-space-xs);
}

.buyverix-last-updated {
  font-style: italic;
  margin-bottom: var(--buyverix-space-md);
  color: var(--buyverix-light-blue);
}

/* Media Queries */
@media (max-width: 1200px) {
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }

  h4{
    font-size: 1.6rem;
  }
  
  .buyverix-hero h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  /* Header */
  .buyverix-menu-toggle {
    display: block;
  }
  
  .buyverix-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .buyverix-services-grid {
  grid-template-columns: repeat(2, 1fr);
  }
  
  .buyverix-nav.active {
    transform: translateY(0);
  }
  
  .buyverix-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .buyverix-nav ul li {
    margin: 10px 0;
  }
  
  .buyverix-nav ul li a {
    font-size: 1.2rem;
    padding: 10px 0;
    display: block;
  }
  
  /* When menu is open */
  .menu-open .buyverix-menu-toggle span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-open .buyverix-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-open .buyverix-menu-toggle span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Increase font sizes */
  body {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  h3 {
    font-size: 2.3rem;
  }
  
  h4 {
    font-size: 2rem;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  /* Increase spacing */
  :root {
    --buyverix-space-sm: 1.2rem;
    --buyverix-space-md: 2.5rem;
    --buyverix-space-lg: 4rem;
    --buyverix-space-xl: 6rem;
  }

  .buyverix-section{
    padding: var(--buyverix-space-lg) 0;
  }
  
  /* Larger buttons */
  .buyverix-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
  
  /* Content starts below fixed header */
  .buyverix-hero {
    margin-top: 70px;
  }
  
  /* Adjust grid layouts */
  .buyverix-about-content,
  .buyverix-contact-container,
  .buyverix-footer-container {
    grid-template-columns: 1fr;
    gap: var(--buyverix-space-lg);
  }
  
  .buyverix-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Increase card sizes */
  .buyverix-service-card,
  .buyverix-price-card,
  .buyverix-testimonial-card {
    padding: var(--buyverix-space-md);
  }
  
  .buyverix-service-image {
    height: 250px;
  }
  
  .buyverix-service-content{
    padding: 0;
  }

  /* Larger icons */
  .buyverix-service-icon svg,
  .buyverix-contact-icon {
    width: 50px;
    height: 50px;
  }
  
  /* Form elements */
  .buyverix-form-control {
    padding: 1.2rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .buyverix-header-inner {
    padding: 12px 0;
  }
  
  .buyverix-logo svg {
    height: 30px;
  }
  
  .buyverix-logo span {
    font-size: 1.4rem;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 2rem;
  }
  
  .buyverix-hero h1 {
    font-size: 2rem;
  }

  .buyverix-nav {
    top: 60px;
  }
  
  .buyverix-hero {
    margin-top: 65px;
  }

  .buyverix-services-grid {
  grid-template-columns: 1fr;
  }
  

  .buyverix-policy {
    padding-top: 85px;
  }
  
  .buyverix-footer-container {
    grid-template-columns: 1fr;
  }
  
  .buyverix-gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .buyverix-header-inner {
    padding: 10px 0;
  }
  
  .buyverix-logo svg {
    height: 25px;
  }
  
  .buyverix-logo span {
    font-size: 1.2rem;
  }
  
  .buyverix-menu-toggle {
    width: 25px;
    height: 20px;
  }
  
  .buyverix-menu-toggle span {
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
  }
  
  .buyverix-nav {
    top: 44px;
  }
  
  /* Adjust animation for smaller menu toggle */
  .menu-open .buyverix-menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-open .buyverix-menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .buyverix-hero {
    margin-top: 55px;
  }
  
  .buyverix-policy {
    padding-top: 75px;
  }
  
  /* Increase font sizes even more */
  body {
    font-size: 1.2rem;
  }
  
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.3rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  p {
    font-size: 0.75rem;
  }
  
  /* Adjust layout further */
  .buyverix-container {
    width: 95%;
  }
  
  .buyverix-gallery-container {
    grid-template-columns: 1fr;
  }
  
  .buyverix-gallery-item img {
    height: 350px;
  }
  
  /* Larger buttons for mobile */
  .buyverix-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.3rem;
    font-size: 1.2rem;
  }

  .buyverix-policy-section li,.buyverix-policy-section p {
    font-size: 1rem;
  }

  .buyverix-policy-section h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Header adjustments */
  .buyverix-header-inner {
    padding: 8px 0;
  }
  
  .buyverix-logo svg {
    height: 22px;
  }
  
  .buyverix-logo span {
    font-size: 1.1rem;
  }
  
  /* Menu toggle and navigation */
  .buyverix-menu-toggle {
    width: 22px;
    height: 18px;
  }
  
  .buyverix-menu-toggle span {
    width: 22px;
    height: 2px;
    margin-bottom: 4px;
  }
  
  .buyverix-nav {
    padding: 15px;
  }
  
  .buyverix-nav ul li a {
    font-size: 1.1rem;
    padding: 12px 0;
  }
  
  /* Animation adjustments */
  .menu-open .buyverix-menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }
  
  .menu-open .buyverix-menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }
  
  /* Typography and spacing */
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }

  h4{
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .buyverix-hero p{
    font-size: 1.2rem;
  }
  
  /* Layout and spacing */
  .buyverix-hero {
    margin-top: 50px;
    height: 100vh;
  }
  
  .buyverix-policy {
    padding-top: 65px;
  }
  
  .buyverix-container {
    width: 92%;
    padding: 0;
  }
  
  /* Buttons and interactive elements */
  .buyverix-btn {
    padding: 1rem;
    font-size: 1rem;
  }
  
  /* Cards and content elements */
  .buyverix-service-card,
  .buyverix-price-card,
  .buyverix-testimonial-card {
    padding: 15px;
  }
  
  .buyverix-service-image {
    height: 200px;
  }

  .buyverix-footer-container{
    gap: var(--buyverix-space-sm);
  }
  
  /* Form elements */
  .buyverix-form-control {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  /* Section spacing */
  .buyverix-section {
    padding: 40px 0;
  }
  
  /* Gallery adjustments */
  .buyverix-gallery-item img {
    height: 250px;
  }
  
  /* Footer adjustments */
  .buyverix-footer-item {
    margin-bottom: 30px;
  }

  .buyverix-contact-icon{
    width: 35px;
    height: 35px;
  }

  .buyverix-section-title h2{
    font-size: 1.75rem;
  }
  
  .buyverix-gallery,
  .buyverix-testimonials,
  .buyverix-price,
  .buyverix-about,
  .buyverix-hero{
    padding: var(--buyverix-space-md) 0;
  }
  
  .buyverix-footer-logo svg {
    height: 30px;
  }
  .buyverix-section-title {
    margin-bottom: var(--buyverix-space-md);
}
.buyverix-price {
    font-size: 2rem;
}
    .buyverix-about-content, .buyverix-contact-container, .buyverix-footer-container {
        gap: var(--buyverix-space-md);
    }
}

/* For very small screens */
@media (max-width: 360px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.6rem;
  }
  
  .buyverix-container {
    width: 92%;
    padding: 0;
  }
}