
/* Base styles */
:root {
    --background: hsl(260, 33%, 98%);
    --foreground: hsl(240, 10%, 3.9%);
    --primary: hsl(260, 84%, 50%);
    --secondary: hsl(240, 4.8%, 95.9%);
    --mystical-50: hsl(260, 33%, 98%);
    --mystical-100: hsl(260, 40%, 95%);
    --mystical-200: hsl(260, 40%, 90%);
    --mystical-300: hsl(260, 40%, 85%);
    --mystical-500: hsl(260, 60%, 60%);
    --mystical-600: hsl(260, 70%, 50%);
    --mystical-700: hsl(260, 70%, 40%);
    --mystical-800: hsl(260, 70%, 30%);
    --mystical-900: hsl(260, 70%, 20%);
    --cosmic-50: hsl(275, 40%, 95%);
    --cosmic-100: hsl(275, 40%, 90%);
    --cosmic-200: hsl(275, 40%, 85%);
    --cosmic-300: hsl(275, 50%, 75%);
    --cosmic-400: hsl(275, 60%, 65%);
    --cosmic-500: hsl(275, 70%, 55%);
    --cosmic-600: hsl(275, 75%, 45%);
    --cosmic-700: hsl(275, 80%, 35%);
    --cosmic-950: hsl(275, 90%, 10%);
    --golden-100: hsl(40, 80%, 90%);
    --golden-300: hsl(40, 80%, 70%);
    --golden-400: hsl(40, 80%, 60%);
    --golden-500: hsl(40, 80%, 50%);
    --golden-700: hsl(40, 80%, 30%);
    --white: hsl(0, 0%, 100%);
    --gray-300: hsl(0, 0%, 80%);
    --gray-400: hsl(0, 0%, 70%);
    --gray-500: hsl(0, 0%, 60%);
    --gray-600: hsl(0, 0%, 50%);
    --gray-700: hsl(0, 0%, 40%);
    --gray-800: hsl(0, 0%, 30%);
    --radius: 0.5rem;
  }
  
  /* Reset */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: linear-gradient(to bottom, var(--mystical-50), var(--white));
    min-height: 100vh;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  ul, ol {
    list-style: none;
  }
  
  button {
    cursor: pointer;
    font-family: inherit;
    background: none;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Utilities */
  .cosmic-text {
    background: linear-gradient(135deg, var(--mystical-600), var(--cosmic-500));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .golden-text {
    color: var(--golden-500);
  }
  
  .divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--mystical-500), var(--cosmic-500));
    margin: 1.5rem auto;
  }
  
  .bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
  }
  
  .stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 20px, var(--gray-400) 0%, transparent 100%), 
                      radial-gradient(2px 2px at 40px 70px, var(--gray-400) 0%, transparent 100%), 
                      radial-gradient(1px 1px at 90px 40px, var(--gray-400) 0%, transparent 100%), 
                      radial-gradient(1px 1px at 130px 90px, var(--gray-400) 0%, transparent 100%);
    background-size: 200px 200px;
    opacity: 0.4;
  }
  
  .stars-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(1px 1px at 20px 20px, var(--gray-400) 0%, transparent 100%), 
                      radial-gradient(1px 1px at 60px 100px, var(--gray-400) 0%, transparent 100%), 
                      radial-gradient(1px 1px at 120px 40px, var(--gray-400) 0%, transparent 100%);
    background-size: 200px 200px;
    opacity: 0.1;
  }
  
  .floating-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
    animation: float 8s infinite ease-in-out;
  }
  
  .light-1 {
    top: 20px;
    left: 10%;
    width: 200px;
    height: 200px;
    background: var(--mystical-300);
    animation-delay: 0s;
  }
  
  .light-2 {
    bottom: 20px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: var(--cosmic-400);
    animation-delay: 1s;
  }
  
  .light-3 {
    top: 100px;
    right: 25%;
    width: 150px;
    height: 150px;
    background: var(--golden-300);
    animation-delay: 2s;
  }
  
  .light-4 {
    top: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: var(--cosmic-300);
    animation-delay: 0.5s;
  }
  
  .light-5 {
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--mystical-200);
    animation-delay: 1.5s;
  }
  
  .light-6 {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(to top right, var(--mystical-200), var(--cosmic-100));
    animation-delay: 1s;
  }
  
  .light-7 {
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: var(--mystical-200);
    animation-delay: 0.5s;
  }
  
  .light-8 {
    top: 50px;
    left: 50px;
    width: 180px;
    height: 180px;
    background: var(--cosmic-200);
    animation-delay: 1.5s;
  }
  
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .btn-primary {
    background-color: var(--mystical-600);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: var(--mystical-700);
  }
  
  .btn-secondary {
    background-color: var(--cosmic-600);
    color: var(--white);
  }
  
  .btn-secondary:hover {
    background-color: var(--cosmic-700);
  }
  
  .btn-outline {
    border: 1px solid var(--mystical-500);
    color: var(--mystical-700);
  }
  
  .btn-outline:hover {
    background-color: var(--mystical-50);
  }
  
  .btn-outline-full {
    border: 1px solid var(--mystical-500);
    color: var(--mystical-700);
    width: 100%;
  }
  
  .btn-outline-full:hover {
    background-color: var(--mystical-50);
  }
  
  .btn-full, .btn-newsletter {
    width: 100%;
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.3s ease;
  }
  
  .header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--mystical-800);
  }
  
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    color: var(--mystical-900);
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .mobile-nav nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
  }
  
  .nav-link {
    font-weight: 500;
    position: relative;
  }
  
  .nav-link:hover {
    color: var(--mystical-600);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .hero-text {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 550px;
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cosmic-circle {
    position: relative;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    margin: 0 auto;
  }
  
  .cosmic-circle::before {
    z-index: 0;
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mystical-100), var(--cosmic-100));
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s infinite ease-in-out;
  }
  
  .inner-circle {
    z-index: 1;
    position: absolute;
    inset: 10%;
    background: linear-gradient(225deg, var(--mystical-200), var(--golden-100));
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s infinite ease-in-out reverse;
    animation-delay: 1s;
  }
  .hero-image {
    width: 60%;
    max-width: 12s00px;      /* Limits content width on large screens */
    margin: 0 auto;         /* Centers horizontally */
    padding: 2rem 1rem;     /* Adds spacing around content */
    display: flex;          /* Lays out image and quote card side by side */
    flex-direction: column; /* Stack on small screens, override in media query */
    align-items: center;    /* Center items horizontally */
    gap: 2rem;              /* Space between image and quote card */
    
  }
  .hero-image :hover{
    box-shadow: 0 20px 25px -5px rgba(67, 8, 104, 0.1);
  }
  @media (min-width: 768px) {
    .hero-image {
      flex-direction: row;   /* Side-by-side layout on medium+ screens */
      justify-content: center;
    }
  }
    
  
  .cosmic-circle img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2; 
    /* mix-blend-mode: luminosity; */
  }
  
  .circle-border {
    z-index: 3;
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
  }
  
  .quote-card {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    animation: glow 8s infinite alternate;
  }
  
  .quote-card p {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mystical-800);
  }
  
  .quote-author {
    font-size: 0.75rem;
    text-align: right;
    margin-top: 0.5rem;
    color: var(--gray-600);
  }
  
  @keyframes glow {
    0% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.2); }
    100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
  }
  
  /* Services Section */
  .services {
    position: relative;
    padding: 5rem 0;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .section-header p {
    color: var(--gray-700);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--mystical-200);
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.1;
  }
  
  .service-card.cosmic::before {
    background: linear-gradient(to bottom right, var(--cosmic-100), var(--cosmic-50));
  }
  
  .service-card.mystical::before {
    background: linear-gradient(to bottom right, var(--mystical-100), var(--mystical-50));
  }
  
  .service-card.golden::before {
    background: linear-gradient(to bottom right, var(--golden-100), var(--golden-50));
  }
  
  .service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
  }
  
  .service-card:hover h3 {
    color: var(--mystical-700);
  }
  
  .service-card p {
    color: var(--gray-700);
  }
  
  .services-footer {
    text-align: center;
    margin-top: 3rem;
  }
  
  .services-footer p {
    color: var(--gray-700);
    margin-bottom: 1rem;
  }
  
  .link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--mystical-700);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .link-arrow svg {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
  }
  
  .link-arrow:hover {
    color: var(--mystical-900);
  }
  
  .link-arrow:hover svg {
    transform: translateX(5px);
  }
  
  /* About Section */
  .about {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white), var(--mystical-50));
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  
  .about-image {
    position: relative;
  }
  
  .image-frame {
    position: relative;
  }
/*   
  .image-frame::before {
    content: '';
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--mystical-300);
    border-radius: var(--radius);
    z-index: 0;
  }
   */
  .image-frame img {
    position: relative;
    border-radius: var(--radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 1;
    object-fit: cover; 
    border: 2px solid var(--mystical-300);
    height: 30rem;

  }
  
  .about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
  }
  
  .about-text .divider {
    margin-left: 0;
  }
  
  .about-text p {
    color: var(--gray-700);
    margin-bottom: 1rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mystical-700);
  }
  
  .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  .approach-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .approach-card {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .approach-number {
    width: 3rem;
    height: 3rem;
    background-color: var(--mystical-100);
    color: var(--mystical-700);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .approach-card:nth-child(2) .approach-number {
    background-color: var(--cosmic-100);
    color: var(--cosmic-700);
  }
  
  .approach-card:nth-child(3) .approach-number {
    background-color: var(--golden-100);
    color: var(--golden-700);
  }
  
  .approach-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  
  .approach-card p {
    color: var(--gray-600);
  }
  
  /* Contact Section */
  .contact {
    position: relative;
    padding: 5rem 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-form {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
  }
  
  .form-group input, 
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
  }
  
  .form-group input:focus, 
  .form-group textarea:focus {
    outline: none;
    border-color: var(--mystical-500);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
  }
  
  .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .contact-info {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
  }
  
  .info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--mystical-100);
    color: var(--mystical-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }
  
  .info-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
  }
  
  .info-item p {
    color: var(--gray-600);
  }
  
  .book-consultation {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .book-consultation h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .book-consultation p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
  }
  
  /* Footer */
  .footer {
    background: linear-gradient(to bottom, var(--mystical-900), var(--cosmic-950));
    color: var(--white);
    padding: 4rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  
  .footer-col h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-col h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
  }
  
  .footer-col p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
  }
  
  .footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-col ul li a {
    color: var(--gray-300);
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: var(--white);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    color: var(--gray-300);
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: var(--golden-400);
  }
  
  .social-links .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--mystical-800);
    border: 1px solid var(--mystical-700);
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
  }
  
  .newsletter-form input::placeholder {
    color: var(--gray-400);
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: var(--golden-400);
  }
  
  .btn-newsletter {
    background-color: var(--mystical-700);
    color: var(--white);
    transition: background-color 0.3s ease;
  }
  
  .btn-newsletter:hover {
    background-color: var(--mystical-600);
  }
  
  .footer-bottom {
    border-top: 1px solid var(--mystical-700);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-copyright {
    color: var(--gray-400);
    font-size: 0.875rem;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  /* Toast notification */
  .toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: var(--white);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    border-left: 4px solid var(--mystical-600);
    padding: 1rem;
    width: calc(100% - 40px);
    max-width: 400px;
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
  }
  
  .toast.show {
    bottom: 20px;
  }
  
  .toast-content {
    display: flex;
    flex-direction: column;
  }
  
  .toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .toast-message {
    font-size: 0.875rem;
    color: var(--gray-600);
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-text h1 {
      font-size: 3.5rem;
    }
    
    .hero-buttons {
      flex-direction: row;
      justify-content: center;
    }
    
    .quote-card {
      max-width: 300px;
    }
    
    .form-row {
      grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    .hero-content {
      flex-direction: row;
      justify-content: space-between;
      gap: 2rem;
    }
    
    .hero-text {
      text-align: left;
      max-width: 50%;
      margin-bottom: 0;
    }
    
    .hero-text p {
      margin-left: 0;
    }
    
    .hero-buttons {
      justify-content: flex-start;
      margin: 0;
    }
    
    .about-content {
      flex-direction: row;
      align-items: center;
    }
    
    .about-image {
      flex: 1;
    }
    
    .about-text {
      flex: 1;
    }
    
    .approach-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }