/* 
 * Novazilla - Fitness Studio CSS
 * Created: May 20, 2025
 */

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

/* CSS Variables */
:root {
  /* Colors */
  --novazilla-dark: #222831;
  --novazilla-dark-secondary: #393E46;
  --novazilla-accent: #948979;
  --novazilla-light: #DFD0B8;
  --novazilla-white: #ffffff;
  --novazilla-black: #000000;
  
  /* Spacing */
  --novazilla-space-xs: 0.5rem;
  --novazilla-space-sm: 1rem;
  --novazilla-space-md: 2rem;
  --novazilla-space-lg: 3rem;
  --novazilla-space-xl: 5rem;
  
  /* Typography */
  --novazilla-font-heading: 'Playfair Display', serif;
  --novazilla-font-body: 'Montserrat', sans-serif;
  
  /* Border radius */
  --novazilla-radius-sm: 4px;
  --novazilla-radius-md: 8px;
  --novazilla-radius-lg: 16px;
  
  /* Transitions */
  --novazilla-transition-fast: 0.2s ease;
  --novazilla-transition-normal: 0.3s ease;
  --novazilla-transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--novazilla-font-heading);
  margin-bottom: var(--novazilla-space-sm);
  line-height: 1.3;
  color: var(--novazilla-dark);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.05);
}

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

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: var(--novazilla-space-md);
}

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

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

p {
  margin-bottom: var(--novazilla-space-sm);
}

a {
  color: var(--novazilla-accent);
  text-decoration: none;
  transition: color var(--novazilla-transition-fast);
}

a:hover {
  color: var(--novazilla-dark-secondary);
}

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

button {
  cursor: pointer;
}

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

.novazilla-section {
  padding: var(--novazilla-space-lg) 0;
}

/* Header Styles */
.novazilla-header {
  background-color: var(--novazilla-white);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--novazilla-space-xs) 0;
  transition: all var(--novazilla-transition-normal);
}

.novazilla-header-scrolled {

}

.novazilla-header-scrolled .novazilla-nav-item a {
  color: var(--novazilla-white);
}

.novazilla-header-scrolled .novazilla-logo-text {
  color: var(--novazilla-white);
}

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

.novazilla-logo {
  display: flex;
  align-items: center;
}

.novazilla-logo-img {
  width: 180px;
  height: auto;
}

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

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

.novazilla-nav-item {
  margin-left: var(--novazilla-space-md);
}

.novazilla-nav-item a {
  font-weight: 500;
  position: relative;
  padding: var(--novazilla-space-xs) 0;
  color: var(--novazilla-dark);
}

.novazilla-nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--novazilla-accent);
  transition: width var(--novazilla-transition-normal);
}

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

.novazilla-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--novazilla-dark);
  cursor: pointer;
}

.novazilla-header-scrolled .novazilla-mobile-menu-toggle {
 
}

/* Hero Section */
.novazilla-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--novazilla-light);
  overflow: hidden;
}

.novazilla-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(34, 40, 49, 0.7), rgba(34, 40, 49, 0.7)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.novazilla-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--novazilla-white);
  animation: novazilla-fade-in 1s ease;
}

.novazilla-hero-title {
  color: var(--novazilla-white);
  font-size: 3.5rem;
  margin-bottom: var(--novazilla-space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.novazilla-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--novazilla-space-lg);
  color: var(--novazilla-light);
  max-width: 600px;
}

.novazilla-btn {
  display: inline-block;
  padding: var(--novazilla-space-sm) var(--novazilla-space-md);
  background-color: var(--novazilla-accent);
  color: var(--novazilla-white);
  border: none;
  border-radius: var(--novazilla-radius-md);
  font-weight: 600;
  text-align: center;
  transition: all var(--novazilla-transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 10px;
}

.novazilla-btn:hover {
  background-color: var(--novazilla-dark-secondary);
  color: var(--novazilla-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.novazilla-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--novazilla-space-lg);
  align-items: center;
}

.novazilla-about-img-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--novazilla-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.novazilla-about-img {
  transition: transform var(--novazilla-transition-slow);
}

.novazilla-about-img-container:hover .novazilla-about-img {
  transform: scale(1.05);
}

.novazilla-about-content {
  padding: var(--novazilla-space-md);
}

.novazilla-about-title {
  position: relative;
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--novazilla-accent);
}

.novazilla-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--novazilla-space-md);
  margin-top: var(--novazilla-space-lg);
}

.novazilla-stat-item {
  text-align: center;
  padding: var(--novazilla-space-md);
  background-color: var(--novazilla-light);
  border-radius: var(--novazilla-radius-md);
  transition: transform var(--novazilla-transition-normal);
}

.novazilla-stat-item:hover {
  transform: translateY(-10px);
}

.novazilla-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--novazilla-dark);
  margin-bottom: var(--novazilla-space-xs);
  font-family: var(--novazilla-font-heading);
}

.novazilla-stat-label {
  font-size: 1rem;
  color: var(--novazilla-dark-secondary);
  font-weight: 500;
}

/* Services Section */
.novazilla-services {
  background-color: var(--novazilla-light);
  position: relative;
  overflow: hidden;
}

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

.novazilla-section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--novazilla-space-lg);
  color: var(--novazilla-dark-secondary);
}

.novazilla-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--novazilla-space-md);
}

.novazilla-service-card {
  background-color: var(--novazilla-white);
  border-radius: var(--novazilla-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--novazilla-transition-normal), box-shadow var(--novazilla-transition-normal);
  display: flex;
justify-content: space-between;
flex-direction: column;
}

.novazilla-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.novazilla-service-img-container {
  height: 200px;
  overflow: hidden;
}

.novazilla-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--novazilla-transition-slow);
}

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

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

.novazilla-service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: var(--novazilla-space-sm);
  fill: var(--novazilla-accent);
}

.novazilla-service-title {
  font-size: 1.5rem;
  margin-bottom: var(--novazilla-space-sm);
}

.novazilla-service-desc {
  color: var(--novazilla-dark-secondary);
  margin-bottom: var(--novazilla-space-md);
}

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

.novazilla-pricing-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--novazilla-space-md);
}

.novazilla-pricing-card {
  background-color: var(--novazilla-white);
  border-radius: var(--novazilla-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--novazilla-transition-normal);
  border: 1px solid var(--novazilla-light);
  position: relative;
}

.novazilla-pricing-card:hover {
  transform: translateY(-10px);
}

.novazilla-pricing-card.novazilla-featured {
  border-color: var(--novazilla-accent);
  transform: scale(1.05);
}

.novazilla-pricing-card.novazilla-featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.novazilla-pricing-header {
  background-color: var(--novazilla-light);
  padding: var(--novazilla-space-md);
  text-align: center;
  position: relative;
}

.novazilla-featured .novazilla-pricing-header {
  background-color: var(--novazilla-accent);
  color: var(--novazilla-white);
}

.novazilla-featured .novazilla-pricing-title {
  color: var(--novazilla-white);
}

.novazilla-pricing-badge {
  position: absolute;
  top: 0;
  right: var(--novazilla-space-md);
  background-color: var(--novazilla-dark);
  color: var(--novazilla-white);
  padding: var(--novazilla-space-xs) var(--novazilla-space-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 0 var(--novazilla-radius-sm) var(--novazilla-radius-sm);
}

.novazilla-pricing-title {
  font-size: 1.8rem;
  margin-bottom: var(--novazilla-space-xs);
}

.novazilla-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--novazilla-dark);
  margin-bottom: var(--novazilla-space-xs);
  font-family: var(--novazilla-font-heading);
}

.novazilla-featured .novazilla-price {
  color: var(--novazilla-white);
}

.novazilla-price-period {
  font-size: 1rem;
  color: var(--novazilla-dark-secondary);
  font-weight: 400;
}

.novazilla-featured .novazilla-price-period {
  color: var(--novazilla-light);
}

.novazilla-pricing-features {
  padding: var(--novazilla-space-md);
  list-style: none;
}

.novazilla-pricing-feature {
  padding: var(--novazilla-space-xs) 0;
  display: flex;
  align-items: center;
  color: var(--novazilla-dark-secondary);
}

.novazilla-pricing-feature::before {
  content: '✓';
  color: var(--novazilla-accent);
  margin-right: var(--novazilla-space-xs);
  font-weight: 700;
}

.novazilla-pricing-footer {
  padding: var(--novazilla-space-md);
  text-align: center;
}

/* Team Section */
.novazilla-team {
  background-color: var(--novazilla-light);
}

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

.novazilla-team-card {
  background-color: var(--novazilla-white);
  border-radius: var(--novazilla-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform var(--novazilla-transition-normal);
}

.novazilla-team-card:hover {
  transform: translateY(-10px);
}

.novazilla-team-img-container {
  height: 250px;
  overflow: hidden;
}

.novazilla-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--novazilla-transition-slow);
}

.novazilla-team-card:hover .novazilla-team-img {
  transform: scale(1.1);
}

.novazilla-team-content {
  padding: var(--novazilla-space-md);
  text-align: center;
}

.novazilla-team-name {
  font-size: 1.5rem;
  margin-bottom: var(--novazilla-space-xs);
}

.novazilla-team-position {
  color: var(--novazilla-accent);
  font-weight: 500;
  margin-bottom: var(--novazilla-space-sm);
}

.novazilla-team-bio {
  color: var(--novazilla-dark-secondary);
  font-size: 0.9rem;
}

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

.novazilla-testimonial-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 800px;
}

.novazilla-testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--novazilla-transition-normal);
  text-align: center;
  padding: var(--novazilla-space-md);
}

.novazilla-testimonial-slide.novazilla-active {
  display: block;
  opacity: 1;
}

.novazilla-testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--novazilla-dark-secondary);
  margin-bottom: var(--novazilla-space-md);
  position: relative;
}

.novazilla-testimonial-quote::before,
.novazilla-testimonial-quote::after {
  content: '"';
  font-size: 3rem;
  color: var(--novazilla-accent);
  position: absolute;
  opacity: 0.3;
  font-family: var(--novazilla-font-heading);
}

.novazilla-testimonial-quote::before {
  top: -20px;
  left: 0;
}

.novazilla-testimonial-quote::after {
  bottom: -40px;
  right: 0;
  content: '"';
}

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

.novazilla-testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--novazilla-space-sm);
  border: 3px solid var(--novazilla-accent);
}

.novazilla-testimonial-name {
  font-weight: 600;
  color: var(--novazilla-dark);
  margin-bottom: var(--novazilla-space-xs);
}

.novazilla-testimonial-role {
  color: var(--novazilla-accent);
  font-size: 0.9rem;
}

.novazilla-slider-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--novazilla-space-md);
}

.novazilla-slider-arrow {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--novazilla-accent);
  cursor: pointer;
  transition: color var(--novazilla-transition-fast);
  margin: 0 var(--novazilla-space-sm);
}

.novazilla-slider-arrow:hover {
  color: var(--novazilla-dark);
}

.novazilla-slider-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--novazilla-space-sm);
}

.novazilla-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--novazilla-light);
  margin: 0 var(--novazilla-space-xs);
  cursor: pointer;
  transition: background-color var(--novazilla-transition-fast);
}

.novazilla-slider-dot.novazilla-active {
  background-color: var(--novazilla-accent);
}

/* Schedule Section */
.novazilla-schedule {
  background-color: var(--novazilla-light);
}

.novazilla-schedule-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--novazilla-space-md);
  border-bottom: 2px solid var(--novazilla-accent);
}

.novazilla-schedule-tab {
  padding: var(--novazilla-space-sm) var(--novazilla-space-md);
  background: none;
  border: none;
  font-weight: 600;
  color: var(--novazilla-dark-secondary);
  cursor: pointer;
  transition: all var(--novazilla-transition-fast);
  position: relative;
}

.novazilla-schedule-tab.novazilla-active {
  color: var(--novazilla-accent);
}

.novazilla-schedule-tab.novazilla-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--novazilla-accent);
}

.novazilla-schedule-content {
  display: none;
  opacity: 0;
  transition: opacity var(--novazilla-transition-normal);
}

.novazilla-schedule-content.novazilla-active {
  display: block;
  opacity: 1;
}

.novazilla-schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--novazilla-white);
  border-radius: var(--novazilla-radius-md);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.novazilla-schedule-table th,
.novazilla-schedule-table td {
  padding: var(--novazilla-space-sm);
  text-align: left;
  border-bottom: 1px solid var(--novazilla-light);
}

.novazilla-schedule-table th {
  background-color: var(--novazilla-accent);
  color: var(--novazilla-white);
  font-weight: 600;
}

.novazilla-schedule-table tr:last-child td {
  border-bottom: none;
}

.novazilla-schedule-table tr:hover td {
  background-color: rgba(148, 137, 121, 0.1);
}

.novazilla-class-name {
  font-weight: 600;
  color: var(--novazilla-dark);
}

.novazilla-class-instructor {
  font-size: 0.9rem;
  color: var(--novazilla-accent);
}

/* Contact Section */
.novazilla-contact {
  position: relative;
}

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

.novazilla-contact-info {
  background-color: var(--novazilla-dark);
  padding: var(--novazilla-space-lg);
  border-radius: var(--novazilla-radius-md);
  color: var(--novazilla-white);
}

.novazilla-contact-title {
  color: var(--novazilla-white);
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-contact-subtitle {
  color: var(--novazilla-light);
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-contact-list {
  list-style: none;
  margin-bottom: var(--novazilla-space-md);
}

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

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

.novazilla-contact-text {
  color: var(--novazilla-light);
}

.novazilla-map {
  height: 300px;
  background-color: var(--novazilla-light);
  border-radius: var(--novazilla-radius-md);
  margin-top: var(--novazilla-space-md);
  overflow: hidden;
}

.novazilla-form-container {
  background-color: var(--novazilla-white);
  padding: var(--novazilla-space-lg);
  border-radius: var(--novazilla-radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.novazilla-form-title {
  margin-bottom: var(--novazilla-space-md);
}

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

.novazilla-form-label {
  display: block;
  margin-bottom: var(--novazilla-space-xs);
  font-weight: 500;
  color: var(--novazilla-dark);
}

.novazilla-form-input,
.novazilla-form-textarea {
  width: 100%;
  padding: var(--novazilla-space-sm);
  border: 1px solid var(--novazilla-light);
  border-radius: var(--novazilla-radius-sm);
  font-family: var(--novazilla-font-body);
  transition: border-color var(--novazilla-transition-fast);
}

.novazilla-form-input:focus,
.novazilla-form-textarea:focus {
  outline: none;
  border-color: var(--novazilla-accent);
}

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

/* Footer */
.novazilla-footer {
  background-color: var(--novazilla-dark);
  color: var(--novazilla-light);
  padding: var(--novazilla-space-lg) 0;
}

.novazilla-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr ;
  gap: var(--novazilla-space-lg);
}

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

.novazilla-footer-logo {
  width: 150px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--novazilla-space-sm);
}

.novazilla-footer-text {
  color: var(--novazilla-light);
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-footer-title {
  color: var(--novazilla-white);
  font-size: 1.2rem;
  margin-bottom: var(--novazilla-space-md);
  position: relative;
}

.novazilla-footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--novazilla-accent);
}

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

.novazilla-footer-link {
  margin-bottom: var(--novazilla-space-xs);
}

.novazilla-footer-link a {
  color: var(--novazilla-light);
  transition: color var(--novazilla-transition-fast);
}

.novazilla-footer-link a:hover {
  color: var(--novazilla-accent);
}

.novazilla-footer-bottom {
  margin-top: var(--novazilla-space-lg);
  padding-top: var(--novazilla-space-md);
  border-top: 1px solid rgba(223, 208, 184, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.novazilla-copyright {
  color: var(--novazilla-light);
  font-size: 0.9rem;
}

.novazilla-footer-nav {
  display: flex;
}

.novazilla-footer-nav-item {
  margin-left: var(--novazilla-space-md);
}

.novazilla-footer-nav-item a {
  color: var(--novazilla-light);
  font-size: 0.9rem;
  transition: color var(--novazilla-transition-fast);
}

.novazilla-footer-nav-item a:hover {
  color: var(--novazilla-accent);
}

/* Success Page */
.novazilla-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: var(--novazilla-space-lg);
}

.novazilla-success-icon {
  width: 80px;
  height: 80px;
  fill: var(--novazilla-accent);
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-success-title {
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-success-message {
  max-width: 600px;
  margin-bottom: var(--novazilla-space-lg);
}

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

.novazilla-policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.novazilla-policy-title {
  margin-bottom: var(--novazilla-space-lg);
  text-align: center;
  word-break: break-word;
}

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

.novazilla-policy-section:last-child {
  margin-bottom: 0;
}

.novazilla-policy-subtitle {
  margin-bottom: var(--novazilla-space-md);
  font-size: 1.8rem;
  word-break: break-word;
}

.novazilla-policy-text {
  margin-bottom: var(--novazilla-space-md);
}

.novazilla-policy-list {
  margin-bottom: var(--novazilla-space-md);
  padding-left: var(--novazilla-space-md);
}

.novazilla-policy-list li {
  margin-bottom: var(--novazilla-space-xs);
}

/* Animations */
@keyframes novazilla-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.novazilla-animate-fade-in {
  animation: novazilla-fade-in 1s ease;
}

@keyframes novazilla-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.novazilla-animate-pulse {
  animation: novazilla-pulse 2s infinite;
}

/* Custom SVG Icons */
.novazilla-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
  vertical-align: middle;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .novazilla-container {
    width: 95%;
  }
  
  .novazilla-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .novazilla-footer-col:first-child {
    grid-column: 1 / -1;
    margin-bottom: var(--novazilla-space-md);
  }
}

@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  .novazilla-services-grid,
  .novazilla-pricing-container,
  .novazilla-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .novazilla-about-grid,
  .novazilla-contact-container {
    grid-template-columns: 1fr;
    gap: var(--novazilla-space-md);
  }
  
  .novazilla-about-img-container {
    order: -1;
  }
  
  .novazilla-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--novazilla-space-md) var(--novazilla-space-lg);
  }
  
  .novazilla-mobile-menu-toggle {
    display: block;
  }
  
  .novazilla-nav-list {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--novazilla-white);
    padding: var(--novazilla-space-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--novazilla-transition-normal);
    z-index: 999;
  }
  
  .novazilla-nav-list.novazilla-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .novazilla-header-scrolled .novazilla-nav-list {
    background-color: var(--novazilla-dark);
  }
  
  .novazilla-nav-item {
    margin: var(--novazilla-space-xs) 0;
    width: 100%;
  }
  
  .novazilla-nav-item a {
    display: block;
    padding: var(--novazilla-space-xs);
    width: 100%;
  }
  .novazilla-logo-img {
    width: 140px;
    height: auto;
}
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .novazilla-hero-title {
    font-size: 2.5rem;
  }
  
  .novazilla-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .novazilla-services-grid,
  .novazilla-pricing-container,
  .novazilla-team-grid {
    grid-template-columns: 1fr;
  }
  
  .novazilla-stats-container {
    grid-template-columns: 1fr;
  }
  
  .novazilla-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .novazilla-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .novazilla-footer-nav {
    margin-top: var(--novazilla-space-sm);
    justify-content: center;
  }
  
  .novazilla-schedule-tabs {
    flex-wrap: wrap;
  }
  
  .novazilla-schedule-tab {
    flex: 1 0 calc(50% - var(--novazilla-space-sm));
    text-align: center;
    margin-bottom: var(--novazilla-space-xs);
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .novazilla-container {
    width: 100%;
    padding: 0 var(--novazilla-space-sm);
  }
  
  .novazilla-hero-title {
    font-size: 2rem;
  }
  
  .novazilla-hero-subtitle {
    font-size: 1rem;
  }
  
  .novazilla-about-content {
    padding: 0;
  }
  
  .novazilla-section {
    padding: var(--novazilla-space-md) 0;
  }
  
  .novazilla-pricing-card.novazilla-featured {
    transform: scale(1);
  }
  
  .novazilla-pricing-card.novazilla-featured:hover {
    transform: translateY(-10px);
  }
  
  .novazilla-schedule-tab {
    flex: 1 0 100%;
  }
  
  .novazilla-btn {
    display: block;
    width: 100%;
  }
  
  .novazilla-form-container,
  .novazilla-contact-info {
    padding: var(--novazilla-space-md);
  }
}

/* Mobile Menu */
.novazilla-mobile-menu-icon {
  width: 30px;
  height: 24px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

.novazilla-mobile-menu-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--novazilla-dark);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.novazilla-header-scrolled .novazilla-mobile-menu-icon span {
  background: var(--novazilla-white);
}

.novazilla-mobile-menu-icon span:nth-child(1) {
  top: 0px;
}

.novazilla-mobile-menu-icon span:nth-child(2),
.novazilla-mobile-menu-icon span:nth-child(3) {
  top: 10px;
}

.novazilla-mobile-menu-icon span:nth-child(4) {
  top: 20px;
}

.novazilla-mobile-menu-icon.novazilla-active span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

.novazilla-mobile-menu-icon.novazilla-active span:nth-child(2) {
  transform: rotate(45deg);
}

.novazilla-mobile-menu-icon.novazilla-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.novazilla-mobile-menu-icon.novazilla-active span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {
  .novazilla-nav {
    position: relative;
  }
  
  .novazilla-nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--novazilla-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }
  
  .novazilla-nav-list.novazilla-active {
    max-height: 500px;
    padding: var(--novazilla-space-md);
  }
  
  .novazilla-header-scrolled .novazilla-nav-list {
    background-color: var(--novazilla-dark);
  }
  
  .novazilla-nav-item {
    margin: 0;
    padding: var(--novazilla-space-xs) 0;
    width: 100%;
    text-align: center;
  }
  
  .novazilla-mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: var(--novazilla-space-xs);
    cursor: pointer;
    z-index: 1001;
  }
}

@media screen and (max-width: 480px) {
  .novazilla-hero {
    min-height: 500px;
  }
  
  .novazilla-hero-content {
    padding: 0 var(--novazilla-space-sm);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .novazilla-service-card,
  .novazilla-pricing-card,
  .novazilla-team-card {
    margin-bottom: var(--novazilla-space-md);
  }
  
  .novazilla-form-input,
  .novazilla-form-textarea,
  .novazilla-btn {
    font-size: 11px; /* Prevents zoom on mobile */
  }
}

/* Enhance accessibility */
.novazilla-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.novazilla-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: var(--novazilla-space-xs) var(--novazilla-space-sm);
  background-color: var(--novazilla-dark);
  color: var(--novazilla-white);
  z-index: 2000;
  transition: top 0.3s;
}

.novazilla-skip-link:focus {
  top: 0;
}

/* Print styles */
@media print {
  .novazilla-header,
  .novazilla-footer,
  .novazilla-form-container {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  .novazilla-container {
    width: 100%;
    max-width: 100%;
  }
  
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}