.tyke-wrapper {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  font-size: 16px;
}

.tyke-wrapper .container {
  position: relative;
  z-index: 4;
  padding-left: 2rem;
  padding-right: 2rem;
}

:root {
  /* Color Variables */
  --brown: #9a7d4a;
  --dark-brown: #664d22;
  --bright-green: #00844c;
  --dark-green: #009163;
  --bottle-green: #014025;
  --black: #000;
  --white: #fff;
  
  /* RAL Custom Colors */
  --ral-orange: #FF2D00;    /* RAL 2005 */
  --ral-green: #287233;     /* RAL 6001 */
  --ral-blue: #1F3A93;      /* RAL 5003 */
  --ral-burgundy: #641C34;  /* RAL 4004 */
  --ral-yellow: #F3A505;    /* RAL 1033 */
  --ral-red: #721422;       /* RAL 3032 */

  /* Gradient Variables */
  --brown-gradient-vertical: linear-gradient(
    162.69deg,
    #9a7d4a 11.88%,
    #342a19 88.66%
  );
  --brown-gradient-horizontal: linear-gradient(
    90deg,
    rgba(172, 150, 110, 0.2) 3.65%,
    #9a7d4a 80.28%
  );
  --green-gradient-vertical: linear-gradient(
    162.69deg,
    #00844c 11.88%,
    #014025 88.66%
  );
  --bottle-green-gradient-vertical: linear-gradient(
    162.69deg,
    #014025 11.88%,
    #001a0f 88.66%
  );

  /* Typography Variables - Mobile First */
  --font-h1: 7.2rem;
  --font-h2: 3rem;
  --font-h3: 2.4rem;
  --font-h4: 2rem;
  --font-h5: 1.6rem;
  --font-p: 1.4rem;
}
.color-brown {
  color: var(--brown);
}
.color-bright-green {
  color: var(--bright-green);
}
.color-dark-green {
  color: var(--dark-green);
}
.color-bottle-green {
  color: var(--bottle-green);
}
.color-black {
  color: var(--black);
}
.color-white {
  color: var(--white);
}

/* Typography - Mobile First Approach */
.tyke-wrapper h1 {
  font-size: var(--font-h1);
  line-height: 100%;
  text-align: left;
  padding: 0;
  margin: 0 0 1rem 0;
}
.tyke-wrapper h2 {
  font-size: var(--font-h2);
  line-height: 110%;
}
.tyke-wrapper h3 {
  font-size: var(--font-h3);
  line-height: 110%;
}
.tyke-wrapper h4 {
  font-size: var(--font-h4);
  line-height: 110%;
}
.tyke-wrapper h5 {
  font-size: var(--font-h5);
  line-height: 110%;
}

.tyke-wrapper p,
.tyke-wrapper li {
  font-size: var(--font-p);
  line-height: 150%;
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
  :root {
    --font-h1: 9rem;
    --font-h2: 2.2rem;
    --font-h3: 1.8rem;
    --font-h4: 1.5rem;
    --font-h5: 1.2rem;
    --font-p: 1.1rem;
  }
  .tyke-wrapper h1 {
    margin: 0 0 1.5rem 0;
  }
}

/* Large Tablet/Small Desktop - 992px and up */
@media (min-width: 992px) {
  :root {
    --font-h1: 12rem;
    --font-h2: 3.8rem;
    --font-h3: 3.2rem;
    --font-h4: 1.8rem;
    --font-h5: 1.4rem;
    --font-p: 1.68rem;
  }
  .tyke-wrapper h1 {
    margin: 0 0 1.8rem 0;
  }
}

/* Desktop - 1200px and up */
@media (min-width: 1200px) {
  :root {
    --font-h1: 12.24rem;    /* 14.4 * 0.85 = 12.24rem */
    --font-h2: 3.74rem;     /* 4.4 * 0.85 = 3.74rem */
    --font-h3: 3.06rem;     /* 3.6 * 0.85 = 3.06rem */
    --font-h4: 2rem;      /* 2 * 0.85 = 1.7rem */
    --font-h5: 1.78rem;     /* 1.6 * 0.85 = 1.36rem */
    --font-p: 1.598rem;     /* 1.88 * 0.85 = 1.598rem */
  }
  .tyke-wrapper h1 {
    line-height: 100%;
    margin: 0 0 2rem 0;
  }
}

/* Large Desktop - 1400px and up */
@media (min-width: 1400px) {
  :root {
    --font-h1: 14.4rem;
    --font-h2: 4.4rem;
    --font-h3: 3.6rem;
    --font-h4: 2.4rem;
    --font-h5: 2rem;
    --font-p: 1.88rem;
  }
}

p.larger-text {
    font-size: var(--font-h3) !important;
    line-height: 108% !important;
    margin: 0 0 2.2rem 0 !important;
    font-weight: 700 !important;
    font-family: 'Montserrat';
}
p.large-text {
    font-size: 1.8rem !important;
    line-height: 140% !important;
    margin: 0 0 2.2rem 0 !important;
    font-weight: 600 !important;
}

@media (min-width: 992px) {
  p.large-text {
    font-size: 2.4rem !important;
  }
}
.tyke-wrapper h1,
.tyke-wrapper h2,
.tyke-wrapper h3,
.tyke-wrapper h4,
.tyke-wrapper h5,
.tyke-wrapper h6 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.tyke-wrapper h1:after {
  display: none;
}
.tyke-wrapper h1 {
  text-transform: uppercase;
}
.tyke-wrapper .tyke-intro {
  text-transform: uppercase;
  margin: 0;
  font-size: var(--font-h4);
  font-weight: 400;
  font-family: "Montserrat";
}
.tyke-wrapper .tyke-intro span {
  font-weight: 700;
}
.tyke-wrapper .tyke-strapline {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04rem;
  margin: 0 0 2.8rem 0;
}
.tyke-wrapper .tyke-strapline span {
  color: var(--bright-green);
}
.tyke-wrapper .tyke-hero-text {
}
.tyke-wrapper .tyke-hero-text p {
  margin: 0 0 2rem 0;
}

/* Buttons */
.btn-regular {
  font-weight: 600;
  font-size: var(--font-p);
  border-radius: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 14px 28px;
  gap: 10px;
  color: var(--color-white);
  text-decoration: none;
  background: var(--dark-green);
  transition: background 300ms ease;
}
.btn-large {
    font-weight: 600;
    font-size: var(--font-h5);
    border-radius: 100px;
    display: inline-flex;
    align-self: flex-start;
    flex-direction: row;
    align-items: center;
    padding: 14px 38px;
  gap: 10px;
  color: var(--color-white);
  text-decoration: none;
  background: var(--dark-green);
  transition: background 300ms ease;
}
.btn-bright-green {
  background: var(--bright-green);
}
.btn-bright-green:hover {
  background: var(--bottle-green);
}
.btn-brown {
  background: var(--brown);
}
.btn-brown:hover {
  background: var(--dark-brown);
}

.btn-regular:hover, .btn-large:hover {
  color: var(--white);
}

/* Shapes */
.side-shape {
  position: absolute;
  width: 50vw;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.side-shape.green-one {
  left: 0;
  top: -30%;
}
.side-shape.brown-one {
  right: 0;
  top: 0%;
}
.background-shape {
    position: absolute;
    width: 100vw;
    top: -20%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

/* Hero Section */
.tyke-hero {
    padding-top: 60px;
    padding-bottom: 80px;
    height: auto;
    min-height: auto;
}
@media (min-width: 992px) {
  .tyke-hero {
    padding-top: 40px;
    padding-bottom: 40px;
    height: 80vh;
    min-height: 700px;
  }
}
.tyke-hero .container {
  position: relative;
  z-index: 2;
}
.tyke-hero-title {
  text-transform: none;
  margin: 0 0 0.4rem 0 !important;
}
.tyke-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 78vw;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}

/* Eco Slider */
.tyke-eco-slider {
  padding: 60px 0;
}
@media (min-width: 992px) {
  .tyke-eco-slider {
  padding: 140px 0;
}
}

/* Eco Static Grid */
.eco-static-grid {
  --bs-gutter-x: 30px;
  align-items: stretch;
}

.eco-static-grid > [class*="col-"] {
  display: flex;
}

.eco-swiper {
  margin-bottom: 60px;
  overflow: visible;
}

.eco-swiper .swiper-wrapper {
  overflow: visible;
  align-items: stretch;
}

.eco-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.eco-slide-content {
  background: var(--bottle-green-gradient-vertical);
  border-radius: 18px;
  padding: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: all 1.2s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex: 1;
  text-align: center;
}
.eco-slide-content .background-shader {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background: var(--brown-gradient-vertical);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}
/* Active slide styling */
.eco-swiper .swiper-slide-active .eco-slide-content .background-shader {
  opacity: 1;
}

.eco-slide-content h3 {
  color: var(--dark-green);
  margin-bottom: 15px;
  font-size: 6rem;
  line-height: 100%;
  margin: 0 0 1.2rem 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .eco-slide-content h3 {
    font-size: 8rem;
  }
}
.swiper-slide-active .eco-slide-content h3 {
  color: var(--white);
}
.eco-slide-content p {
  color: var(--white);
  margin: 0;
  font-weight: 600;
  font-size: var(--font-h4);
  position: relative;
  z-index: 2;
    line-height: 112%;
}

.color-content-left .btn-regular {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
}
/* Swiper Navigation */
.eco-swiper-navigation {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 0px;
  position: relative;
  z-index: 10;
}

.eco-swiper-button-prev,
.eco-swiper-button-next {
  cursor: pointer;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  position: relative;
  z-index: 11;
}

.eco-swiper-button-prev svg,
.eco-swiper-button-next svg {
  pointer-events: none;
  display: block;
}

.eco-swiper-button-prev:hover,
.eco-swiper-button-next:hover {
  opacity: 0.8;
}

/* Disabled state */
.eco-swiper-button-prev.swiper-button-disabled svg circle,
.eco-swiper-button-next.swiper-button-disabled svg circle {
  fill: var(--bottle-green);
  fill-opacity: 1;
}

.eco-swiper-button-prev.swiper-button-disabled svg path,
.eco-swiper-button-next.swiper-button-disabled svg path {
  stroke: white;
}

.eco-swiper-button-prev.swiper-button-disabled,
.eco-swiper-button-next.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 1;
}

/* Eco Swiper Scrollbar */
.eco-swiper-scrollbar-container {
  margin-top: 4px;
  margin-bottom: 28px;
}

.eco-swiper-scrollbar-container .swiper-scrollbar {
  background: var(--bottle-green);
  height: 6px !important;
  border-radius: 3px;
  position: relative;
  left: 0;
  top: 0;
}

.eco-swiper-scrollbar-container .swiper-scrollbar-drag {
  background: var(--white);
  border-radius: 3px;
  height: 6px !important;
  cursor: pointer;
}

/* Comparison Table */
.tyke-comparison-table {
  padding: 20px 0;
  background: var(--black);
}
@media (min-width: 992px) {
  .tyke-comparison-table {
  padding: 80px 0;
  background: var(--black);
}
}

.comparison-swiper {
  margin-bottom: 40px;
}

.comparison-slide-content {
  padding: 40px 20px;
  overflow: visible;
}

.image-comparison-container {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
  padding: 0;
}
@media (min-width: 992px) {
  .image-comparison-container {
    padding: 0 80px;
  }
}

.image-comparison {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
}

.image-before,
.image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.image-before {
  position: relative;
  display: block;
}

.image-after {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
  transition: clip-path 0.1s ease;
}

.image-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 138px;
  height: 100%;
  background: transparent;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.divider-line {
  display: none;
}

.divider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 138px;
  height: 100%;
  cursor: ew-resize;
}

.divider-handle svg {
  width: 138px;
  height: 100%;
  object-fit: fill;
}

/* Comparison Navigation */
.comparison-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.comparison-button-wrapper {
  display: flex;
  gap: 8px;
  background: linear-gradient(90deg, #181818 0%, #2c2c2c 100%);
  padding: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.comparison-button {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.24rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.comparison-button:hover {
}

.comparison-button.active {
  background: var(--bright-green);
  color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comparison-navigation {
    flex-direction: column;
    align-items: center;
  }

  .comparison-button {
    width: 100%;
    max-width: 280px;
  }
}

.regular-font {
  font-weight: 300 !important;
}

/* Color Options */
.tyke-color-options {
  padding: 0 0 20px 0;
  background: var(--black);
}
@media (min-width: 992px) {
  .tyke-color-options {
      padding: 0 0 100px 0;
  }
}

.tyke-color-options h2 {
  color: var(--white);
}

/* Color Type Navigation */
.color-type-navigation {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0;
  border: none;
  border-radius: 0;
}

.color-divider {
  border-left: 1px solid #fff;
  opacity: 0.24;
  height: 100%;
  display: flex;
  min-height: 116px;
  margin-left: 12px;
  padding-right: 12px;
}

.color-group {
}

.color-group h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--font-h5);
    font-weight: 500;
}

.color-buttons {
  display: flex;
  gap: 6px;
  background: linear-gradient(90deg, #181818 0%, #2c2c2c 100%);
  border-radius: 50px;
  padding: 6px;
}

.color-buttons.standard .color-button.active {
  background: var(--bright-green);
  color: var(--white);
}

.color-buttons.customised .color-button.active {
  background: var(--bright-green);
  color: var(--white);
}

/* Bespoke RAL Colors for Customised Buttons */
.color-buttons.customised .color-button[data-color="orange"].active {
  background: var(--ral-orange);
  color: var(--white);
}

.color-buttons.customised .color-button[data-color="green"].active {
  background: var(--ral-green);
  color: var(--white);
}

.color-buttons.customised .color-button[data-color="blue"].active {
  background: var(--ral-blue);
  color: var(--white);
}

.color-buttons.customised .color-button[data-color="burgundy"].active {
  background: var(--ral-burgundy);
  color: var(--white);
}

.color-buttons.customised .color-button[data-color="yellow"].active {
  background: var(--ral-yellow);
  color: var(--black);
}

.color-buttons.customised .color-button[data-color="red"].active {
  background: var(--ral-red);
  color: var(--white);
}

.color-button {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.24rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  /* Improve mobile touch */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.color-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Color Options Swiper */

@media (min-width: 992px) {
  .color-options-swiper {
    height: 400px;
  }
}


.color-content-left {
  padding: 40px 20px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
}

.color-content-left h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: var(--font-h3);
}

.color-content-left p {
  margin-bottom: 0;
  opacity: 0.9;
  font-size: var(--font-body);
}

.color-content-right {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

/* Color Image Container */
.color-image-container {
    position: relative;
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
@media (min-width: 992px) {
  .color-image-container {
    height: 350px;
  }
}

.color-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-green);
  background: rgba(255, 255, 255, 0.9);
}

/* Color Options Responsive */
@media (max-width: 992px) {
  .color-type-navigation {
    flex-direction: column;
    gap: 30px;
  }

  .color-content-left,
  .color-content-right {
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .color-type-navigation {
    padding: 20px;
  }

  .color-buttons {
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
  }
  .color-buttons.customised {
    border-radius: 26px;
  }

  .color-button {
    flex: 1;
    min-width: 80px;
    padding: 10px 16px;
    font-size: 1.1rem;
    /* Enhanced mobile touch */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Mobile-specific active states */
  .color-button:active {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(0.95);
  }
}

/* Lens Options */
.tyke-lens-options {
  padding: 60px 0 0 0;
  background: var(--black);
}
@media (min-width: 992px) {
  .tyke-lens-options {
    padding: 80px 0;
    background: var(--black);
  }
}

.tyke-lens-options h2 {
  color: var(--white);
}

/* Lens Type Navigation */
.lens-type-navigation {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  background: linear-gradient(90deg, #181818 0%, #2c2c2c 100%);
  border-radius: 50px;
  padding: 8px;
}

.lens-type-button {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.24rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.lens-type-button:hover {
}

.lens-type-button.active {
  background: var(--bright-green);
  color: var(--white);
}

/* Button Container */
.lens-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
}

/* Lens Options Swiper */
@media (min-width: 992px) { 
  .lens-options-swiper {
    margin-top: 40px;
  }
}


.lens-slide-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.lens-content-left {
  flex: 1;
  color: var(--white);
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.lens-content-left h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.lens-content-left p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.lens-content-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Lens content animation when active */
.swiper-slide-active .lens-content-left {
  transform: translateY(0);
  opacity: 1;
}

/* Installation Toggle */
.installation-toggle {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  background: linear-gradient(90deg, #181818 0%, #2c2c2c 100%);
  border-radius: 50px;
  padding: 8px;
}

.installation-button {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.24rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.installation-button:hover {
}

.installation-button.active {
  background: var(--brown);
  color: var(--white);
}

/* Lens Image Container */
.lens-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

/* Lens image container animation when active */
.swiper-slide-active .lens-image-container {
  transform: scale(1);
  opacity: 1;
}

.lens-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lens-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.lens-image.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .lens-slide-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .lens-content-left,
  .lens-content-right {
    flex: none;
    width: 100%;
  }

  .lens-buttons-container {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0px;
    align-items: center;
  }

  .lens-type-navigation {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
.lens-type-navigation {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
        max-width: 100%;
        border-radius: 26px;
    }

  .lens-type-button {
    flex: 1;
    min-width: 100px;
    padding: 10px 16px;
    font-size: 1.1rem;
  }

  .installation-toggle {
    width: 100%;
    max-width: 300px;
  }
}

/* Contact Form */
.tyke-contact-form {
  padding: 80px 0;
  background: var(--black);
}

.contact-content-left {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content-left h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: var(--font-h2);
}

.contact-content-left h3 {
  color: var(--bright-green);
  margin-bottom: 25px;
  font-size: var(--font-h3);
  font-weight: 400;
}

.contact-content-left > p {
  color: var(--white);
  margin-bottom: 40px;
  font-size: var(--font-body);
  line-height: 1.6;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-feature {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-feature:last-child {
  border-bottom: none;
}

.html-tyke header[role=banner] {
    background: transparent;
}
.html-tyke footer[role=contentinfo] {
    border-top: 0 none;
}

.contact-feature h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: var(--font-h4);
  font-weight: 600;
}

.contact-feature p {
  color: var(--white);
  margin-bottom: 0;
  font-size: var(--font-body);
  opacity: 0.8;
}

.contact-content-right {
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-container {
    width: 100%;
    background: var(--light-grey);
    border-radius: 12px;
    padding: 0;
}

/* Gravity Forms Styling */
.contact-form-container .gform_wrapper {
  margin: 0;
}

.contact-form-container .gform_wrapper .gform_fields {
  padding: 0;
}

.contact-form-container .gform_wrapper .gfield {
  margin-bottom: 20px;
}

.contact-form-container .gform_wrapper .gfield_label {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: var(--font-p);
}

.contact-form-container .gform_wrapper input[type="text"],
.contact-form-container .gform_wrapper input[type="email"],
.contact-form-container .gform_wrapper input[type="tel"],
.contact-form-container .gform_wrapper textarea,
.contact-form-container .gform_wrapper select {
  width: 100%;
    padding: 10px 14px ! Important;
    border: 0 none;
    border-radius: 0;
    background: var(--bright-green);
    color: var(--white);
    font-size: var(--font-p);
    transition: border-color 0.3s 
ease;
width: 100%;
}
.contact-form-container .gform_wrapper ::placeholder {
    color: var(--white)!important;
    font-size: var(--font-p);
}
.contact-form-container .gform_wrapper input[type="text"]:focus,
.contact-form-container .gform_wrapper input[type="email"]:focus,
.contact-form-container .gform_wrapper input[type="tel"]:focus,
.contact-form-container .gform_wrapper textarea:focus,
.contact-form-container .gform_wrapper select:focus {
  outline: none;
  border-color: var(--bright-green);
}

.contact-form-container .gform_wrapper .gform_footer {
  text-align: center;
  margin-top: 30px;
}

.contact-form-container .gform_wrapper .gform_footer input[type="submit"] {
    background: var(--brown);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 0;
    width: 100%;
    font-weight: 600;
    font-size: var(--font-p);
    cursor: pointer;
    transition: all 0.3s 
ease;
}
.contact-form-container .gform_wrapper .gform_footer input[type="submit"]:hover {
    transform: none;
}

.tyke-wrapper .gform_legacy_markup_wrapper ul.gform_fields li.gfield {
    padding-right: 0px;
}

.contact-form-container
  .gform_wrapper
  .gform_footer
  input[type="submit"]:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}

/* Contact Form Responsive */
@media (max-width: 768px) {
  .tyke-contact-form {
    padding: 60px 0;
  }

  .contact-content-left,
  .contact-content-right {
    padding: 20px;
  }

 .contact-form-container {
        padding: 0;
    }

  .contact-features {
    margin-top: 30px;
  }
}

.slimline-header {
    padding: 4.8rem 0;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, rgba(172, 150, 110, 0.2) 3.65%, #9A7D4A 80.28%);
}
.slimline-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 100%;
    margin: 0;
}
@media (min-width: 1200px) {
.slimline-header h3 {
        font-size: 2.2rem;
    }
}
@media (min-width: 1400px) {
    .slimline-header h3 {
        font-size: 3rem;
    }
}
.slimline-header h3 strong {
    font-weight: 600;
}

@media (min-width: 1200px) {
    .narrow-text {
        width: 65%;
        margin: 0 auto;
    }
}

.narrow-text {
    font-weight: 600;
}