:root {
      --primary-color: #ff6f61;
      --secondary-color: #d94f5c;
      --dark-color: #000000;
      --darker-color: #0f172a;
      --light-color: #f8fafc;
      --text-color: #64748b;
      --white: #ffffff;
      --black: #000000;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 8px 25px rgba(255, 111, 97, 0.4);
      --border-radius: 12px;
      --transition: all 0.3s ease;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light-color);
      color: #000000;
      line-height: 1.6;
      font-weight: 400;
    }

    /* Modern Navbar */
    nav {
      background: rgba(15, 23, 42, 0.95);
      padding: 1rem 2rem;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      transition: var(--transition);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      height: 70px;
      display: flex;
      align-items: center;
    }

    nav.scrolled {
      background: var(--darker-color);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      border-bottom: 1px solid rgba(255, 111, 97, 0.3);
      backdrop-filter: blur(15px);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 5px;
      transition: var(--transition);
    }

    .nav-toggle:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .hamburger {
      width: 25px;
      height: 3px;
      background: var(--white);
      margin: 3px 0;
      transition: var(--transition);
      border-radius: 2px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    nav a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      transition: var(--transition);
      position: relative;
      padding: 0.5rem 0;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: var(--transition);
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: var(--primary-color);
    }

    /* Modern Hero Section with Slideshow */
    .hero {
      height: 100vh;
      min-height: 600px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      margin-top: 70px; /* Only nav height */
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                  url('./images/SpecialWaffle.jpg') center/cover no-repeat;
      background-attachment: fixed;
    }

    .hero-slides {
      position: absolute;
      top: -70px; /* Extend behind the nav */
      left: 0;
      width: 100%;
      height: calc(100% + 70px); /* Cover the full hero + nav area */
      z-index: 1;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    /* Specific background images for slideshow using local food photos */
    .hero-slide-1 {
      background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                        url('./images/SpecialWaffle.jpg');
    }

    .hero-slide-2 {
      background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                        url('./images/chickenSandwich.jpg');
    }

    .hero-slide-3 {
      background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                        url('./images/clamchowder.jpg');
    }

    .hero-slide-4 {
      background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                        url('./images/shrimp.jpg');
    }

    /* Fallback images for better compatibility */
    @supports not (background-image: url('./images/SpecialWaffle.jpg')) {
      .hero-slide-1 {
        background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), 
                          url('./images/fish.jpg');
      }
    }

    /* Add parallax effect */
    @media (min-width: 769px) {
      .hero {
        background-attachment: fixed;
      }
      
      .hero-slide {
        background-attachment: fixed;
      }
    }

    /* Add overlay for better text readability */
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, 
                    rgba(0, 0, 0, 0.4) 0%, 
                    rgba(255, 111, 97, 0.1) 50%, 
                    rgba(0, 0, 0, 0.4) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 1000px;
      padding: 3rem 2rem;
      border-radius: var(--border-radius);
    }

    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 5rem);
      margin-bottom: 1.5rem;
      font-weight: 700;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      line-height: 1.2;
    }

    .hero p {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      margin-bottom: 2.5rem;
      font-weight: 300;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .cta-button {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: var(--white);
      padding: 1rem 2rem;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }

    .cta-button.secondary {
      background: transparent;
      border: 2px solid var(--white);
      box-shadow: none;
    }

    .cta-button.secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: var(--primary-color);
    }

    /* Rest of the existing styles */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .section.animate {
      opacity: 1;
      transform: translateY(0);
    }

    .gallery {
      max-width: 1400px;
      margin: 4rem auto;
      padding: 0 1rem;
    }

    .gallery h2 {
      text-align: center;
      font-size: clamp(2rem, 4vw, 2.5rem);
      margin-bottom: 3rem;
      color: var(--dark-color);
      font-weight: 700;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .gallery-item {
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
      transition: var(--transition);
      cursor: pointer;
      background: var(--white);
    }

    .gallery-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      transition: var(--transition);
    }

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

    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 111, 97, 0.3));
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: var(--transition);
      backdrop-filter: blur(2px);
    }

    .overlay span {
      font-size: 1.2rem;
      font-weight: 600;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      transform: translateY(20px);
      transition: var(--transition);
    }

  

    /* Contact Section Styles */
    .contact {
      background: linear-gradient(135deg, var(--darker-color), var(--dark-color));
      color: var(--white);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,111,97,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
      opacity: 0.3;
      pointer-events: none;
    }

    .contact .container {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .contact h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 1.5rem;
      color: var(--white);
      font-weight: 700;
      position: relative;
      color: white;
    }

    .contact h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      border-radius: 2px;
    }

    .contact > div > p {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      margin-bottom: 3rem;
      opacity: 0.9;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
      line-height: 1.6;
    }

    .contact-info {
      max-width: 800px;
      margin: 0 auto 3rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .contact-info p {
      background: rgba(0, 0, 0, 0.1);
      padding: 2rem;
      border-radius: var(--border-radius);
      font-size: 1.2rem;
      font-weight: 500;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
    }

    .contact-info p:hover {
      background: rgba(0, 0, 0, 0.15);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .contact-info a {
      color: var(--primary-color);
      text-decoration: none;
      transition: var(--transition);
      font-weight: 600;
    }

    .contact-info a:hover {
      color: var(--secondary-color);
      text-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
    }

    .cta-section {
      margin-top: 3rem;
    }

    .cta-section .cta-button {
      font-size: 1.2rem;
      padding: 1.5rem 3rem;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .cta-section .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
      transition: var(--transition);
    }

    .cta-section .cta-button:hover::before {
      left: 100%;
    }

    .cta-section .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(255, 111, 97, 0.4);
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    }

    /* Contact form styles (if needed later) */
    .contact-form {
      max-width: 600px;
      margin: 3rem auto 0;
      display: grid;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-weight: 600;
      color: var(--white);
      font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea {
      padding: 1rem;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--border-radius);
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      font-size: 1rem;
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 20px rgba(255, 111, 97, 0.3);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    footer {
      background: #000000;
      color: white;
      text-align: center;
      padding: 2rem 1rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }

    .footer-content p {
      margin: 0;
      font-size: 1rem;
      opacity: 0.9;
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .social-links a {
      color: white;
      transition: var(--transition);
      padding: 0.75rem;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .social-links a:hover {
      color: var(--primary-color);
      background: rgba(255, 111, 97, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
    }

    .social-links svg {
      width: 24px;
      height: 24px;
      transition: var(--transition);
    }

    /* Enhanced section styles */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 1rem;
    }

    .about, .services, .recommendations {
      background: var(--white);
      margin: 0;
      position: relative;
      overflow: hidden;
    }

    .about::before, .services::before, .recommendations::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .about h2, .services h2, .recommendations h2 {
      text-align: center;
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 3rem;
      color: var(--dark-color);
      font-weight: 700;
      position: relative;
    }

    .about h2::after, .services h2::after, .recommendations h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: var(--primary-color);
      border-radius: 2px;
    }

    .about p {
      text-align: center;
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      max-width: 900px;
      margin: 0 auto;
      color: var(--text-color);
      line-height: 1.8;
      font-weight: 300;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .service-item {
      background: var(--white);
      padding: 3rem 2rem;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 1px solid rgba(255, 111, 97, 0.1);
      position: relative;
      overflow: hidden;
    }

    .service-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transform: scaleX(0);
      transition: var(--transition);
    }

    .service-item:hover::before {
      transform: scaleX(1);
    }

    .service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(255, 111, 97, 0.2);
    }

    .service-item h3 {
      color: var(--dark-color);
      margin-bottom: 1.5rem;
      font-size: 1.6rem;
      font-weight: 600;
    }

    .service-item p {
      color: var(--text-color);
      line-height: 1.7;
      font-size: 1.05rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      margin-top: 4rem;
    }

    .testimonial {
      background: var(--white);
      padding: 3rem 2rem;
      border-radius: var(--border-radius);
      text-align: left;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--primary-color);
      transition: var(--transition);
      position: relative;
    }

    .testimonial::before {
      content: '"';
      position: absolute;
      top: 1rem;
      left: 1.5rem;
      font-size: 4rem;
      color: var(--primary-color);
      opacity: 0.2;
      font-family: serif;
    }

    .testimonial:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 111, 97, 0.15);
    }

    .testimonial p {
      font-style: italic;
      color: var(--dark-color);
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      line-height: 1.7;
      position: relative;
      z-index: 2;
    }

    .testimonial cite {
      color: var(--text-color);
      font-weight: 600;
      font-style: normal;
    }

    /* Modern Pricing Section Styles */
    .pricing {
      background: linear-gradient(135deg, var(--light-color), #ffffff);
      margin: 0;
      position: relative;
      overflow: hidden;
    }

    .pricing::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    }

    .pricing h2 {
      text-align: center;
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      margin-bottom: 2rem;
      color: var(--dark-color);
      font-weight: 700;
      position: relative;
      font-family: 'Playfair Display', serif;
    }

    .pricing h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      border-radius: 2px;
    }

    .pricing > .container > p {
      text-align: center;
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      max-width: 800px;
      margin: 0 auto 2rem;
      color: var(--text-color);
      line-height: 1.8;
      font-weight: 300;
    }

    .pricing ul {
      max-width: 600px;
      margin: 0 auto 3rem;
      list-style: none;
      text-align: center;
    }

    .pricing > .container > ul {
      background: rgba(255, 111, 97, 0.05);
      padding: 2rem;
      border-radius: var(--border-radius);
      border: 1px solid rgba(255, 111, 97, 0.1);
    }

    .pricing > .container > ul li {
      font-size: 1.1rem;
      color: var(--dark-color);
      margin-bottom: 0.5rem;
      position: relative;
      padding-left: 2rem;
    }

    .pricing > .container > ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.2rem;
    }

    .pricing-table {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-item {
      background: var(--white);
      padding: 3rem 2rem;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: var(--shadow);
      transition: var(--transition);
      border: 2px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .pricing-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
      transform: scaleX(0);
      transition: var(--transition);
    }

    .pricing-item:hover::before {
      transform: scaleX(1);
    }

    .pricing-item:hover {
      transform: translateY(-15px);
      box-shadow: 0 20px 50px rgba(255, 111, 97, 0.25);
      border-color: rgba(255, 111, 97, 0.2);
    }

    /* Featured pricing item (middle one) */
    .pricing-item:nth-child(2) {
      background: linear-gradient(135deg, rgba(255, 111, 97, 0.05), rgba(217, 79, 92, 0.05));
      border: 2px solid rgba(255, 111, 97, 0.2);
      transform: scale(1.05);
      position: relative;
    }

    .pricing-item:nth-child(2)::after {
      content: 'POPULAR';
      position: absolute;
      top: 1rem;
      right: -2rem;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: white;
      padding: 0.5rem 3rem;
      font-size: 0.8rem;
      font-weight: 600;
      transform: rotate(45deg);
      letter-spacing: 1px;
    }

    .pricing-item h3 {
      color: var(--dark-color);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
    }

    .pricing-item .price {
      font-size: 3rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1.5rem;
      position: relative;
      font-family: 'Playfair Display', serif;
    }

    .pricing-item .price::before {
      content: '$';
      font-size: 2rem;
      position: absolute;
      left: -1.5rem;
      top: 0.5rem;
    }

    .pricing-item ul {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }

    .pricing-item ul li {
      font-size: 1.1rem;
      color: var(--text-color);
      margin-bottom: 1rem;
      position: relative;
      padding-left: 2rem;
      line-height: 1.6;
    }

    .pricing-item ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-weight: bold;
      font-size: 1.2rem;
    }

    .pricing-item .cta-button {
      margin-top: 2rem;
      width: 100%;
      max-width: 250px;
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      nav {
        top: 0; /* No header, so nav starts at top */
        padding: 0.5rem 1rem;
        height: 60px;
      }

      .nav-toggle {
        display: flex;
      }

      nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-color);
        flex-direction: column;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
        border-radius: 0 0 var(--border-radius) var(--border-radius);
      }

      nav ul.active {
        display: flex;
      }

      nav a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      nav a::after {
        display: none;
      }

      .hero {
        height: 100vh;
        min-height: 500px;
        margin-top: 60px; /* Only nav height */
      }

      .hero-slides {
        top: -60px; /* Extend behind nav on mobile */
        height: calc(100% + 60px);
      }

      .hero-content {
        padding: 1.5rem;
      }

      .hero-cta {
        flex-direction: column;
        gap: 1rem;
      }

      .cta-button {
        width: 100%;
        max-width: 300px;
      }

      .container {
        padding: 2rem 1rem;
      }

      .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .service-item, .testimonial {
        padding: 2rem 1.5rem;
      }

      .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .pricing-item {
        padding: 2rem 1.5rem;
      }

      .pricing-item:nth-child(2) {
        transform: scale(1);
        margin: 0;
      }

      .pricing > .container > ul {
        padding: 1.5rem;
        margin-bottom: 2rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .contact {
        padding: 4rem 0;
      }

      .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
      }

      .contact-info p {
        padding: 1.5rem;
        font-size: 1.1rem;
      }

      .cta-section .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 320px;
      }

      .footer-content {
        gap: 1rem;
      }

      .footer-content p {
        font-size: 0.9rem;
      }

      .social-links {
        gap: 1rem;
      }

      .social-links a {
        padding: 0.5rem;
      }

      .social-links svg {
        width: 20px;
        height: 20px;
      }
    }

    @media (max-width: 480px) {
      .hero h2 {
        font-size: clamp(2rem, 5vw, 3rem);
      }

      .hero p {
        font-size: clamp(1rem, 2vw, 1.2rem);
      }

      .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
      }
    }

    /* Loading animation */
    body {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    body.loaded {
      opacity: 1;
    }

    /* Accessibility improvements */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* High contrast mode support */
    @media (prefers-contrast: high) {
      .hero h2 {
        color: var(--white);
      }
    }