html{
	scroll-behavior: smooth;
}

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

    :root {
      --green-dark:   #1a4a10;
      --green-mid:    #2a6e1a;
      --green-accent: #4caf28;
      --red:          #c0201a;
      --red-hover:    #a01510;
      --black:        #111111;
      --white:        #ffffff;
      --text-light:   rgba(255,255,255,0.90);
    }

    body {
      font-family: 'Nunito Sans', sans-serif;
      background: #111;
    }

    /* ─── HERO ────────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Background photo — using a lush garden/lawn unsplash image */
    .hero__bg {
      position: absolute;
      inset: 0;
      background:
        url('images/hero-1.jpg')
        center / cover no-repeat;
      transform: scale(1.04);
      animation: zoomOut 10s ease forwards;
    }

    @keyframes zoomOut {
      to { transform: scale(1); }
    }

    /* Brand overlay: dark green top → deep red bottom */
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        175deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.60) 45%,
        rgba(0, 0, 0, 0.72) 100%
      );
    }

    /* ─── NAV ─────────────────────────────────────────────────── */
    nav {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 60px;
      animation: fadeDown 0.7s ease both;
    }

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

    .nav__links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav__links a {
      text-decoration: none;
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.03em;
      opacity: 0.9;
      transition: opacity 0.2s;
    }
    .nav__links a:hover { opacity: 1; }

    /* Logo */
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      text-decoration: none;
    }

    .logo__icon {
      width: 52px;
      height: 52px;
    }

    .logo__wordmark {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .logo__sub {
      font-size: 8.5px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      opacity: 0.75;
    }

    /* All Pro logo styles */
    .logo__script {
      font-family: 'Dancing Script', cursive;
      font-size: 36px;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
      text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
      letter-spacing: 0.01em;
    }
    .logo__badge {
      display: block;
      background: var(--red);
      color: var(--white);
      font-family: 'Nunito Sans', sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 40px;
      border: 2px solid var(--white);
      margin-top: 2px;
    }

    /* CTA button – nav */
    .btn {
      display: inline-block;
      padding: 14px 28px;
      border-radius: 6px;
      font-family: 'Nunito Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: background 0.22s, transform 0.15s;
    }

    .btn--red, .btn--orange {
      background: var(--red);
      color: var(--white);
    }

	.btn--black{
      background: var(--red);
      color: var(--white);
    }

    .btn--orange:hover, .btn--black:hover {
      background: var(--red-hover);
      transform: translateY(-1px);
    }


    /* ─── HERO CONTENT ────────────────────────────────────────── */
    .hero__content {
      position: relative;
      z-index: 5;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 60px 80px;
      max-width: 815px;
      animation: fadeUp 0.9s 0.25s ease both;
    }

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

    .hero__headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 24px;
    }

    /* Underline on "Bold solutions" */
    .hero__headline span {
      position: relative;
      display: inline;
    }
    .hero__headline span::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 4px;
      background: var(--red);
      border-radius: 2px;
      animation: lineGrow 0.7s 1s ease both;
      transform-origin: left;
    }
    @keyframes lineGrow {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    .hero__body {
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-light);
      margin-bottom: 40px;
      max-width: 520px;
    }

    /* ─── VALUE BAR ───────────────────────────────────────────── */
    .value-bar {
      position: relative;
      z-index: 5;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: space-around;
      padding: 22px 60px;
    }

    .value-bar__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: var(--white);
      animation: fadeUp 0.8s ease both;
    }

    .value-bar__item:nth-child(2) { animation-delay: 0.1s; }
    .value-bar__item:nth-child(3) { animation-delay: 0.2s; }

    .value-bar__icon {
      width: 32px;
      height: 32px;
      color: var(--red);
	  stroke: var(--black);
	  fill:none;
      flex-shrink: 0;
      display: block;
    }

    .value-bar__label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: none;
    }

    .value-bar__divider {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,0.75);
    }

  /* ─── SERVICES LIST SECTION ──────────────────────────────── */
    .service-list-section {
      background: black;
      padding: 72px 80px;
      position: relative;
      overflow: hidden;
    }

    /* Subtle diagonal grass-stripe texture */
    .service-list-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
      );
      pointer-events: none;
    }

    .service-list-section__inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px 80px;
      align-items: start;
    }

    .service-list-section__left h2 {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(38px, 4vw, 58px);
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .service-list-section__left h2 em {
      font-style: normal;
      color: var(--red);
    }

    .service-list-section__left p {
      font-size: 15px;
      color: rgba(255,255,255,0.55);
      margin-top: 16px;
      line-height: 1.7;
      max-width: 340px;
    }

    .service-list-section__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 28px;
      background: var(--red);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 10px 22px;
      border-radius: 4px;
    }

    .service-list-section__badge::before {
      content: '✓';
      font-size: 16px;
    }

    /* Right side: two-column service grid */
    .service-list-section__right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .svc-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 20px 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .svc-item:nth-child(odd) {
      border-right: 1px solid rgba(255,255,255,0.07);
      padding-right: 24px;
    }

    .svc-item:nth-child(even) {
      padding-left: 24px;
    }

    /* Remove bottom border from last two items */
    .svc-item:nth-last-child(-n+2) {
      border-bottom: none;
    }

    .svc-item__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      margin-top: 7px;
    }

    .svc-item__label {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,0.88);
      line-height: 1.4;
    }

    /* ─── VISION SECTION ─────────────────────────────────────── */
    .vision {
      position: relative;
      background: #fbe7c8;
      overflow: hidden;
      display: flex;
      align-items: center;
	  justify-content: center;
      gap: 64px;
      padding: 72px 80px;
      min-height: 340px;
    }

    /* Photo in leaf / organic clip-path shape */
    .vision__image-wrap {
      position: relative;
      flex-shrink: 0;
      width: 420px;
      height: 300px;
      z-index: 1;
    }

    .vision__image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      /* Organic leaf shape: round top-right and bottom-right, pointed bottom-left */
      clip-path: path('M 0 280 C 0 200, 10 120, 60 70 C 110 20, 200 0, 300 0 C 370 0, 420 30, 420 100 L 420 220 C 420 270, 380 300, 320 300 L 0 280 Z');
      border-radius: 0;
    }

    /* Soft drop shadow behind the image */
    .vision__image-wrap::after {
      content: '';
      position: absolute;
      inset: 10px -6px -10px 6px;
      background: rgba(0,0,0,0.12);
      clip-path: path('M 0 280 C 0 200, 10 120, 60 70 C 110 20, 200 0, 300 0 C 370 0, 420 30, 420 100 L 420 220 C 420 270, 380 300, 320 300 L 0 280 Z');
      z-index: -1;
      filter: blur(16px);
    }

    /* Right column — text */
    .vision__text {
      position: relative;
      z-index: 1;
    }

    .vision__headline {
      font-family: 'Nunito Sans', sans-serif;
      font-size: clamp(28px, 3.2vw, 42px);
      font-weight: 800;
      color: black;
      line-height: 1.18;
      margin-bottom: 28px;
    }

    /* Green underline on "your vision?" */
    .vision__headline u {
      text-decoration: none;
      position: relative;
      display: inline;
    }
    .vision__headline u::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 3px;
      background: var(--red);
      border-radius: 2px;
    }

    .vision__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .vision__list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: black;
      line-height: 1.5;
    }

    .vision__list li::before {
      content: '•';
      color: var(--red);
      font-size: 18px;
      line-height: 1.4;
      flex-shrink: 0;
    }

    /* ─── SERVICES SECTION ───────────────────────────────────── */
    .services {
      background: #ffffff;
      padding: 72px 80px 80px;
    }

    .services__heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.2vw, 42px);
      font-weight: 800;
      color: var(--red);
      text-align: center;
      margin-bottom: 44px;
      line-height: 1.2;
    }

    .services__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
      max-width: 1100px;
      margin: 0 auto 16px;
      height: 580px;
    }

    .scard {
      position: relative;
      overflow: hidden;
      background: #1a3320;
    }

    .scard img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .scard:hover img { transform: scale(1.04); }

/*
    .scard__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.45) 55%,
        rgba(0, 0, 0, 0.72) 100%
      );
    }
*/

    .scard__body {
	  display:none;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px 36px;
      color: #fff;
      text-align: center;
    }

    .scard__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2vw, 28px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .scard__desc {
      font-size: 15px;
      line-height: 1.6;
      color: rgba(255,255,255,0.85);
      max-width: 340px;
      margin: 0 auto;
      text-align: center;
    }

    .scard--large {
      grid-column: 1;
      grid-row: 1 / 3;
      border-radius: 140px 140px 0 0;
    }

    .scard--top-right {
      grid-column: 2;
      grid-row: 1;
      border-radius: 0;
    }

    .scard--bottom-right {
      grid-column: 2;
      grid-row: 2;
      border-radius: 0 0 80px 0;
    }

	.scard--large-2 {
      grid-column: 2;
      grid-row: 1 / 3;
      border-radius: 140px 140px 0 0;
    }

	.scard--large-2 img{
		width:110%;
		object-position:top;
	}

    .scard--top-left {
      grid-column: 1;
      grid-row: 1;
      border-radius: 0;
    }

    .scard--bottom-left {
      grid-column: 1;
      grid-row: 2;
      border-radius: 0 0 80px 0;
    }

    .services__cta { 
		margin-top:48px;
		text-align: center; 
	}

    /* ─── CONTACT STRIP ──────────────────────────────────────── */
    .contact-strip {
      background: var(--red);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      padding: 28px 60px;
      flex-wrap: wrap;
    }

    .contact-strip__phones {
      display: flex;
	  align-items: center;
      gap: 20px;
    }

    .contact-strip__phone {
      font-family: 'Nunito Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.04em;
      text-decoration: none;
    }

    .contact-strip__phone span {
      font-weight: 400;
      opacity: 0.80;
      margin-right: 6px;
    }

	 .contact-strip__divider {
      width: 1px;
      height: 35px;
      background: rgba(255,255,255,0.30);
    }

    .contact-strip__social {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.35);
      color: var(--white);
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }

    .social-icon svg {
      width: 18px;
      height: 18px;
    }

    .social-icon:hover {
      background: rgba(255,255,255,0.15);
      border-color: var(--white);
      transform: translateY(-2px);
    }

  /* ─── HAMBURGER MENU ─────────────────────────────────────── */
  .nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 100;
  }

  .nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


  /* ─── TABLET (≤ 1024px) ──────────────────────────────────── */
  @media (max-width: 1024px) {
    nav {
      padding: 20px 36px;
    }

    .nav__links {
      gap: 22px;
    }

    .hero__content {
      padding: 0 36px 60px;
    }

    .value-bar {
      padding: 18px 36px;
    }

    .service-list-section {
      padding: 56px 40px;
    }

    .service-list-section__inner {
      gap: 32px 48px;
    }

    .vision {
      padding: 56px 40px;
      gap: 40px;
    }

    .vision__image-wrap {
      width: 340px;
      height: 240px;
    }

    .services {
      padding: 56px 40px 64px;
    }

    .services__grid {
      height: 480px;
    }

    .contact-strip {
      padding: 24px 40px;
    }
  }


  /* ─── MOBILE (≤ 768px) ───────────────────────────────────── */
  @media (max-width: 768px) {

    /* Nav */
    nav {
      padding: 18px 20px;
      flex-wrap: wrap;
      position: relative;
    }

    .nav__toggle {
      display: flex;
      order: 3;
    }

    .logo {
      order: 1;
      flex: 1;
      align-items: flex-start;
    }

    .nav__links {
      display: none;
      order: 4;
      width: 100%;
      flex-direction: column;
      gap: 0;
      background: rgba(0,0,0,0.90);
      margin-top: 12px;
      border-radius: 8px;
      overflow: hidden;
    }

    .nav__links.open {
      display: flex;
    }

    .nav__links li a {
      display: block;
      padding: 14px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 15px;
    }

    .nav__links li:last-child a {
      border-bottom: none;
    }

    /* Hide the nav CTA on mobile (hero has its own) */
    nav > .btn {
      display: none;
    }

    /* Hero */
    .hero__content {
      padding: 24px 20px 60px;
      max-width: 100%;
    }

    .hero__headline {
      font-size: clamp(36px, 9vw, 52px);
    }

    .hero__body {
      font-size: 15px;
      max-width: 100%;
    }

    /* Value bar */
    .value-bar {
      flex-direction: column;
      padding: 28px 20px;
      gap: 20px;
    }

    .value-bar__divider {
      width: 60px;
      height: 1px;
    }

    .value-bar__item {
      flex-direction: row;
      gap: 12px;
      width: 100%;
      justify-content: center;
    }

    /* Services list */
    .service-list-section {
      padding: 48px 20px;
    }

    .service-list-section__inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .service-list-section__left p {
      max-width: 100%;
    }

    .service-list-section__right {
      grid-template-columns: 1fr 1fr;
    }

    /* Vision */
    .vision {
      flex-direction: column;
      padding: 48px 20px;
      gap: 36px;
      min-height: auto;
    }

    .vision__image-wrap {
      width: 100%;
      height: 240px;
    }

    .vision__image-wrap img {
      clip-path: none;
      border-radius: 12px;
    }

    .vision__image-wrap::after {
      display: none;
    }

    .vision__text {
      width: 100%;
    }

    .vision__headline {
      font-size: clamp(24px, 6vw, 34px);
    }

    /* Services grid */
    .services {
      padding: 48px 20px 56px;
    }

    .services__grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
      gap: 12px;
    }

    .scard {
      height: 260px;
    }

    .scard--large,
    .scard--large-2 {
      grid-column: 1;
      grid-row: auto;
      border-radius: 24px 24px 0 0;
      height: 300px;
    }

    .scard--top-right,
    .scard--top-left {
      grid-column: 1;
      grid-row: auto;
      border-radius: 0;
    }

    .scard--bottom-right,
    .scard--bottom-left {
      grid-column: 1;
      grid-row: auto;
      border-radius: 0 0 24px 24px;
    }

    .scard--large-2 img {
      width: 100%;
    }

    /* Contact strip */
    .contact-strip {
      flex-direction: column;
      gap: 0;
      padding: 28px 20px;
    }

    .contact-strip__phones {
      flex-direction: column;
      gap: 0;
      width: 100%;
      align-items: center;
    }

    .contact-strip__phone {
      padding: 14px 0;
      font-size: 18px;
      width: 100%;
      text-align: center;
    }

    .contact-strip__divider {
      width: 60px;
      height: 1px;
    }
  }


  /* ─── SMALL MOBILE (≤ 480px) ─────────────────────────────── */
  @media (max-width: 480px) {
    .service-list-section__right {
      grid-template-columns: 1fr;
    }

    .svc-item:nth-child(odd) {
      border-right: none;
      padding-right: 0;
    }

    .svc-item:nth-child(even) {
      padding-left: 0;
    }

    .svc-item:nth-last-child(-n+2) {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .svc-item:last-child {
      border-bottom: none;
    }

    .logo__script {
      font-size: 28px;
    }

    .logo__badge {
      font-size: 9px;
      padding: 3px 10px;
    }
	  
	  .contact-strip__social{
		  margin-top:16px;
	  }
  }
  