:root {
   --sunrise-gradient-1: #2b3647;
   --sunrise-gradient-2: #5a4c30;
   --sunrise-gradient-3: #a78542;
   --sunrise-gradient-4: #f5e9d4;
   --accent-gold: #a07c3f;
   --text-heading: #501515;
   --text-dark: #2e2c28;
   --text-dark-accent: #4b463f;
   --accent-button-bg: linear-gradient(135deg, #f6b860, #fddfa2);
   --accent-button-bg-hover: linear-gradient(#f4aa45, #f7ce88);
   --accent-button-border: #f4aa45;
   --accent-button-border-hover: #e69b3d;
   --navlink: #454b49;
   --navlink-hover: #a7afac;
}

@keyframes changeColor {
    0% {
        background-color: var(--sunrise-gradient-1);
      }
      30% {
        background-color: var(--sunrise-gradient-2);
      }
      70% {
        background-color: var(--sunrise-gradient-3);
      }
      100% {
        background-color: var(--sunrise-gradient-4);
      }
  }

  @keyframes sunRise {
    0% {
      transform: translate(-50%, 100%);
      opacity: 0;
    }
    70% {
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 0);
      opacity: 1;
    }
  }

  @keyframes loadingFill {
    from {
      width: 0%;
    }
    to {
      width: 100%;
    }
  }

  @keyframes sunRiseAndExpand {
    0% {
      transform: translate(-50%, 100%) scale(1);
      opacity: 0;
    }
    50% {
      transform: translate(-50%, 0%) scale(1);
      opacity: 1;
    }
    100% {
      transform: translate(-50%, 0%) scale(12);
      opacity: 1;
    }
  }

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

  * {
    box-sizing: border-box;
  }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background-color: var(--sunrise-gradient-4);
    color: #3c2c4a;
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
  }

  .sunrise-bg {
    animation: changeColor 4s ease-in-out 1 forwards;
  }

  #loading-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--sunrise-color, #000);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
  }

  #loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  #main-content {
    display: none;
  }

  .sun {
    position: absolute;
    bottom: 60%;
    left: 50%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at center, #f5e9d4 40%, #e3b465 85%);
    border-radius: 50%;
    box-shadow:
      0 0 30px 7px rgba(227, 180, 101, 0.7),
      inset 0 15px 35px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 8px #f5e9d4);
    animation: sunRiseAndExpand 2.5s ease forwards;
    transform: translate(-50%, 100%);
    z-index: 10;
  }

  .loading-bar-container {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 400px;
    height: 12px;
    border: 2px solid #e3b465;
    border-radius: 6px;
    background-color: rgba(227, 180, 101, 0.2);
    overflow: hidden;
    box-shadow:
      inset 0 0 5px rgba(227, 180, 101, 0.6);
    margin: 0;
    z-index: 20;
  }

  .loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f5e9d4, #e3b465);
    width: 0%;
    border-radius: 6px 0 0 6px;
    animation: loadingFill 2.5s linear forwards;
    box-shadow: 0 0 8px #f5e9d4;
  }

  .tagline {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 300;
    font-size: 1.25rem;
    color: #f5e9d4cc;
    letter-spacing: 0.05em;
    user-select: none;
    z-index: 20;
    margin: 0;
  }

  .loading-bar-container,
.tagline {
  animation: fadeOut 1s ease-out forwards;
  animation-delay: 2.2s;
}

  @media (max-width: 600px) {
    .sun {
      width: 90px;
      height: 90px;
      bottom: 55%;
    }
    .loading-bar-container {
      width: 80%;
      max-width: 280px;
      height: 10px;
      bottom: 12%;
    }
    .loading-bar-fill {
      border-radius: 5px 0 0 5px;
    }
    .tagline {
      font-size: 1rem;
      bottom: 6%;
    }
  }

  .navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 1px 6px rgb(0 0 0 / 0.1);
    position: relative;
    z-index: 100;
  }

  .navbar-logo {
    height: 110px;
    margin-top: -2rem;
    cursor: pointer;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    font-size: 1.25rem;
    text-transform: lowercase;
  }

  .nav-links a {
    color: #454b49;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-links a:hover,
  .nav-links a:focus {
    color: var(--navlink-hover);
  }

  .nav-links a:hover::after,
  .nav-links a:focus::after {
    width: 100%;
  }

  .navbar-button {
    font-family: 'Inter', sans-serif;
    background: var(--accent-button-bg);
    border: 1.5px solid var(--accent-button-border);
    color: #454b49;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    cursor: pointer;
    font-weight: 500 !important;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
  }

  .navbar-button:hover,
  .navbar-button:focus {
    background: var(--accent-button-bg-hover);
    box-shadow: 0 3px 10px rgba(246, 184, 96, 0.5);
    border-color: var(--accent-button-border-hover);
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 18px;
    justify-content: space-between;
  }
  .hamburger span {
    height: 3px;
    background-color: #454b49;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  @media (max-width: 768px) {
    .navbar-logo {
      height: 90px;
      margin-top: -1rem;
      margin-left: -1rem;
      cursor: pointer;
    }

    .nav-links {
      position: fixed;
      top: 65px;
      right: 0;
      background-color: white;
      flex-direction: column;
      width: 220px;
      padding: 2rem 1.5rem;
      box-shadow: -2px 0 8px rgb(0 0 0 / 0.15);
      height: calc(100vh - 65px);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      gap: 1.8rem;
      font-size: 1.1rem;
      z-index: 200;
    }
    .nav-links.active {
      transform: translateX(0);
    }
    .hamburger {
      display: flex;
    }
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }


  .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 7vh 0.5rem 5rem;
    max-width: 960px;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }

  .fade-in-animation {
    animation: fadeIn 2.2s ease forwards;
    pointer-events: auto;
  }

  .hero-content.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-with-delay {
    animation-delay: 1.2s;
  }

  .hero-content h1 {
    color: var(--text-heading);
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    line-height: 1.4;
  }

  .hero-content h2 {
    font-size: 1.75rem;
    color: #231414;
    font-weight: 300;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 2rem;
  }
 
  
  .hero-stats {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    font-weight: 600;
    font-size: 1rem;
    color: #5a4c30;
  }
  
  .stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--accent-gold);
  }
  
  @media (max-width: 600px) {
    .hero-stats {
      flex-direction: column;
      gap: 1.8rem;
      font-size: 0.9rem;
    }
  }
  
  .gradient-hero-text {
    font-weight: 600;
    background: linear-gradient(
      135deg,
      #e0c36d,
      #d38e4e,
      #b35838 
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }


  .hero-content .cta {
    background: var(--accent-button-bg);
    border: 1.5px solid var(--accent-button-border);
    color: var(--text-dark);
    padding: 0.85rem 2.2rem;
    font-weight: 500 !important;
    border-radius: 2rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .hero-content .cta:hover {
    background: var(--accent-button-bg-hover);
    box-shadow: 0 3px 10px rgba(246, 184, 96, 0.5);
    border-color: var(--accent-button-border-hover);
  }
  .cta-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  @media (max-width: 640px) {
    .cta-group {
      flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    }

    .hero-content .cta {
      padding: 0.65rem 1.35rem;
      font-size: 1.15rem;
    }

    .cta-group .cta,
    .cta-group .text-button {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
  }
  
  .text-button {
    font-style: italic;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    user-select: none;
  }
  
  .text-button:hover,
  .text-button:focus {
    color: var(--accent-gold);
  }
  
  .text-button::after {
    content: "→";
    margin-left: 0.4rem;
    font-weight: 700;
    transition: margin-left 0.3s ease;
  }
  
  .text-button:hover::after,
  .text-button:focus::after {
    margin-left: 0.8rem;
  }
  
  @media (max-width: 640px) {
    .hero-content {
      padding: 4vh 1.5rem 5rem;
    }

    .hero-content h1 {
      font-size: 2.35rem;
      font-weight: 500;
      text-align: left;
    }

    .hero-content h2 {
      font-size: 1.15rem;
      font-weight: 300;
      margin-top: 1.5rem;
      margin-bottom: 3rem;
      text-align: left;
    }
  
  }


  .what-we-do {
    max-width: 1080px;
    margin: 8rem auto;
    padding: 0 1.5rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
  }
  
  .what-we-do h2 {
    font-size: 2.8rem;
    font-weight: 600;
    text-transform: lowercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }
  
  .what-we-do .blurb {
    font-size: 1.2rem;
    font-weight: 300;
    color: #5a534d;
    max-width: 660px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
  }
  
  .tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  }
  
  .tile {
    background: linear-gradient(135deg, #f9f0d8 0%, #fbf6e6 60%, #f7f1d3 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow:
      inset 0 0 0.5px rgba(255, 255, 255, 0.6),
      0 8px 20px rgba(160, 124, 63, 0.18),
      0 0 12px rgba(248, 223, 170, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
  }
  
  .tile::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    transform: rotate(25deg);
    pointer-events: none;
  }
  
  .tile:hover {
    transform: translateY(-6px);
    box-shadow:
      0 12px 28px rgba(160, 124, 63, 0.25),
      0 0 18px rgba(255, 234, 174, 0.35);
  }
  
  .icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, #ffdf58cc , #e7a254);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 0 4px 12px rgba(255, 223, 88, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .icon-badge:hover {
    transform: scale(1.05);
  }
  
  .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon svg {
    width: 60%;
    height: 60%;
    stroke: #5a4402;
    display: block;
  }

  .services-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tile h3 {
    font-size: 1.25rem;
    text-transform: lowercase;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c2b28;
  }
  
  .tile p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: #4f4b46;
  }
  
  @media (max-width: 600px) {
    .tiles {
      grid-template-columns: 1fr;
      gap: 1.8rem;
    }
    .tile {
      padding: 2rem 1.4rem;
    }
  }

  .how-we-work {
    max-width: 1100px;
    margin: 5rem auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 0 1.5rem;
  }
  
  .how-we-work-text {
    flex: 1 1 480px;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .how-we-work h2 {
    font-size: 2.6rem;
    font-weight: 600;
    text-transform: lowercase;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }
  
  .how-we-work-text > p {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 450px;
    line-height: 1.65;
  }
  
  .steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .step {
    counter-increment: step;
  }
  
  .step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .step-number::before {
    content: counter(step);
    display: inline-block;
    width: 2.8rem;
    height: 2.8rem;
    background: var(--accent-gold);
    color: #fff;
    font-weight: 700;
    font-size: 1.7rem;
    text-align: center;
    line-height: 2.8rem;
    border-radius: 50%;
    user-select: none;
    box-shadow: 0 2px 8px rgba(179,134,0,0.4);
    flex-shrink: 0;
  }
  
  .step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: lowercase;
    color: var(--text-dark);
    margin: 0;
  }
  
  .step p {
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 460px;
  }
  
  .how-we-work-visual {
    flex: 1 1 480px;
    max-width: 480px;
    background: var(--bg-accent);
    border-radius: 1.75rem;
    box-shadow:
      inset 0 0 12px rgba(255,255,255,0.6),
      0 10px 24px rgba(160, 124, 63, 0.15);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }
  
  .how-we-work-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: block;
  }
  
  @media (max-width: 900px) {
    .how-we-work {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
    
    .how-we-work-text {
      max-width: 100%;
    }
  
    .how-we-work-visual {
      max-width: fit-content;
      max-height:max-content;
    }
  
    .step p {
      max-width: 100%;
    }
  }

  .call-to-action {
    text-align: center;
    padding: 6rem 1.5rem 8rem;
  }

  .call-to-action h2 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #2b2b2b;
  }

  .call-to-action p {
    font-size: 1.15rem;
    color: #55514c;
    margin-bottom: 2rem;
  }

  .call-to-action .cta {
    background: var(--accent-button-bg);
    border: 1.5px solid var(--accent-button-border);
    color: var(--text-dark);
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2rem;
    cursor: pointer;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  .hero-content .cta:hover {
    background-color: #7b6331;
  }
  .footer {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    color: #2b2b2b;
    align-items: flex-start;
  }
  
  .footer .col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .footer .col:first-child {
    flex: 2;
    max-width: 500px;
    justify-content: center; 
    height: 100%;
  }
  
  
  .footer img {
    margin-bottom: 1rem;
    width: 140px;
  }
  
  .footer .footer-title{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .footer p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
  }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .about-hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: var(--text-dark);
  }
  
  .about-hero .about-heading {
    color: var(--text-heading);
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-transform: lowercase;
  }
  
  .about-hero .about-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-dark-accent);
    line-height: 1.6;
  }
  
  .about-details {
    padding: 0 1.5rem 8rem;
    max-width: 1080px;
    margin: 0 auto;
  }
  
  .about-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-text {
    flex: 1 1 420px;
    color: var(--text-dark);
  }
  
  .about-text h2 {
    font-size: 2.4rem;
    font-weight: 600;
    text-transform: lowercase;
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
  }
  
  .about-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--text-dark-accent);
  }
  
  .about-image {
    flex: 1 1 480px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow:
      0 4px 20px rgba(160, 124, 63, 0.2),
      inset 0 0 10px rgba(255, 255, 255, 0.3);
  }
  
  .about-image img.responsive-img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 1.5rem;
  }

  @media (max-width: 900px) {
    .about-grid {
      flex-direction: column;
      gap: 3rem;
    }
  
    .about-hero {
      padding: 6rem 1.5rem 4rem;
    }
  
    .about-hero .about-heading {
      font-size: 2.8rem;
    }
  
    .about-hero .about-subheading {
      font-size: 1.2rem;
    }
  
    .about-text h2 {
      font-size: 2rem;
    }
  
    .about-text p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 600px) {
    .about-hero {
      padding: 5rem 1rem 3rem;
    }
  
    .about-hero .about-heading {
      font-size: 2.2rem;
    }
  
    .about-hero .about-subheading {
      font-size: 1rem;
    }
  
    .about-text {
      font-size: 0.95rem;
    }
  
    .about-text h2 {
      font-size: 1.7rem;
    }

    .about-image {
      flex: none;
      box-shadow: none;
    }
  }
  

.pricing-hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: var(--text-dark);
  }
  
  .pricing-heading {
    font-size: 3.8rem;
    font-weight: 500;
    text-transform: lowercase;
    margin-bottom: 1rem;
    color: var(--text-heading);
  }
  
  .pricing-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-dark-accent);
    line-height: 1.6;
  }
  
  .pricing-cards {
    padding: 0 1.5rem 6rem;
    max-width: 1080px;
    margin: 0 auto;
  }
  
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  
  .card {
    background: linear-gradient(135deg, #f9f0d8 0%, #fbf6e6 60%, #f7f1d3 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow:
      inset 0 0 0.5px rgba(255, 255, 255, 0.6),
      0 8px 20px rgba(160, 124, 63, 0.18),
      0 0 12px rgba(248, 223, 170, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
  }
  
  .card:hover {
    transform: translateY(-8px);
    box-shadow:
      0 14px 32px rgba(160, 124, 63, 0.3),
      0 0 20px rgba(255, 234, 174, 0.4);
  }
  
  .card h2 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: lowercase;
    margin-bottom: 1rem;
    color: var(--accent-gold);
  }
  
  .price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark-accent);
  }
  
  .hosting-note {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--accent-gold);
  }
  
  .card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    color: var(--text-dark-accent);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .card ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.2rem;
    position: relative;
  }
  
  .card ul li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1;
    top: 0;
  }
  
  .cta-button {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    font-size: 1rem;
    align-self: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover,
  .cta-button:focus {
    background-color: #7b6331;
    outline: none;
  }
  
  @media (max-width: 900px) {
    .pricing-heading {
      font-size: 3rem;
    }
  
    .price {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 600px) {
    .pricing-hero {
      padding: 5rem 1rem 3rem;
    }
  
    .pricing-heading {
      font-size: 2.4rem;
    }
  
    .pricing-subheading {
      font-size: 1.1rem;
    }
  
    .card {
      padding: 2rem 1.5rem;
    }
  
    .price {
      font-size: 1.6rem;
    }
  
    .cta-button {
      padding: 0.75rem 1.8rem;
      font-size: 0.9rem;
    }
  }
  


.services-hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    color: var(--text-dark);
  }
  
  .services-heading {
    font-size: 3.8rem;
    font-weight: 500;
    text-transform: lowercase;
    margin-bottom: 1rem;
    color: var(--text-heading);
  }
  
  .services-subheading {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-dark-accent);
    line-height: 1.6;
  }
  
  .services-tiles {
    max-width: 1080px;
    margin: 0 auto 6rem;
    padding: 0 1.5rem;
  }
  
  .tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  
  .tile {
    background: linear-gradient(135deg, #f9f0d8 0%, #fbf6e6 60%, #f7f1d3 100%);
    border-radius: 20px;
    padding: 2rem 2rem 2.5rem;
    box-shadow:
      inset 0 0 0.5px rgba(255, 255, 255, 0.6),
      0 8px 20px rgba(160, 124, 63, 0.18),
      0 0 12px rgba(248, 223, 170, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
  }
  
  .tile:hover {
    transform: translateY(-8px);
    box-shadow:
      0 14px 32px rgba(160, 124, 63, 0.3),
      0 0 20px rgba(255, 234, 174, 0.4);
  }
  
  .tile .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    text-shadow: 1px 1px 2px #ffdf5899;
  }
  
  .tile h3 {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: lowercase;
    margin-bottom: 0.75rem;
    color: var(--accent-gold);
  }
  
  .tile p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark-accent);
    margin: 0;
  }
  
  @media (max-width: 900px) {
    .services-heading {
      font-size: 3rem;
    }
  
    .tile h3 {
      font-size: 1.4rem;
    }
  }
  
  @media (max-width: 600px) {
    .services-hero {
      padding: 5rem 1rem 3rem;
    }
  
    .services-heading {
      font-size: 2.4rem;
    }
  
    .services-subheading {
      font-size: 1.1rem;
    }
  
    .tile {
      padding: 1.5rem 1.5rem 2rem;
    }
  
    .tile .icon {
      font-size: 2.5rem;
    }
  }
  
.contact-section {
  font-family: 'Inter', sans-serif;
  padding: 2rem 1.5rem 6rem;
  color: var(--text-dark);
  text-align: left;
}

.contact-section h2 {
  color: var(--text-heading);
  font-size: 3.8rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem 2rem 0 2rem; 
}

.contact-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.contact-column {
  float: left;
  width: 50%;
  padding: 0.5rem;
}

.contact-column::after{
  content: "";
  display: table;
  clear: both;
}

.contact-info-text {
  background-color: #f9f6f0;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 600px;
  border: 1px solid #e8e2d9;
  margin-bottom: 1rem;
}

.contact-info-text .contact-intro {
  font-size: 1.1rem;
  font-weight: 400;
  color: #4a463f;
  margin: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail .label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  color: var(--accent-gold);
}

.contact-detail .value {
  font-size: 1.05rem;
  font-weight: 400;
  color: #2e2a25;
}


.contact-form {
  max-width: 580px;
  margin: 0 auto;
  text-align: left;
  background-color: #faeace;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--accent-gold);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  border: 1px solid #d8cbb3;
  border-radius: 0.8rem;
  background-color: #fffdf8;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(160, 124, 63, 0.2);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form button {
  background: var(--accent-button-bg);
  border: 1.5px solid var(--accent-button-border);
  color: var(--text-dark);
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2rem;
  cursor: pointer;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.contact-form button:hover,
.contact-form button:focus {
  background-color: #7b6331;
}

@media (max-width: 600px) {
  .contact-column {
    width: 100%;
  }

  .contact-section h2 {
    font-size: 2.4rem;
  }

  .contact-section p {
    font-size: 1.05rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    padding: 0.75rem 1.8rem;
    font-size: 0.9rem;
  }
}
