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

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: #0b0b0b;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.menu-open { overflow: hidden; }



/* =========================
   HEADER / NAV
   ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: var(--nav-bg, linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0)));
  transition: background 0.15s linear;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 40px;
  max-width: 100vw;
  overflow: visible;
}

/* Left links */
.nav-left {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-left a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-left a:hover { opacity: 1; }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 8px 0 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.15s linear, transform 0.15s linear;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  background: transparent;
}

.nav-dropdown-menu a:hover {
  opacity: 1;
  background: transparent;
}

/* Center logo */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(2.5);
  max-width: 120px;
  overflow: hidden;
}

.nav-logo img {
  height: 28px;
  display: block;
}

@media (max-width: 900px) {
  .nav {
    padding: 14px 18px;
  }
  .nav-logo {
    transform: translateX(-50%) scale(1.8);
    max-width: 100px;
  }
}

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  z-index: 1101;
}

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-left { display: none; }
  .burger { display: flex; }
  .nav { padding: 14px 18px; }
  .nav-logo img { height: 24px; }
}

/* =========================
   MOBILE MENU
   ========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-panel {
  width: min(520px, 92vw);
  margin: 80px auto 0;
  padding: 32px 22px;
  text-align: center;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 260ms ease, opacity 260ms ease;
}

.mobile-menu.is-open .mobile-menu-panel {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.mobile-menu-brand {
  font-weight: 700;
  letter-spacing: 0.28em;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

.mobile-menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

.mobile-menu-link:hover { opacity: 1; }

.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
  cursor: pointer;
  padding: 0;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
}

.mobile-dropdown-toggle:hover { opacity: 1; }

.mobile-dropdown-icon {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
  position: absolute;
  right: 28px;
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin-top: -18px;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.mobile-dropdown.is-open {
  max-height: 200px;
  opacity: 1;
  pointer-events: auto;
  margin-top: 0;
}

.mobile-dropdown-toggle.is-open .mobile-dropdown-icon {
  transform: rotate(180deg);
}

/* =========================
    HOME PAGE CONTENT
   ========================= */

/* =========================
   HERO
   ========================= */
.hero {
  height: 90vh;
  position: relative;
  background-size: cover;
  background-position: center;
  animation: heroSlideshow 20s infinite;
}

@keyframes heroSlideshow {
  0%, 33% {
    background-image: url("/assets/img/projects/");
    opacity: 1;
  }
  33.5%, 66% {
    background-image: url("/assets/img/category/grad.JPG");
    opacity: 1;
  }
  66.5%, 100% {
    background-image: url("/assets/img/odetta.jpeg");
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--text-soft);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 16px 0 28px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero-btn:hover { opacity: 1; }

@media (max-width: 768px) {
  .hero-content {
    bottom: 40px;
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* =========================
   MARQUEE
   ========================= */
.marquee {
  background: #000;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.marquee__track {
  white-space: nowrap;
  overflow-x: hidden;
}

.marquee__text {
  display: inline-block;
  padding: 16px 0;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 18px;
  animation: marquee-scroll 18s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   CATEGORIES
   ========================= */
.categories{ padding-top: 0; }

.category-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.category-tile{
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-tile.timetable{ background-image: url("/assets/img/category/services.jpg"); }
.category-tile.gallery{ background-image: url("/assets/img/category/grad.JPG"); }
.category-tile.coaches{ background-image: url("/assets/img/category/me.jpg"); }

.category-tile::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background 220ms ease;
}

.category-tile span{
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.75),
    0 0 20px rgba(0,0,0,0.5);
}

.category-tile:hover::after{ background: rgba(0,0,0,0.2); }


@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-tile {
    height: 70vh; /* keeps them big like Alliance */
  }

  .category-tile span {
    font-size: 22px; /* slightly smaller for phones */
    letter-spacing: 0.1em;
  }
}

/* =========================
   HOW WE WORK SECTION
   ========================= */
.how-we-work {
  padding: 6rem 2rem;
  text-align: center;
}

.how-we-work-line {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.featured-project {
  padding: 6rem 2rem;
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.featured-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.featured-content h2 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}

.featured-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.featured-content p {
  max-width: 480px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}

.featured-link {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
}

.featured-link:hover {
  border-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .featured-inner {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CALL TO ACTION SECTION
   ========================= */
.home-cta {
  padding: 6rem 2rem;
}

.home-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.home-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.home-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}

.home-cta-link {
  display: inline-block;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
}

.home-cta-link:hover {
  border-color: #fff;
}


/* =========================
   SERVICES PAGE CONTENT
   ========================= */

/* =========================
   SERVICES – VISUAL SECTIONS
   ========================= */



@media (max-width: 768px) {
  .services-hero {
    padding: 0 20px 40px;
  }
}

.services-hero-content {
  max-width: 600px;
}

.services-eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.services-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-top: 14px;
  line-height: 1.05;
}
/* =========================
   SECTION 1 – SERVICES GRID
   ========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: #000;
}

.service-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* Alliance-style tall tiles */
  background-size: cover;
  background-position: center;
}

.service-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.30);
  transition: background 0.4s ease;
}

.service-overlay h3 {
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  z-index: 2;
  font-weight: bolder;
  text-shadow: #0b0b0b 1px 1px 4px;
  size-adjust: 100%;
  font-size:  2rem;
}

.service-overlay p {
  color: #ffffff;
  opacity: 0;
  max-width: 320px;
  margin-top: 1rem;
  line-height: 1.5;
  transition: opacity 0.4s ease;
}

/* =========================
   SERVICE DETAILS COPY
   ========================= */

.services-details {
  background: #070707;
  color: #ffffff;
  padding: 120px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-details-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-details h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.services-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.services-details-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.services-details-grid p {
  color: #cfcfcf;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .services-details {
    padding: 80px 6vw;
  }

  .services-details-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Desktop hover */
@media (hover: hover) {
  .service-tile:hover .service-overlay {
    background: rgba(0, 0, 0, 0.65);
  }

  .service-tile:hover .service-overlay p {
    opacity: 1;
  }
}

/* Mobile behaviour */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-overlay {
    justify-content: flex-end;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0)
    );
  }

  .service-overlay p {
    opacity: 1;
    margin-top: 0.75rem;
  }
}

/* =========================
   SECTION 4 – PROCESS
   ========================= */

.process {
  background: #000;
  color: #fff;
  padding: 120px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process h2 {
  font-size: 2.2rem;
  margin-bottom: 80px;
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.process-step span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .process {
    padding: 80px 6vw;
  }
}

/* =========================
   PROJECTS PAGE CONTENT
   ========================= */

   /* =========================
  MAIN HERO
   ========================= */

.work-hero{
  padding: 120px 6vw 80px;
  max-width: 100%;
  background: radial-gradient(1000px 600px at 20% 10%, rgb(22, 22, 22), transparent 60%),
              radial-gradient(900px 600px at 80% 90%, rgb(19, 18, 18), transparent 60%),
              #1c1c1c7e;
  color: #ffffff;
}

.breadcrumb{
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.breadcrumb ol{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb li{
  color: #9a9a9a;
}

.breadcrumb a{
  color: #cfcfcf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus{
  color: #ffffff;
}

.breadcrumb li::after{
  content: "/";
  margin-left: 8px;
  color: #666666;
}

.breadcrumb li:last-child::after{
  content: "";
}

.breadcrumb [aria-current="page"]{
  color: #ffffff;
  font-weight: 600;
}

.work-hero h1{
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 12px;
}

.work-hero p{
  max-width: 520px;
  color: #ffffff;
  font-size: 16px;
}

/* Gallery */
.work-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px;
  padding: 0 6vw 120px;
}

.work-item img{
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4; /* portrait */
  object-fit: cover;
  display: block;
}

.work-text{
  margin-top: 24px;
}

.work-text h2{
  font-size: 28px;
  margin-bottom: 12px;
}

.work-text p{
  max-width: 520px;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 16px;
}

.work-text span{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d7d7d;
}

@media (max-width: 900px){
  .work-grid{
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .work-text h2{
    font-size: 24px;
  }
}

/* =========================
   ABOUT PAGE CONTENT
   ========================= */

/* ABOUT SCROLL CONTAINER */
.about-scroll {
  position: relative;
  height: 300vh; /* 1 viewport per panel */
  background: #000;
}

/* INDIVIDUAL PANELS */
.about-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* ACTIVE PANEL */
.about-panel.active {
  opacity: 1;
  pointer-events: auto;
}

/* CONTENT WRAP */
.about-content {
  flex: 0 0 auto;
  max-width: 400px;
  text-align: left;
}

.about-image {
  flex: 0 0 auto;
  width: 400px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: 625px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* TYPOGRAPHY */
.about-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .about-panel {
    flex-direction: column;
    padding-top: 80px;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .about-content {
    flex: none;
    max-width: none;
    width: 100%;
    text-align: left;
    padding: 0 6vw;
  }

  .about-image {
    flex: none;
    width: 100%;
    padding: 0 6vw;
  }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: 100;
}

.scroll-indicator span {
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  animation: scrollPulse 1.8s infinite;
}

.scroll-indicator small {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}

@keyframes scrollPulse {
  0% { transform: rotate(45deg) translate(0,0); opacity: 0.3; }
  50% { transform: rotate(45deg) translate(4px,4px); opacity: 1; }
  100% { transform: rotate(45deg) translate(0,0); opacity: 0.3; }
}

/* ABOUT PROCESS SECTION */
.about-process-section {
  padding: 120px 6vw;
  background: #000;
  opacity: 0;
  animation: fadeInOnScroll 0.8s ease 0.3s forwards;
}

.about-process-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-process-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 80px;
  text-align: center;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.about-process-grid .process-step span {
  display: block;
  font-size: 48px;
  font-weight: 800;
  opacity: 0.3;
  margin-bottom: 20px;
}

.about-process-grid .process-step h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.about-process-grid .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .about-process-section {
    padding: 80px 6vw;
  }
  
  .about-process-content h2 {
    margin-bottom: 60px;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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



/* =========================
   CONTACT PAGE CONTENT
   ========================= */

.contact-section {
  padding: 140px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro h2 {
  font-size: 64px;
  margin-bottom: 16px;
}

.contact-intro p {
  max-width: 420px;
  color: #aaa;
  font-size: 16px;
}

.contact-form {
  max-width: 420px;
}

.form-field {
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  padding: 10px 4px;
  color: #fff;
  font-size: 15px;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #fff;
}

.contact-submit {
  margin-top: 32px;
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  cursor: pointer;
}

.contact-submit:hover {
  background: #fff;
  color: #000;
}

.hidden {
  display: none;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 100px 24px;
  }

  .contact-intro h2 {
    font-size: 44px;
  }
}

/* =========================
   Indivdual Services PAGE CONTENT
   ========================= */

.service-detail {
  background: #000;
  color: #fff;
  padding: 120px 0;
}

.service-detail-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 6vw;
}

.service-detail-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 20px;
}

.service-detail-intro {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
}

.service-detail-block {
  margin-top: 64px;
}

.service-detail-block h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-detail-block p {
  max-width: 720px;
  line-height: 1.6;
  opacity: 0.85;
}

.service-detail-block ul {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.service-detail-block li {
  margin-bottom: 8px;
  opacity: 0.9;
}

.service-detail-cta {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-detail-link {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  text-decoration: underline;
}

.service-detail .service-image {
  margin: 64px 0 80px;
  width: 100%;
}

.service-detail .service-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  filter: contrast(1.05);
}


/* =========================
   FOOTER - INFO PAGE
   ========================= */

   .info-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.info-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.info-hero p {
  max-width: 600px;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.info-content {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
}

.info-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-block p {
  max-width: 700px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}


   .info-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.info-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.info-hero p {
  max-width: 600px;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.info-content {
  margin-top: 5rem;
  display: grid;
  gap: 3rem;
}

.info-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.info-block p {
  max-width: 700px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* =========================
   FOOTER
   ========================= */

.site-footer{
  position: relative;
  padding: 72px 0 34px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  background:
black
}

.footer__wrap{ max-width: 1200px; margin: 0 auto; padding: 0 22px; }

.footer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}

.footer__brand{ text-decoration:none; color:#fff; }
.footer__logo{ font-weight: 800; letter-spacing: 0.2px; font-size: 18px; }

.footer__social{ display:flex; gap:10px; }
.icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color:#fff;
  text-decoration:none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.icon-btn:hover{ background: rgba(255,255,255,0.08); }

.footer__grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding: 18px 0 22px;
}

.footer__col{
  grid-column: span 3;
  padding: 16px 16px 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer__title{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.footer__links, .footer__meta{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer__links a{
  color: rgba(255,255,255,0.86);
  text-decoration:none;
  opacity: 0.9;
}
.footer__links a:hover{ opacity: 1; text-decoration: underline; }

.footer__meta li{
  color: rgba(255,255,255,0.78);
  opacity: 0.9;
  line-height: 1.35;
}

.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.footer__copy{
  margin:0;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}

.footer__toplink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color:#fff;
  text-decoration:none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.footer__toplink:hover{ background: rgba(255,255,255,0.08); }

/* Responsive */
@media (max-width: 980px){
  .footer__col{ grid-column: span 6; }
}
@media (max-width: 620px){
  .footer__top{ flex-direction:column; align-items:flex-start; }
  .footer__col{ grid-column: span 12; }
}

/* Mobile safety - prevent all overflow */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }
  
  * {
    max-width: 100%;
  }
}
