:root {
      --primary: #2c3e50;
      --secondary: #3498db;
      --accent: #e74c3c;
      --light: #f8f9fa;
      --dark: #212529;
      --text: #333;
      --footer: #1a252f;
      --shadow: 0 5px 15px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 70px;
    }

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

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--light);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--primary);
    }

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

    .btn {
      display: inline-block;
      padding: 12px 28px;
      background: var(--secondary);
      color: white;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 500;
      transition: var(--transition);
      text-align: center;
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow);
    }

    .btn:hover {
      background: #2980b9;
      transform: translateY(-3px);
    }

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

    .btn-accent:hover {
      background: #c0392b;
    }

    /* Header & Navigation */
    header {
      background-color: rgba(255, 255, 255, 0.95);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow);
      padding: 15px 0;
    }

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

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    .logo-text {
      color: var(--primary);
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.5rem;
    }

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

    .nav-list {
      display: flex;
      list-style: none;
      margin-right: 20px;
    }

    .nav-item {
      margin-left: 25px;
    }

    .nav-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: var(--transition);
      font-size: 1rem;
    }

    .nav-link:hover {
      color: var(--secondary);
    }

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

    .nav-link:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 10px 20px;
      font-size: 0.9rem;
    }

    .skip-link {
      position: absolute;
      left: -999px;
      top: 10px;
      background: var(--primary);
      color: white;
      padding: 10px 16px;
      border-radius: 6px;
      z-index: 2000;
    }

    .skip-link:focus {
      left: 10px;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(52, 152, 219, 0.4);
      outline-offset: 3px;
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: var(--transition);
      background-color: var(--primary);
    }

    /* Hero Section */
    .hero {
      position: relative;
      width: 100%;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-bottom: 60px;
      overflow: hidden;
      background-color: #0b0b0b;
    }

    .hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
      z-index: 1;
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      z-index: 2;
      position: relative;
    }

    .hero-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: white;
      line-height: 1.2;
      animation: fadeInDown 1s ease;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease;
      font-weight: 300;
    }

    .hero-cta {
      animation: fadeIn 1.5s ease;
      margin-top: 20px;
      padding: 15px 40px;
      font-size: 1.1rem;
      font-weight: 600;
    }

    /* About Section */
    .about {
      padding: 80px 0;
      background-color: white;
    }

    .about-container {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.03);
    }

    .about-content {
      flex: 1;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 60px;
      height: 3px;
      background-color: var(--secondary);
    }

    .about-text {
      margin-bottom: 30px;
      color: #555;
      font-size: 1.1rem;
    }

    .stats {
      display: flex;
      margin-top: 30px;
      justify-content: space-between;
    }

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

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 5px;
    }

    .stat-label {
      color: #777;
      font-weight: 500;
    }

    /* Portfolio Edits Section */
    .portfolio-edits {
      padding: 80px 0;
      background-color: #f8f9fa;
      text-align: center;
    }

    .portfolio-header {
      margin-bottom: 50px;
    }

    .edit-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .reveal-container {
      position: relative;
      width: 100%;
      aspect-ratio: 2/3;
      overflow: hidden;
      border-radius: 10px;
      cursor: ew-resize;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease;
    }

    .reveal-container:hover {
      transform: translateY(-5px);
    }

    .reveal-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      user-select: none;
      pointer-events: none;
    }

    .reveal-top {
      z-index: 2;
      clip-path: inset(0 0 0 50%);
      will-change: clip-path;
    }

    .reveal-bottom {
      z-index: 1;
    }

    .reveal-handle {
      position: absolute;
      top: 0;
      left: 50%;
      height: 100%;
      width: 3px;
      background-color: white;
      z-index: 3;
    }

    .reveal-handle::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: white;
      border: 3px solid var(--secondary);
      box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .reveal-container:hover .reveal-handle::before {
      transform: translate(-50%, -50%) scale(1.1);
    }

    .reveal-label {
      position: absolute;
      bottom: 15px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 15px;
      z-index: 4;
      pointer-events: none;
    }

    .reveal-label span {
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
    }

    /* Services Section */
    .services {
      padding: 80px 0;
      background-color: white;
    }

    .services-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .services-subtitle {
      color: #666;
      max-width: 700px;
      margin: 0 auto 30px;
    }

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

    .service-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

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

    .service-image {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }

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

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

    .service-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .service-title {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .service-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 15px;
    }

    .service-description {
      margin-bottom: 20px;
      color: #666;
    }

    .service-features {
      list-style: none;
      margin-bottom: 25px;
    }

    .service-features li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 25px;
    }

    .service-features li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      color: var(--secondary);
    }

    .service-cta {
      margin-top: auto;
      align-self: flex-start;
    }

    /* Locations Section */
    .locations {
      padding: 80px 0;
      background-color: white;
    }

    .locations-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .location-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .location-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .location-content {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .location-tags {
      font-size: 0.85rem;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .location-title {
      font-size: 1.35rem;
      margin-bottom: 10px;
      color: var(--primary);
    }

    .location-list {
      margin: 0 0 18px;
      padding-left: 18px;
      color: #666;
    }

    /* Blog Highlight Section */
    .blog-highlight {
      padding: 80px 0;
      background-color: #f8f9fa;
    }

    .blog-highlight-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-preview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .blog-preview-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-preview-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-preview-content {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .blog-preview-date {
      color: #888;
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .blog-preview-title {
      font-size: 1.35rem;
      margin-bottom: 12px;
      color: var(--primary);
    }

    .blog-preview-excerpt {
      color: #666;
      margin-bottom: 20px;
    }

    /* Testimonials Section */
    .testimonials {
      padding: 80px 0;
      background-color: #f8f9fa;
      text-align: center;
    }

    .testimonials-header {
      margin-bottom: 50px;
    }

    .testimonial-slider {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }

/* Update these CSS rules for testimonial slides */
/* Updated testimonial CSS to prevent jumping */
.testimonial-slides {
  position: relative;
  min-height:450px ; /* Adjust this value to be tall enough for your largest testimonial */
  margin-bottom: 0px; /* Add space for the author section below */
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden; 
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  position: absolute; /* Keep it absolute even when active */
}

/* Ensure all testimonial-content boxes have the same minimum height */
.testimonial-content {
  min-height: 200px; /* Adjust based on your content needs */
  display: flex;
  flex-direction: column;
}

/* Make sure author positioning is consistent */
.testimonial-author {
  position: absolute;
  bottom: -120px; /* Position below the testimonial content */
  left: 0;
  width: 100%;
}

    .testimonial-content {
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: var(--shadow);
      margin-bottom: 40px;
      position: relative;
    }

    .testimonial-content::after {
      content: '';
      position: absolute;
      bottom: -20px;
      left: 50%;
      transform: translateX(-50%);
      border-width: 20px 20px 0;
      border-style: solid;
      border-color: white transparent transparent;
    }

    .testimonial-quote {
      font-style: italic;
      color: #555;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .testimonial-stars {
      color: #ffc107;
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

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

    .author-image {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
      border: 3px solid var(--secondary);
    }

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

    .author-details h4 {
      margin-bottom: 5px;
      color: var(--primary);
    }

    .author-details p {
      color: #777;
      font-size: 0.9rem;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #ccc;
      margin: 0 5px;
      cursor: pointer;
      transition: var(--transition);
    }

    .nav-dot.active {
      background-color: var(--secondary);
      transform: scale(1.2);
    }

    /* FAQ Section */
    .faq {
      padding: 80px 0;
      background-color: white;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

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

    .faq-question:hover {
      background-color: #e9ecef;
    }

    .faq-question i {
      transition: var(--transition);
    }

    .faq-answer {
      background-color: white;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer p {
      padding: 0;
      margin: 0;
      color: #666;
    }

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

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

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

    /* Contact Section */
    .contact {
      padding: 80px 0;
      background-color: #f8f9fa;
    }

    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
    }

    .contact-heading {
      margin-bottom: 30px;
    }

    .contact-subtitle {
      color: #666;
      margin-bottom: 30px;
    }

    .contact-details {
      list-style: none;
      margin-bottom: 30px;
    }

    .contact-details li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .contact-details li i {
      margin-right: 15px;
      font-size: 1.2rem;
      color: var(--secondary);
      margin-top: 5px;
    }

    .contact-details li div h4 {
      margin-bottom: 5px;
      font-size: 1.1rem;
    }

    .contact-details li div p {
      color: #666;
    }

    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--secondary);
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }

    .social-link:hover {
      background-color: var(--primary);
      transform: translateY(-3px);
    }

    .contact-form {
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }

    .form-control:focus {
      outline: none;
      border-color: var(--secondary);
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.25);
    }

    .form-control::placeholder {
      color: #aaa;
    }

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

    .form-check {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .form-check input {
      margin-right: 10px;
      margin-top: 5px;
    }

    .form-check label {
      color: #666;
      font-size: 0.9rem;
    }

    .form-submit {
      width: 100%;
      padding: 12px;
      font-size: 1rem;
      font-weight: 600;
    }

    /* Footer */
    footer {
      background-color: var(--footer);
      color: white;
      padding: 50px 0 20px;
    }

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

    .footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      text-decoration: none;
    }

    .footer-logo img {
      height: 40px;
      margin-right: 10px;
    }

    .footer-logo-text {
      color: white;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.5rem;
    }

    .footer-about {
      color: #aaa;
      margin-bottom: 20px;
    }

    .footer-heading {
      font-size: 1.3rem;
      margin-bottom: 20px;
      color: white;
      position: relative;
      display: inline-block;
    }

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

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

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #aaa;
      text-decoration: none;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
    }

    .footer-links a i {
      margin-right: 10px;
      font-size: 0.8rem;
      color: var(--secondary);
    }

    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }

    .footer-newsletter p {
      color: #aaa;
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
    }

    .newsletter-input {
      flex-grow: 1;
      padding: 10px 15px;
      border: none;
      border-radius: 4px 0 0 4px;
      font-family: 'Montserrat', sans-serif;
    }

    .newsletter-input:focus {
      outline: none;
    }

    .newsletter-btn {
      background-color: var(--secondary);
      color: white;
      border: none;
      padding: 0 15px;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      transition: var(--transition);
    }

    .newsletter-btn:hover {
      background-color: #2980b9;
    }

    .footer-bottom {
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .copyright {
      color: #aaa;
      font-size: 0.9rem;
    }

    .footer-social {
      display: flex;
      gap: 15px;
    }

    .footer-social a {
      color: #aaa;
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-social a:hover {
      color: white;
    }

    /* CTA Banner */
    .cta-banner {
      padding: 60px 0;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url(back.jpg) center/cover no-repeat;
      color: white;
      text-align: center;
    }

    .cta-title {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: white;
    }

    .cta-text {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--secondary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
      z-index: 999;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      background-color: var(--primary);
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.8rem;
      }
      .about-container {
        flex-direction: column;
      }
      .stats {
        flex-wrap: wrap;
      }
      .stat-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 50px 0;
        z-index: 1000;
      }
      .nav-menu.active {
        left: 0;
      }
      .nav-list {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 30px;
      }
      .nav-item {
        margin: 15px 0;
      }
      .nav-cta {
        margin-top: 20px;
      }
      .hero-title {
        font-size: 2.5rem;
      }
      .hero-subtitle {
        font-size: 1rem;
      }
      .section-title {
        font-size: 2rem;
      }
      .cta-title {
        font-size: 2rem;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 2rem;
      }
      .hero-subtitle {
        font-size: 0.9rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .reveal-container {
        aspect-ratio: 3/4;
      }
      .service-image {
        aspect-ratio: 3/2;
      }
    }
