@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Bold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Teko';
  src: url('../fonts/Teko-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Bloody Mary';
  src: url('../fonts/BloodyMaryRegular.woff2') format('woff2'),
       url('../fonts/BloodyMary.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}


body {
  font-family: 'Rubik', Arial, sans-serif;
}

h1, h2, h3 {
  font-family: 'Bloody Mary';
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #000;
}

/* Simple container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* ===========================================
   Reusable Gradient Buttons
   Reverse animation (right to left)
=========================================== */

/* Base button style shared by both */
.btn-gradient {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 0;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to bottom right,
    #FFB733 0%,
    #FE0C03 75%,
    #b8740d 100%
  );
  transition: transform 0.8s ease;
  z-index: -1; /* gradient behind */
  transform: translateX(0); /* initially visible */
}

.btn-gradient span {
  position: relative;
  z-index: 1; /* keep text above gradient */
}

/* Reverse animation – gradient slides LEFT on hover */
.btn-gradient:hover::before {
  transform: translateX(-100%);
}

/* ===========================================
   Dark version: for dark backgrounds
=========================================== */
.btn-gradient-dark {
  background-color: #222429; /* Base color after gradient slides out */
  color: #222429; /* Dark text by default */
}

.btn-gradient-dark:hover {
  color: #fff; /* Text turns white on hover */
}



.btn-gradient-light {
  background-color: #fff;
  color: #fff;
  border: 0px solid #eee; /* optional subtle border for definition */
}

.btn-gradient-light:hover {
  background-color: transparent;
  color: #222429;
  border-color: #ccc; /* adjust as needed */
}



/* =============================
   CONFIG
============================= */
:root { --header-height: 100px; } /* set to your actual header height */

/* ===================================================================
   HEADER STYLES (COMPLETE AND STABLE VERSION)
=================================================================== */

/* --- Main Header & Grid --- */
.site-header {
  background-color: #000;
  color: #fff;
  padding: 10px 0;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-grid {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
}

.header-logo img {
  max-height: 140px;
  width: auto;
}

/* Desktop: overlay the hero */
@media (min-width: 992px) {
  .site-header {
    background: transparent;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    border-bottom: none;
    z-index: 1000;
  }
}

/* --- Desktop Navigation --- */
.header-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav li {
  position: relative;
}

/* Base styles for ALL TOP-LEVEL links */
.header-nav > ul > li > a {
  display: block;
  position: relative;
  padding: 20px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* 1. UNDERLINE effect for links that ARE NOT dropdowns */
.header-nav > ul > li:not(.dropdown) > a::after {
  content: '';
  position: absolute;
  bottom: 15px; /* Positioned at the bottom */
  left: 15px;
  width: calc(100% - 30px);
  height: 2px;
  background: #FE0C03;
  transform: scaleX(0); /* Hidden by default */
  transition: transform 0.3s ease;
  transform-origin: center;
}

/* Show underline on hover/active */
.header-nav > ul > li:not(.dropdown) > a:hover::after,
.header-nav > ul > li:not(.dropdown) > a.active::after {
  transform: scaleX(1); /* Visible on hover */
}

/* 2. ARROW icon for links that ARE dropdowns */
.header-nav > ul > li.dropdown > a {
  padding-right: 30px; /* Make space for the arrow */
}

.header-nav > ul > li.dropdown > a::after {
  content: '▼';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  font-size: 0.6rem;
  color: #FE0C03;
}

/* --- Desktop Dropdown Menu --- */
.header-nav li ul {
  display: none; /* Hidden by default */
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ECEEEF;
  padding: 5px 0;
  list-style: none;
  min-width: 250px;
  z-index: 10;
}

/* Show dropdown on hover */
.header-nav li.dropdown:hover > ul {
  display: flex;
}

/* Links WITHIN the dropdown */
.header-nav li ul li a {
  display: block;
  padding: 8px 16px;
  font-size: 0.85rem;
  line-height: 1.6; /* Correct, readable line-height */
  font-weight: 500;
  text-transform: none;
  color: #000000;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.header-nav li ul li a:hover,
.header-nav li ul li a.active {
  color: #222429;
  font-weight: 600;
}

/* --- Header Contact & Burger Icon --- */
.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.85rem;
  justify-content: flex-end;
}

.header-contact .email-icon, .burger, .header-nav .nav-info, .header-nav .nav-info .facebook-icon {
  display: none; /* All special items hidden by default */
}

.header-contact .email-icon {
  display: flex; /* Re-enable for desktop */
  font-size: 1.2rem;
  background: #FE0C03;
  color: #222429;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}

.header-contact .email-text span {
  display: block;
  font-size: 0.7rem;
  color: #ccc;
}

.header-contact .email-text a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.burger span {
  display: block;
  height: 3px;
  background: #ffc107;
  border-radius: 2px;
}

/* ===================================================================
   MOBILE & TABLET STYLES (< 992px)
=================================================================== */
@media (max-width: 992px) {

  .header-grid {
    grid-template-columns: 1fr auto;
  }

  .header-contact {
    display: none;
  }

  .burger {
    display: flex; /* Show burger on mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    justify-self: end;
  }

  /* --- Mobile Navigation Container --- */
  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ECEEEF;
    z-index: 100;
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0;
  }

  .header-nav.active {
    max-height: 85vh; /* Safe height */
    padding: 20px 0;
  }

  .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding-left: 40px;
  }

  .header-nav > ul > li > a {
    padding: 8px 0;
    line-height: 1.9;
    color: #9ca3a9;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
  }

  /* --- Mobile Icon Handling --- */
  /* 1. Explicitly turn OFF the ::after element for ALL top-level links */
  .header-nav > ul > li > a::after {
    display: none;
  }

  /* 2. Turn ON the arrow icon for ONLY dropdowns on mobile */
  .header-nav li.dropdown > a::after {
    display: inline-block; /* This overrides the 'display: none' above */
    content: "▼";
    font-size: 0.6rem;
    margin-left: 8px;
    color: #FE0C03;
    transition: transform 0.3s ease;
  }

  .header-nav li.dropdown.open > a::after {
    transform: rotate(180deg);
  }

  /* --- Mobile Submenu & Info Box --- */
  .header-nav li.dropdown:hover > ul {
    display: none; /* Disable hover on mobile */
  }

  .header-nav li ul {
    position: static;
    display: none;
    background: none;
    padding-left: 15px;
    width: 100%;
  }

  .header-nav li.dropdown.open > ul {
    display: block;
  }
  
  /* Show the nav-info block on mobile */
  .header-nav .nav-info {
    display: block;
    padding: 20px 40px;
    margin-top: 20px;
    color: #222429;
    background: #ECEEEF;
    border-top: 1px solid #ccc;
  }

  .header-nav .nav-info p { margin-bottom: 10px; }
  .header-nav .nav-info p:last-child { margin-bottom: 20px; }

  .header-nav .nav-info .facebook-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #ffc107;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 320 512'><path d='M279.14 288l14.22-92.66h-88.91V127.77c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S293.48 0 267.27 0c-73.23 0-121.05 44.38-121.05 124.72v70.62H86.41V288h59.81v224h92.66V288z'/></svg>") no-repeat center;
  }
}

/* ===============================
   HERO BANNER
================================ */

/* Animations */
@keyframes dropInFromTopLeft {
  from {
    transform: translate(-50px, -50px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}












.hero-banner {
  position: relative;
  background-color: #000; /* fallback color */
  background-image: url("../images/halloween/halloween-poster.png");
  background-image: image-set(
    url("../images/halloween/halloween-poster.webp") type("image/webp"),
    url("../images/halloween/halloween-poster.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; /* base height for mobile/tablet */
  color: #fff;
  overflow: hidden;
}

/* Desktop: pull hero up under header and compensate height + legibility overlay */
@media (min-width: 992px) {
  .hero-banner {
    margin-top: calc(var(--header-height) * -1);
    height: calc(100vh + var(--header-height));
  }

  /* Stop table-cell centering and push content below the header */
  .hero-banner .content-box {
    display: block;   /* override table */
    height: auto;
  }

  .hero-banner .content-box .content {
    display: block;   /* override table-cell */
    vertical-align: top !important;
    padding-top: calc(var(--header-height) + 150px) !important; /* push everything down */
    padding-bottom: 50px;
  }
}





	

  /* Optional soft gradient to help header/nav readability */
  .hero-banner::before {
    content: "";
    position: absolute; inset: 0 0 auto 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
    pointer-events: none;
    z-index: 1;
  }

  /* Keep hero content clear of the overlaid header */
  .hero-banner .content-box .content {
    padding-top: calc(50px + var(--header-height));
  }

  /* Slight readability boost for header elements over image */
  .header-nav > ul > li > a { text-shadow: 0 0px 0px rgba(0,0,0,.0); }
  .header-logo img { filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
}

.hero-banner .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-banner .auto-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-banner .content-box {
  display: table;
  width: 100%;
  height: 100%;
}

.hero-banner .content-box .content {
  display: table-cell;
  vertical-align: middle;
  padding: 50px 0 50px;
}

.hero-banner .content-box .inner {
  max-width: 800px;
}

.hero-banner h1 {
  font-family: 'Bloody Mary', cursive;
  color: #FE0C03;
  line-height: .9em;
  font-size: 70px;
  margin-top: 24px;
  text-transform: uppercase;
  font-weight: normal; /* Most display fonts look better without bold */
}

.hero-banner h3.sub-title {
  font-size: 24px;
  font-family: 'Bloody Mary', cursive;
  font-weight: 400;
  margin-top: 40px;
  margin-bottom: 0;
  color: #FE0C03;
  line-height: 1.3em;
  text-transform: none;
	text-decoration: underline;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  font-family: 'Bloody Mary', cursive;
  color: #FE0C03;
  font-size: 32px; /* adjust size for balance under H1 */
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-list li {
  margin-bottom: 8px;
}

.hero-list li::before {
  content: "✓";
  color: #FE0C03; /* same Halloween red */
  font-weight: bold;
  margin-right: 8px;
}


.hero-banner .vid-link {
  margin-top: 40px;
  width: 100px;
  height: 100px;
  position: relative;
  cursor: pointer;
  z-index: 2;
}

.hero-banner .play-icon {
  font-size: 30px;
}

.hero-banner .vid-link .play-icon {
  background-color: #ffad1f; /* Halloween blood red */
  color: #fff; /* keep the triangle white for contrast */
}

.hero-banner .vid-link .ripple,
.hero-banner .vid-link .ripple::before,
.hero-banner .vid-link .ripple::after {
  animation: ripple 5s ease-out 1 forwards; /* plays once for 3s, then stops */
}


@media (max-width: 767px) {
  .hero-banner .vid-link {
    margin: 20px auto 0;   /* top margin then auto left/right */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}




.left-top-line {
  position: absolute;
  width: 342px;
  height: 498px;
  background-image: url("../images/website-design/hero/left-curve-line.png");
  background-image: image-set(
    url("../images/website-design/hero/left-curve-line.webp") type("image/webp"),
    url("../images/website-design/hero/left-curve-line.png") type("image/png")
  );
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  z-index: 10;
  animation: dropInFromTopLeft 1s ease 0.2s forwards;
}

.hero-banner .right-bottom-curve {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 650px;
  height: 450px;
  background-image: url("../images/website-design/hero/right-curved-bg.png");
  background-image: image-set(
    url("../images/website-design/hero/right-curved-bg.webp") type("image/webp"),
    url("../images/website-design/hero/right-curved-bg.png") type("image/png")
  );
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  animation: slideInFromRight 1s ease 0.5s forwards;
}

.hero-banner .right-top-curve {
  position: absolute;
  right: 0;
  top: 0;
  width: 164px;
  height: 100%;
  background-image: url("../images/website-design/hero/right-white-curve.png");
  background-image: image-set(
    url("../images/website-design/hero/right-white-curve.webp") type("image/webp"),
    url("../images/website-design/hero/right-white-curve.png") type("image/png")
  );
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  animation: slideInFromRight 1s ease 0.7s forwards;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-banner h1 {
    font-size: 80px;
    line-height: 1em;
  }

  /* FIX: left-top-line is outside hero-banner */
  .left-top-line,
  .hero-banner .right-top-curve {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hero-banner .content-box .content {
    text-align: center;
    padding: 20px 0;
  }
  .hero-banner h1 {
    font-size: 40px;
  }

  /* FIX: left-top-line is outside hero-banner */
  .left-top-line,
  .hero-banner .right-bottom-curve,
  .hero-banner .right-top-curve {
    display: none !important;
  }
	
	.hero-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  font-family: 'Bloody Mary', cursive;
  color: #FE0C03;
  font-size: 22px; /* adjust size for balance under H1 */
  line-height: 1.2;
  text-transform: uppercase;
}
}


/* 3 COLUMN HALLOWEEN POSTERS */


.three-column-section {
  padding: 60px 20px;
  background: #111; /* optional dark bg for Halloween feel */
  color: #fff;
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.column-item {
  text-align: center;
}

.column-item picture {
  display: block;
}

.column-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.column-item h3 {
  margin-top: 15px;
  font-size: 1.4rem;
  font-family: 'Bloody Mary', cursive;
  color: #FE0C03; /* Halloween red */
  text-transform: uppercase;
}

/* Responsive stacking */
@media (max-width: 991px) {
  .three-column-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .three-column-grid {
    grid-template-columns: 1fr;
  }
}





/* === WEBSITE DESIGN SERVICES GRID === */

.webdesign-services {
  background-color: #212529;
  background-image: url("../images/background/web-design-pattern.webp");
  background-image: image-set(
    url("../images/background/web-design-pattern.webp") type("image/webp"),
    url("../images/background/web-design-pattern.jpg") type("image/jpeg")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 80px 20px;
}

.webdesign-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.top-services {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.bottom-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.intro-block {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.1s, transform 0.8s ease-out 0.1s;
}

.section-title.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-title .dot {
  color: #ffb400;
}

.section-intro {
  font-size: 1rem;
  color: #ccc;
  max-width: 500px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.section-intro.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* === SERVICE ITEM === */

.service-item {
  background: #1a1a1a;
  padding: 40px 20px;
  min-height: 240px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.service-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.service-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a6a6a6;
  margin-bottom: 15px;
}

.service-item .icon {
  margin-bottom: 20px;
}

.service-item img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(80%) sepia(60%) saturate(450%) hue-rotate(350deg) brightness(101%) contrast(98%);
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.service-item h3 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-item h3 a:hover {
  color: #ffb400;
}

/* === STAGGERED ANIMATION DELAYS === */

.service-item:nth-child(1) { transition-delay: 0.1s; }
.service-item:nth-child(2) { transition-delay: 0.2s; }
.service-item:nth-child(3) { transition-delay: 0.3s; }
.service-item:nth-child(4) { transition-delay: 0.4s; }
.service-item:nth-child(5) { transition-delay: 0.5s; }
.service-item:nth-child(6) { transition-delay: 0.6s; }

/* === ACCESSIBILITY === */

@media (prefers-reduced-motion: reduce) {
  .section-title,
  .section-intro,
  .service-item {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === RESPONSIVE === */

@media (max-width: 991px) {
  .services-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-block {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }
  .top-services {
    grid-column: span 2;
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .services-top,
  .top-services,
  .bottom-services {
    grid-template-columns: 1fr;
  }
  .intro-block {
    grid-column: 1;
  }
}


/* === 2 COLUMN INFO HYBRID SECTION === */
.hybrid-section .image-column {
  width: 50%;
  max-width: 50%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.hybrid-section .text-column {
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
}

.auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hybrid-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.two-column-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.image-column {
  width: 50%;
  max-width: 50%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
}

.top-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  margin-left: auto;
  opacity: 0;
}

.top-image::before {
  content: '';
  position: absolute;
  left: -90px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #f6a000;
  border-radius: 3px;
}

.top-image picture,
.bottom-image picture {
  display: block;
}

.top-image img,
.bottom-image img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.bottom-image {
  position: absolute;
  z-index: 2;
  left: -30px;
  bottom: -50px;
  width: 500px;   /* fixed width */
  height: 500px;  /* fixed height */
  opacity: 0;
}

.bottom-image img {
  width: 100%;    /* fills the 500px container */
  height: auto;   /* keeps aspect ratio */
  max-width: 400px;
  max-height: 400px;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-80px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-image.animate-in {
  animation: slideInLeft 1s ease forwards;
}

.bottom-image.animate-in {
  animation: slideInUp 1s ease 0.8s forwards;
}

/* Text Column */
.text-column {
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
}

.text-column h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.text-column .highlight {
  font-weight: 600;
  color: #f6a000;
  margin-bottom: 30px;
  display: block;
  text-transform: uppercase;
}

.text-column p {
  margin-bottom: 20px;
  color: #333;
  line-height: 2.2;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  margin-top: 50px;
}

.benefits-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.benefits-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #f6a000;
  font-weight: bold;
}

.theme-btn.btn-style-one {
  display: inline-block;
  background: #f6a000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
  text-decoration: none;
}

.theme-btn.btn-style-one:hover {
  background: #e18f00;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .two-column-layout {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .image-column,
  .text-column {
    width: 100%;
    max-width: 100%;
  }

  .bottom-image {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
    z-index: 1;
    opacity: 1;
    animation: none !important;
  }

  .top-image {
    opacity: 1;
    animation: none !important;
  }
}

/* START VIDEO SECTION */


/* === VIDEO SECTION === */
.video-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  position: relative;
}

.video-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Teko', sans-serif;
  margin-bottom: 40px;
}

.video-title .dot {
  color: #f5a700;
}

.video-box {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.video-bg {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.overlay-circle {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #f5a700;
  border-radius: 50%;
  width: 340px;
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}

.overlay-circle h3 {
  font-size: 28px;
  font-family: 'Teko', sans-serif;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.2;
}

.overlay-circle h3 span {
  font-size: 24px;
}

.overlay-circle .video-link {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 2px solid #000;
  padding-bottom: 3px;
  text-decoration: none;
}

/* Play Icon + Ripple */
.vid-link {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: block;
  cursor: pointer;
  z-index: 2;
}

.vid-link .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  font-size: 30px;
  color: #fff;
  background-color: #111; /* dark grey background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}


.vid-link .ripple,
.vid-link .ripple:after,
.vid-link .ripple:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: ripple 3s infinite;
}

.vid-link .ripple:before {
  animation-delay: 1s;
  content: "";
}

.vid-link .ripple:after {
  animation-delay: 2s;
  content: "";
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.6);
  }
  100% {
    box-shadow: 0 0 0 40px rgba(255,255,255,0);
  }
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: #111;
  margin: 10% auto;
  padding: 0;
  border-radius: 10px;
  max-width: 720px;
  position: relative;
}

.modal-content iframe {
  display: block;
  border-radius: 10px 10px 0 0;
}

.close {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

/* === MOBILE === */
/* === MOBILE === */
@media (max-width: 768px) {
  .video-box {
    background: #f5a700;
    border-radius: 12px;
    padding: 40px 20px;
    position: relative;
  }

  .video-bg {
    display: none;
  }

  .overlay-circle {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    background: none;
    padding: 0;
    text-align: center;
    border-radius: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vid-link {
    position: relative;
    /* FIX: Reset inherited position properties */
    top: auto;
    left: auto;
    /* End Fix */
    width: 90px;
    height: 90px;
    margin-bottom: 30px;
    z-index: 2;
  }

  .vid-link .ripple,
  .vid-link .ripple::before,
  .vid-link .ripple::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: ripple 2.5s infinite;
    z-index: 1;
    content: "";
  }

  .vid-link .play-icon {
    width: 90px;
    height: 90px;
    font-size: 28px;
    color: #fff;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .overlay-circle h3 {
    font-size: 20px;
    color: #111;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
  }

  .overlay-circle h3 span {
    display: block;
    font-size: 18px;
  }

  .overlay-circle .video-link {
    color: #fff;
    border-bottom: 2px solid #000;
    padding-bottom: 3px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}


 

/* === WEBSITE OPTIONS SECTION === */

.website-options {
  background: #fff url("images/background/creative-district-pattern.webp") repeat;
  background-image: image-set(
    url("../images/background/creative-district-pattern.webp") type("image/webp"),
    url("../images/background/creative-district-pattern.png") type("image/png")
  );
  padding: 80px 20px;
}

.auto-container {
  max-width: 1200px;
  margin: 0 auto;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.content-column {
  flex: 1;
  min-width: 300px;
}

.accordion-column {
  flex: 1;
  min-width: 300px;
}

.content-column h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.content-column .dot {
  color: #f5a700;
}

.content-column .text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.content-column .image img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
}

/* === Accordion === */

.accordion details {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.accordion summary {
  font-family: 'Teko', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 24px;
  background-color: #fdfdfd;
  cursor: pointer;
  user-select: none;
  list-style: none;
  position: relative;
}

.accordion summary::marker {
  display: none;
}

.accordion summary span {
  color: #f5a700;
  margin-right: 6px;
}

.accordion summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #f5a700;
  transition: transform 0.2s ease;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion-content {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: #fafafa;
}




/* === WEB DESIGN PORTFOLIO SECTION === */

.webdesign-portfolio {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.webdesign-portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.webdesign-portfolio .sec-title h2 {
  font-size: 58px;
  margin-bottom: 50px;
  line-height: 1.2;
}

.webdesign-portfolio .portfolio-item {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.webdesign-portfolio .portfolio-item:hover {
  transform: translateY(-5px);
}

.webdesign-portfolio .portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.webdesign-portfolio .portfolio-item h3 {
  font-size: 18px;
  margin: 20px 0 10px;
  padding: 0 10px;
}

.webdesign-portfolio .portfolio-link {
  margin-bottom: 20px;
}

.webdesign-portfolio .portfolio-link .btn-style-one {
  padding: 10px 25px;
  display: inline-block;
  font-weight: 500;
}

/* === RESPONSIVE === */

@media (max-width: 1024px) {
  .webdesign-portfolio .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .webdesign-portfolio .portfolio-grid {
    grid-template-columns: 1fr;
  }
}


/* === REVIEW SECTION === */   

.reviews-section.desktop-only {
  background-color: #0f0f0f;
  background-image: image-set(
    url("../images/background/web-design-testimonials.webp") type("image/webp"),
    url("../images/background/web-design-testimonials.jpg") type("image/jpeg")
  );
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 20px 420px; /* top, sides, bottom */
  color: #fff;
}

.reviews-section .sec-title h2 {
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}

.review-stars {
  font-size: 1.2em;
  color: #ffcc00;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.1em;
}

.review-date {
  font-size: 0.9em;
  color: #ccc;
}

.google-icon {
  width: 20px;
  height: auto;
}




/* MOBILE ACCORDION - GOOGLE REVIEWS ONLY */
@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .mobile-only .sec-title h2 {
    color: #111;
  }

  .mobile-only .accordion details {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 14px;
    background: #fff;
    color: #333;
  }

  .mobile-only .accordion summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
  }

  .mobile-only .accordion summary::marker {
    display: none;
  }

  .mobile-only .accordion summary::after {
    content: "▶";
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #DAA520; /* gold */
  }

  .mobile-only .accordion details[open] summary::after {
    transform: rotate(90deg);
    content: "▼";
  }

  .mobile-only .accordion p {
    margin-top: 10px;
    line-height: 1.5;
    color: #444;
  }

  .mobile-only .accordion .google-icon {
    width: 18px;
    height: auto;
    flex-shrink: 0;
  }

  .mobile-only .accordion summary span.stars {
    color: #DAA520; /* gold stars */
    margin-left: 4px;
  }
}


/* DEFAULT: hide mobile-only content on desktop */
.mobile-only {
  display: none;
}

/* Show only on screens 767px and smaller */
@media (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}








.hybrid-section .two-column-layout {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hybrid-section .image-column {
  width: 50%;
  max-width: 50%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 100px;
}

.hybrid-section .text-column {
  width: 50%;
  max-width: 50%;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .hybrid-section .two-column-layout {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .hybrid-section .image-column,
  .hybrid-section .text-column {
    width: 100%;
    max-width: 100%;
  }
}







.website-benefits {
  background: none;
  position: relative;
  margin-top: -428px;
  padding: 160px 20px 80px;
  z-index: 2;
}

@media (max-width: 767px) {
  .website-benefits {
    margin-top: 0;
    padding-top: 80px; /* reduce top spacing on mobile */
  }
}

.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.left-box {
  width: 100%;
  max-width: 520px;
  background: none;
  padding: 0;
  border-radius: 0;
}

.right-box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 50px 50px 50px 30px;
  border-radius: 5px;
}

.yellow-box {
  position: relative;
  background: #ffad1f;
  color: #111;
  padding: 50px;
  border-radius: 6px 6px 0 0;
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 0;
  overflow: visible;
}

.yellow-box::after {
  content: '';
  position: absolute;
  bottom: 40;
  left: 0;
  width: 80px;
  height: 80px;
  background: #ffad1f;
  border-bottom-right-radius: 100%;
  z-index: 2;
}

.yellow-box h3 {
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin: 0 auto;
  max-width: 400px;
}

.feature-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 0 0 5px 5px;
}

.feature-wrapper hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.number-circle {
  background: #ffedcc;
  color: #ff9900;
  font-weight: 700;
  font-size: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h4 {
  font-size: 1.1rem;
  margin: 0 0 4px;
  font-weight: 700;
}

.feature-content p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.right-box h3 {
  font-family: 'Teko', sans-serif;
  font-weight: 400;
  font-size: 3.4rem;
  text-transform: uppercase;
  margin-top: 60px;
  margin-bottom: 80px;
  line-height: 3.1rem;
  letter-spacing: 0.2rem;
}

@media (max-width: 767px) {
  .right-box h3 {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.right-box .dot {
  color: #ffad1f;
}

.right-box p {
  margin-bottom: 20px;
  color: #333;
  font-size: 1.2rem;
}

.image-and-list {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.image-and-list img {
  max-width: 260px;
  border-radius: 6px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  color: #333;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffad1f;
  font-weight: bold;
}





.business-website {
  background: #1d1e20; /* dark background */
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.business-website .auto-container {
  max-width: 900px;
  margin: 0 auto;
}

.business-website .icon-wrapper {
  margin-bottom: 30px;
}

.business-website .icon-wrapper img {
  width: 80px;
  height: auto;
}

.business-website .headline {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
}

.business-website .headline .highlight {
  color: #ffad1f;
}


.business-website .icon-wrapper {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.business-website .circle-behind {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #3a3a3a; /* grey */
  border-radius: 50%;
  top: -10px;
  left: calc(50% - 50px - 10px); /* center and offset */
  z-index: 1;
}

.business-website .icon-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #ffad1f; /* yellow */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.business-website .icon-circle img {
  width: 50%;
  height: auto;
}


/* === Contact Section === */
.contact-section {
  padding: 100px 20px;
  background: #fff;
  font-family: 'Rubik', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 60px;
  align-items: start;
}

/* === Left Column === */
.contact-left .sec-title h2 {
  font-family: 'Teko', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-left .dot {
  color: #ffad1f;
}

.contact-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.social-icons a {
  display: inline-block;
  font-size: 20px;
  color: #111;
  margin-right: 20px;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: #ffad1f;
}

/* === Form Layout === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  font-size: 16px;
  padding: 18px 20px;
  border: none;
  background-color: #f6f7fa;
  color: #111;
  border-radius: 6px;
  resize: none;
}

.contact-form textarea {
  min-height: 200px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffad1f66;
}

/* === Button (Yellow w/ Diagonal Overlay) === */
.btn-yellow {
  position: relative;
  display: inline-block;
  background: #ffad1f;
  color: #111;
  font-family: 'Teko', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  overflow: hidden;
  border: none;
  transition: background 0.3s ease;
  cursor: pointer;
  width: 40%;
  min-width: 200px;
}

.btn-yellow .btn-title {
  position: relative;
  z-index: 2;
}

.btn-yellow .btn-overlay {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: #d0891a;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  z-index: 1;
}

/* === Responsive === */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .btn-yellow {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}




/* Put inputs on one row */
.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Hide labels visually but keep for screen readers */
.contact-form .form-row > label,
.contact-form > label {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 1px 1px);
  white-space: nowrap; border: 0;
}

/* Make the two inputs share the row evenly */
.contact-form .form-row input[type="text"],
.contact-form .form-row input[type="email"] {
  flex: 1 1 0;
  min-width: 260px;   /* allows wrap on smaller widths */
  width: 100%;
}

/* Inputs & textarea styling (unchanged from your theme) */
.contact-form input,
.contact-form textarea {
  font-size: 16px;
  padding: 18px 20px;
  border: none;
  background-color: #f6f7fa;
  color: #111;
  border-radius: 6px;
  resize: none;
}

/* Make textarea full width below the row */
.contact-form textarea {
  min-height: 200px;
  width: 100%;
}

/* Focus ring */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffad1f66;
}

/* Button sizing like your before shot */
.btn-yellow {
  width: auto;
  min-width: 200px;
}
@media (max-width: 991px) {
  .contact-form .form-row { flex-direction: column; }
  .btn-yellow {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}




/* === FOOTER === */

.main-footer {
  background-color: #111;
  background-image: image-set(
    url("../images/background/footer-bg.webp") type("image/webp"),
    url("../images/background/footer-bg.png") type("image/png")
  );
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  padding: 80px 20px 40px;
}

.widgets-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-widget h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-widget .text {
  margin: 20px 0;
  color: #ccc;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 10px;
}

.footer-widget ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #ffad1f;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  color: #ffad1f;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.contact-info .icon {
  margin-right: 10px;
  color: #ffad1f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .widgets-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}


/* === PAGES  === */




/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
  display: none; /* hidden until triggered */
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  display: inline;
}

.cookie-banner a {
  color: #ffad1f;
  text-decoration: underline;
}

.cookie-banner button {
  margin-left: 15px;
  background: #ffad1f;
  color: #000;
  border: none;
  padding: 6px 12px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}



