@font-face {
  font-family: 'Eurostile';
  src: url('../fonts/eurostyle-normal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Eurostile';
  src: url('../fonts/eurostyle-normal.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root{
  --bg: #0d1b2a;
  --bg-dark: #08131f;
  --panel: #13263a;
  --panel-2: #1a3149;
  --text: #ffffff;
  --muted: #c6d2dd;
  --line: rgba(255,255,255,0.12);
  --accent: #2f7fda;
  --accent-hover: #58a0ef;
  --shadow: 0 18px 40px rgba(0,0,0,0.28);
  --max: 1240px;
}

/* Base */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#fff;
  color:#111;
  font-family:"Eurostile","Eurostyle","Microgramma","Bank Gothic","Arial Narrow",Arial,sans-serif;
  padding-bottom:0px;
}
img{max-width:100%;display:block}
a{text-decoration:none}
.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}
.narrow{
  max-width:900px;
}
.section{
  padding:70px 0;
}

/* Top bar */
.topBar{
  background:#06101a;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.topBar .wrap{
  width:100%;
  max-width:none;
  padding:0 30px;
}

.topBarInner {
  display: flex;
  justify-content: flex-end;  /* keeps it on the right */
  align-items: center;
}
.topBarPhone{
  color:#d9e4ee;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.08em;
  transition:color .2s ease, opacity .2s ease;
  cursor:default;
}

.topBarPhone:hover{
  color:#2f7fda;
}
/* HEADER (WHITE - ARG STYLE) */
.siteHeader .wrap{
  width:100%;
  max-width:none;
  padding:0 50px; /* increase space from edges */
}

.headerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  min-height:110px; /* was ~90 */
}
.headerPhone{
  font-size:16px;
  font-weight:600;
 line-height:2.6;
  padding-left:22px;
}


/* Logo LEFT */
.logo img{
  height:80px;
  width:auto;
}

.headerRight{
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:auto; /* THIS pushes it all the way right */
}

/* NAV */
.mainNav ul{
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
  list-style:none;
}

.mainNav a{
  color:#0d1b2a;
  font-size:16px;
 line-height:2.0;
  text-transform:uppercase;
  letter-spacing:.08em;
  transition:.2s ease;
}

.mainNav a:hover{
  color:#2f7fda;
}

/* PHONE */
.headerPhone{
  font-size:16px;
  font-weight:600;
  color:#0d1b2a;
  text-transform:uppercase;
  letter-spacing:.08em;
  border-left:1px solid #d1d5db;
  padding-left:18px;
}

.headerPhone:hover{
  color:#2f7fda;
}/* Hero */
.hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  background:
    url("../images/hero-scrap-yard.jpg") center center / cover no-repeat,
    linear-gradient(180deg, #0d1b2a, #08131f);
  color:#fff;
}
.heroOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(6,16,26,0.88) 0%,
    rgba(6,16,26,0.72) 42%,
    rgba(6,16,26,0.42) 100%
  );
}
.heroContent{
  position:relative;
  z-index:1;
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.heroContent h1{
  margin:0 0 18px;
  font-size:clamp(2.6rem, 5vw, 4.8rem);
  line-height:1.05;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.heroContent h2{
  margin:0 0 20px;
  font-size:clamp(1.1rem, 2vw, 1.7rem);
  color:#d7e3ee;
  text-transform:uppercase;
  font-weight:400;
  letter-spacing:.06em;
}

.heroContent p{
  font-size:1.35rem;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.heroActions{
  display:flex;
  justify-content:center;
  gap:18px;
}
/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  border:1px solid transparent;
  transition:.25s ease;
}
.btnPrimary{
  background:var(--accent);
  color:#fff;
}
.btnPrimary:hover{
  background:var(--accent-hover);
}

/* Intro */
.intro{
  background:#fff;
  text-align:center;
}
.intro h3{
  margin:0 0 18px;
  font-size:clamp(1.5rem, 3vw, 2.5rem);
  text-transform:uppercase;
  color:#0d1b2a;
}
.intro p{
  margin:0 auto;
  font-family:Arial, Helvetica, sans-serif;
  font-size:1.04rem;
  line-height:1.75;
  color:#33485d;
}

/* Cards */
.cards{
  background:linear-gradient(180deg, #f4f7fa 0%, #ebf0f5 100%);
}
.cardGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:26px;
}
.infoCard{
  background:#fff;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.cardImage{
  height:250px;
  overflow:hidden;
}
.cardImage img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.infoCard:hover .cardImage img{
  transform:scale(1.06);
}
.cardBody{
  padding:26px 24px 28px;
}
.cardBody h3{
  margin:0 0 12px;
  font-size:1.45rem;
  text-transform:uppercase;
  color:#0d1b2a;
}
.cardBody p{
  margin:0 0 18px;
  font-family:Arial, Helvetica, sans-serif;
  color:#41576c;
  line-height:1.7;
}
.cardLink{
  color:var(--accent);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.cardLink:hover{
  color:#0d1b2a;
}

/* Associations */
.associations{
  background:#0c1723;
  color:#fff;
  text-align:center;
}
.associations h3{
  margin:0 0 28px;
  font-size:clamp(1.35rem, 2vw, 2rem);
  text-transform:uppercase;
  letter-spacing:.05em;
}
.associationGrid{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}
.associationBadge{
  min-width:180px;
  padding:16px 22px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(255,255,255,0.04);
  color:#fff;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* Footer */
.siteFooter{
  background:#ffffff;   /* was dark */
  color:#0d1b2a;
  padding:25px 0;      /* smaller = tighter */
  text-align:center;
  border-top:1px solid #e5e7eb; /* subtle top line */
}

.footerInner{
  display:flex;
  justify-content:center;
  align-items:center;
}

.footerCenter{
  text-align:center;
}





@media (max-width: 700px){
  .topBarInner{
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    padding:10px 0;
  }

  .hero{
    min-height:560px;
  }

  .hero h1{
    font-size:2rem;
  }

 @media (max-width: 700px){
  .stickyBarInner{
    padding:4px 0;   /* ⬅ thinner */
    gap:8px;
    min-height:32px;
  }
}
}

.pageHero{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:flex-end;
  color:#fff;
  background:linear-gradient(180deg, #102033, #09131d);
}

.pageHero--services{
  background:
    url("../images/services-hero.jpg") center center / cover no-repeat,
    linear-gradient(180deg, #102033, #09131d);
}

.pageHeroOverlay{
  position:absolute;
  inset:0;
  background:rgba(6,16,26,0.58);
}

.pageHeroContent{
  position:relative;
  z-index:1;
  padding-bottom:0px;
}

.pageHeroContent h1{
  margin:0;
  font-size:clamp(2.2rem, 5vw, 4rem);
  text-transform:uppercase;
  color:#fff;
}

.servicesIntro{
  background:#fff;
  text-align:left;
}

.servicesIntro h2{
  margin:0 0 18px;
  font-size:clamp(1.6rem, 3vw, 2.6rem);
  text-transform:uppercase;
  color:#0d1b2a;
}

.servicesIntro p{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  font-size:1.05rem;
  line-height:1.8;
  color:#41576c;
}

.servicesLeadImage{
  padding:0 0 28px;
  background:#fff;
}

.servicesLeadImage img{
  width:100%;
  height:auto;
  display:block;
  box-shadow:var(--shadow);
}

.servicesBlocks{
  background:#fff;
}

.serviceGrid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:34px;
}

.serviceFeature{
  background:#fff;
}

.serviceFeatureImage{
  margin-bottom:18px;
}

.serviceFeatureImage img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
  box-shadow:var(--shadow);
}

.serviceFeatureText h3{
  margin:0 0 14px;
  font-size:1.55rem;
  text-transform:uppercase;
  color:#0d1b2a;
}

.serviceFeatureText p{
  margin:0 0 18px;
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.8;
  color:#41576c;
}

.serviceFeatureLink{
  color:#2f7fda;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.serviceFeatureLink:hover{
  color:#0d1b2a;
}

.mainNav a.isActive{
  color:#2f7fda;
}

@media (max-width: 900px){
  .serviceGrid{
    grid-template-columns:1fr;
  }

  .serviceFeatureImage img{
    height:auto;
  }
}

.headerPhone,
.topBarPhone,
.stickyBar span:last-child{
  font-weight:600;
  letter-spacing:.08em;
}

.heroSlider{
  position:relative;
  min-height:640px;
  overflow:hidden;
}

.heroSlide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  opacity:0;
  visibility:hidden;
  transition:opacity .6s ease, visibility .6s ease;
}

.heroSlide.active{
  opacity:1;
  visibility:visible;
  z-index:1;
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(6,16,26,0.88) 0%,
    rgba(6,16,26,0.72) 45%,
    rgba(6,16,26,0.42) 100%
  );
}

.heroContent{
  position:relative;
  z-index:2;
  max-width:820px;
  color:#fff;
}

.heroContent h1{
  margin:0 0 14px;
  font-size:clamp(2.4rem, 5vw, 4.6rem);
  line-height:1.02;
  text-transform:uppercase;
  letter-spacing:.03em;
}

.heroContent h2{
  margin:0 0 18px;
  font-size:clamp(1.1rem, 2vw, 1.7rem);
  color:#d7e3ee;
  text-transform:uppercase;
  font-weight:400;
  letter-spacing:.06em;
}

.heroContent p{
  max-width:700px;
  margin:0 0 28px;
  color:#d7e3ee;
  font-size:1.02rem;
  line-height:1.7;
}

.heroArrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:48px;
  height:48px;
  border:none;
  background:rgba(255,255,255,0.14);
  color:#fff;
  font-size:28px;
  cursor:pointer;
  transition:background .25s ease;
}

.heroArrow:hover{
  background:rgba(47,127,218,0.85);
}

.heroArrowPrev{
  left:20px;
}

.heroArrowNext{
  right:20px;
}

.heroDots{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  gap:10px;
}

.heroDot{
  width:12px;
  height:12px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,0.45);
  cursor:pointer;
}

.heroDot.active{
  background:#fff;
}

@media (max-width: 700px){
  .heroSlider{
    min-height:560px;
  }

  .heroArrow{
    width:40px;
    height:40px;
    font-size:22px;
  }
}

.associationGrid--logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px; /* more space between logos */
  flex-wrap:wrap;
}

.associationLogo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:380px;
  height:160px;
}

.associationLogo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.associationLogo{
  transition:transform .2s ease, opacity .2s ease;
}

.associationLogo:hover{
  transform:scale(1.05);
  opacity:1;
}

.serviceHighlight{
  text-transform:uppercase;
  letter-spacing:.05em;
  font-weight:500;
}

.cardBody{
  text-align:center;
}


.cardBody h3{
  text-align:center;
  margin:10px 0 0;
  font-size:1.6rem;
  letter-spacing:.05em;
}

.stickyBarInner{
  min-height:32px;
  padding:4px 0;
  gap:12px;
}

.stickyBar span,
.stickyBar a{
  font-size:11px;
}

.stickyBarInner{
  flex-wrap:nowrap;
}

.stickyBar{
  height:32px !important;   /* ⬅ controls total height */
}

.stickyBarInner{
  min-height:32px !important;
  height:32px !important;
  padding:0 !important;
  gap:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.stickyBar span,
.stickyBar a{
  font-size:11px;
  line-height:1;
}

.stickyBarInner{
  flex-wrap:nowrap;
  overflow:hidden;
}

.affiliatesGrid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:40px;
  align-items:center;
  justify-items:center;
}

.affiliateCard{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  max-width:260px;
  height:120px;
  transition:transform .2s ease;
}

.affiliateCard img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.affiliateCard:hover{
  transform:scale(1.05);
}

@media (max-width: 900px){
  .affiliatesGrid{
    grid-template-columns:1fr;
    gap:30px;
  }

}

/* STACKED layout */
.affiliatesStack{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.affiliateRow{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:18px 0;
  border-top:1px solid #e5e7eb;
}

.affiliateRow:last-child{
  border-bottom:1px solid #e5e7eb;
}

.affiliateRow img{
  width:260px;
  height:80px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

/* THE FIX IS HERE 👇 */
.affiliatesStack{
  display:flex;
  flex-direction:column;
  align-items:center;   /* ⬅ centers horizontally */
  gap:30px;
}

.affiliateLogoBox{
  width:300px;   /* ⬅ smaller */
  height:90px;
}
.affiliateLogo{
  display:block;
  object-fit:contain;
  max-width:none;
  height:auto;
}

.affiliateRow img{
  width:260px;
  height:80px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

.logo.kk{
  width:550px;   /* ⬅ shrink it */
}

.affiliateRow{
  border:none !important;
}

.associations{
  width:100%;
  background:#0c1723;
  color:#fff;
  text-align:center;
  padding:40px 0;
}
.associations h3{
  margin:0 0 28px;
  font-size:clamp(1.35rem, 2vw, 2rem);
  text-transform:uppercase;
  letter-spacing:.05em;
  color:#fff;
}

.associationGrid--logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:80px;
  flex-wrap:wrap;
}

.associationLogo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:320px;
  height:140px;
  transition:transform .2s ease, opacity .2s ease;
}

.associationLogo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}

.associationLogo:hover{
  transform:scale(1.05);
  opacity:1;
}

.associations .wrap{
  max-width:1240px;   /* or your --max */
  margin:0 auto;
}

.associations{
  width:100% !important;
  max-width:none !important;
}

.associations{
  width:100%;
  background:#0c1723;
  color:#fff;
  text-align:center;
  padding:145px 0;
  margin:0;
}

.siteFooter{
  background:#ffffff;
  color:#0d1b2a;
  padding:10px 0;
  text-align:center;
  border-top:1px solid #e5e7eb;
}

.footerInner{
  width:100%;
  max-width:900px;
  margin:0 auto;
  display:block;
  padding:0 20px;
}

.footerCenter{
  margin:0;
  padding:0;
}

.siteFooter p{
  margin:0;
  padding:0;
  line-height:1.15;
  font-size:0.9rem;
  font-family:Arial, Helvetica, sans-serif;
  color:#4b5f73;
}

.siteFooter p + p{
  margin-top:3px;
}

.siteFooter br{
  line-height:1;
}

html, body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.siteFooter{
  margin-top:auto;
}

body{
  margin:0;
  background:#fff;
  color:#111;
  font-family:"Eurostile","Eurostyle","Microgramma","Bank Gothic","Arial Narrow",Arial,sans-serif;
  padding-bottom:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.associationItem{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.associationText{
  margin-top:12px;
  font-size:1.65rem;
  letter-spacing:.05em;
  color:#c6d2dd;   /* subtle lighter text on black */
  max-width:260px;
}

.associations.section {
  padding: 30px 0;
  margin-top: 40px;
}

.homePage .associations.section {
  margin-top: 0px;
}
.associations h3{
  margin:0 0 18px;
}

.associationLogo{
  height:110px;
}

.associationText{
  margin-top:6px;
}

.backBtn{
  display:inline-block;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#0d1b2a;
  border:1px solid transparent;
  padding:10px 18px;
  transition:.25s ease;
}

.backBtn:hover{
  color:#2f7fda;
}

.backBtnWrap{
  text-align:center;
  margin:20px 0 10px;
}

.backBtnWrap{
  margin:10px 0 0;   /* tight to the black bar */
}

.backBtn{
  display:inline-block;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#0d1b2a;
  border:1px solid #d1d5db;
  padding:8px 14px;
  transition:.25s ease;
}

.backBtn:hover{
  color:#2f7fda;
  border-color:#2f7fda;
}

.associations{
  margin-top:10px;
}

.backBtnWrap{
  margin-top:-30px;   /* ⬅ pulls it DOWN toward the black bar */
  margin-bottom:0;
  text-align:center;
}

.backBtn{
  display:inline-block;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#fff;                 /* white on black */
  border:1px solid rgba(255,255,255,0.3);
  padding:8px 14px;
  transition:.25s ease;
}

.backBtn:hover{
  color:#2f7fda;
  border-color:#2f7fda;
}

.associations.section{
  padding-top:30px !important;   /* ⬅ was 70px */
  padding-bottom:40px;           /* keep bottom comfortable */
}

.backBtnWrap{
  text-align:center;
  margin:6px 0 0;
}

.backBtn{
  display:inline-block;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#0d1b2a;
  border:1px solid #d1d5db;
  padding:8px 14px;
  transition:.25s ease;
}

.backBtn:hover{
  color:#2f7fda;
  border-color:#2f7fda;
}

/* tighten gap above black bar */
.associations.section{
  padding-top:00px;
}

.pageHero{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:flex-end;
  color:#fff;
  background:linear-gradient(180deg, #102033, #09131d);
}

.pageHeroOverlay{
  position:absolute;
  inset:0;
  background:rgba(6,16,26,0.58);
}

.pageHeroContent{
  position:relative;
  z-index:1;
  padding-bottom:0;
}

.pageHeroContent h1{
  margin:0;
  font-size:clamp(2.2rem, 5vw, 4rem);
  text-transform:uppercase;
  color:#fff;
}

.affiliatesTitle{
  text-align:center;
}

.pageHeroContent{
  text-align:center;
}
.servicesTiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* THIS is the fix */
  gap: 24px;
}
.serviceTile {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 50px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.serviceTile:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(46,95,167,0.5);
}

.serviceTileInner h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.serviceTileInner p {
  margin: 0;
  opacity: 0.8;
}

/* mobile */
@media (max-width: 768px) {
  .servicesTiles {
    grid-template-columns: 1fr;
  }

}

.servicesTiles {
  margin-top: 40px;
}

.servicesTiles .tile {
  height: 260px; /* slightly smaller than homepage */
}

.servicesTiles {
  margin: 40px auto 60px;
}

.servicesTiles .tile {
  min-height: 300px;
}

.servicesTiles {
  margin: 40px auto 60px;
}

.servicesTiles .tile {
  min-height: 320px;
}
.servicesTiles {
  margin: 40px auto 60px;
}

.servicesTiles .tile {
  min-height: 320px;
}

.servicesSection {
  padding: 50px 0 30px;
}

.servicesTiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.serviceTile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 30px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.serviceTile:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(255,255,255,0.12);
}

.serviceTileInner {
  text-align: center;
}

.serviceTileInner h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.serviceTileInner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .servicesTiles {
    grid-template-columns: 1fr;
  }
}

.serviceTile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Background image */
.serviceTileBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* Dark overlay so text is readable */
.serviceTileOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  transition: background 0.3s ease;
}

/* Text layer */
.serviceTileInner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

/* Hover effects */
.serviceTile:hover .serviceTileBg {
  transform: scale(1.08);
}

.serviceTile:hover .serviceTileOverlay {
  background: rgba(0,0,0,0.4);
}

.contentBox p {
  line-height: 1.7;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.contentBox h2 {
  margin-top: 30px;
  margin-bottom: 0px;
}

.contentBox p,
.section p,
.wrap p {
  line-height: 1.7;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}

p {
  line-height: 1.8 !important;
  margin-bottom: 18px !important;
}

.contentBox h1 {
  margin-top: 30px;
  margin-bottom: 0px;
}

.contactBox p {
  font-size: 1.10rem;
  line-height: 1.7;
}

.contactBox a {
  color: #2e5fa7;
  text-decoration: none;
}

.contactBox a:hover {
  text-decoration: underline;
}


.contactBox {
  text-align: center;
}

.contactBox {
  max-width: 600px;
  margin: 0 auto;
}

.contactBox {
  max-width: 650px;
  margin: 0 auto;
}

.contactBox p {
  font-size: 1.8rem;
  line-height: 1.8;
}

.contactBox strong {
  font-size: 1.5rem;
}

.contactBox p {
  font-size: 1.9rem;
  letter-spacing: 0.8px;
}

.tile {
  display: block;
  text-decoration: none;
  color: inherit;
}

.tile {
  display: block;
  position: relative;
  height: 300px; /* THIS is what you're missing */
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

'.tile {
  position: relative;
  display: block;
  min-height: 300px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.tile {
  position: relative;
  overflow: hidden;
}

.tile__link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
}

.tile__text {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */

  text-align: center;
  padding: 20px;
}

.tile__text h2 {
  margin-bottom: 10px;
}

.tile__text p {
  margin: 0;
}

.tile__text h2 {
  margin: 0 0 10px 0;
}

.tile__text p {
  margin: 0;
}

.tile {
  height: 100%;
}
.tile__bg,
.tile__shade {
  z-index: 1;
}

.tile {
  position: relative;
  overflow: hidden;
}

.tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tile__shade {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.tile__text {
  position: relative;
  z-index: 2;
}

.tileFillLink {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

.tile__text h2,
.tile__text p {
  position: relative;
  z-index: 2;
}

.tile {
  position: relative;
  overflow: hidden;
}

.tile__text {
  position: relative;
  z-index: 3;
}

.tileFillLink {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
}

.tile__text h2,
.tile__text p {
  position: relative;
  z-index: 6;
}

.tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tile {
  position: relative;
  min-height: 320px;
  height: 320px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .tiles__grid {
    grid-template-columns: 1fr;
  }
}

.contentBox {
  height: auto;
  min-height: auto;
  padding-bottom: 00px;
}

.contentBox p:last-child {
  margin-bottom: 0;
}


.associationGrid {
  align-items: start;
}

.tile__text {
  padding: 30px;
  max-width: 90%;
}

.tile__text p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 10px;
}

.tiles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 tiles side by side */
  gap: 24px;
}

.tiles__grid {
  grid-template-columns: repeat(3, 1fr);
}

.servicesPage .tiles__grid {
  grid-template-columns: repeat(2, 1fr);
}

.serviceTileInner p {
  font-size: 1.7rem;
  font-weight: 500;
}

.topBar .headerPhone {
  color: #2e5fa7;              /* your highlight blue */
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.topBar .headerPhone:hover {
  color: #c0c0c0;              /* silver */
  text-shadow: 0 0 6px rgba(192,192,192,0.6);
}

.topBar .headerPhone {
  color: #f2c200;        /* highlight yellow */
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.topBar {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.topBar .headerPhone {
  color: #ffffff;              /* white by default */
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.topBar .headerPhone:hover {
  color: #f2c200;              /* gold on hover */
}

.servicesSection .servicesTiles {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* =========================
   SIMKO Metal Tile Styling
   ========================= */

.servicesTiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tile {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Background image */
.serviceTileBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease;
  z-index: 1;
}

/* Dark readable overlay */
.serviceTileOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.30) 0%,
      rgba(0,0,0,0.48) 45%,
      rgba(0,0,0,0.68) 100%
    );
}

/* Brushed metal layer */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.02) 18%,
      rgba(255,255,255,0.00) 40%,
      rgba(255,255,255,0.06) 58%,
      rgba(255,255,255,0.00) 80%,
      rgba(255,255,255,0.04) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Metallic sweep on hover */
.tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  z-index: 4;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.10) 45%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.10) 55%,
    rgba(255,255,255,0.00) 100%
  );
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

/* Text block */
.serviceTileInner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 26px;
  color: #fff;
}

.serviceTileInner h2 {
  margin: 0 0 12px 0;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

.serviceTileInner p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Thin gold accent line */
.serviceTileInner h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);
  box-shadow: 0 0 8px rgba(242,194,0,0.30);
}

/* Hover */
.tile:hover {
  transform: translateY(-6px);
  border-color: rgba(242,194,0,0.45);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.45),
    0 0 18px rgba(242,194,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.tile:hover .serviceTileBg {
  transform: scale(1.06);
}

.tile:hover::after {
  left: 130%;
}

/* Optional blue-glow variation on hover instead of gold
.tile:hover {
  border-color: rgba(46,95,167,0.50);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.45),
    0 0 18px rgba(46,95,167,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
*/

/* Responsive */
@media (max-width: 980px) {
  .servicesTiles {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 300px;
  }

  .serviceTileInner h2 {
    font-size: 1.75rem;
  }

  .serviceTileInner p {
    font-size: 1.02rem;
  }
}

/* =========================
   SIMKO Metal Tile Styling
   ========================= */

.servicesTiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tile {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* Background image */
.serviceTileBg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.5s ease;
  z-index: 1;
}

/* Dark readable overlay */
.serviceTileOverlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.30) 0%,
      rgba(0,0,0,0.48) 45%,
      rgba(0,0,0,0.68) 100%
    );
}

/* Brushed metal layer */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08) 0%,
      rgba(255,255,255,0.02) 18%,
      rgba(255,255,255,0.00) 40%,
      rgba(255,255,255,0.06) 58%,
      rgba(255,255,255,0.00) 80%,
      rgba(255,255,255,0.04) 100%
    );
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Metallic sweep on hover */
.tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  z-index: 4;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.10) 45%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.10) 55%,
    rgba(255,255,255,0.00) 100%
  );
  transform: skewX(-18deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

/* Text block */
.serviceTileInner {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 26px;
  color: #fff;
}

.serviceTileInner h2 {
  margin: 0 0 12px 0;
  font-size: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}

.serviceTileInner p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

/* Thin gold accent line */
.serviceTileInner h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);
  box-shadow: 0 0 8px rgba(242,194,0,0.30);
}

/* Hover */
.tile:hover {
  transform: translateY(-6px);
  border-color: rgba(242,194,0,0.45);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.45),
    0 0 18px rgba(242,194,0,0.14),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.tile:hover .serviceTileBg {
  transform: scale(1.06);
}

.tile:hover::after {
  left: 130%;
}

/* Optional blue-glow variation on hover instead of gold
.tile:hover {
  border-color: rgba(46,95,167,0.50);
  box-shadow:
    0 14px 28px rgba(0,0,0,0.45),
    0 0 18px rgba(46,95,167,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
*/

/* Responsive */
@media (max-width: 980px) {
  .servicesTiles {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 300px;
  }

  .serviceTileInner h2 {
    font-size: 1.75rem;
  }

  .serviceTileInner p {
    font-size: 1.02rem;
  }
}

.serviceTileInner h2,
.serviceTileInner p {
  color: #ffffff;
}

.serviceTileOverlay {
  background: rgba(0, 0, 0, 0.65);  /* stronger overlay */
}


.serviceTileInner h2,
.serviceTileInner p {
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.serviceTileOverlay {
  background: rgba(0, 0, 0, 0.65);
}

.serviceTileInner h2,
.serviceTileInner p {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Default header */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Inner spacing */
.headerInner {
  transition: all 0.3s ease;
  padding: 18px 0;
}

/* Logo size */
.logo img {
  transition: all 0.3s ease;
  height: 60px;
}

/* SCROLLED STATE */
.siteHeader.scrolled {
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.siteHeader.scrolled .headerInner {
  padding: 10px 0;
}

.siteHeader.scrolled .logo img {
  height: 60px;
}

.siteHeader.scrolled .mainNav a {
  font-size: 0.95rem;
}

/* DEFAULT */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255,255,255,0);  /* fully transparent */
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* KEEP TEXT ALWAYS VISIBLE */
.siteHeader .mainNav a,
.siteHeader .headerPhone {
  color: #111;   /* always dark */
}

/* SCROLLED */
.siteHeader.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Base nav link */
.mainNav a {
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

/* Underline (hidden by default) */
.mainNav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00); /* gold */
  transition: width 0.3s ease;
}

/* Hover */
.mainNav a:hover::after {
  width: 100%;
}

.mainNav a.active {
  color: #f2c200;
}

.mainNav a.active::after {
  width: 100%;
  box-shadow: 0 0 6px rgba(242,194,0,0.5);
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* Visible state */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Slightly different speeds if you want variation */
.revealSlow {
  transition: opacity 1s ease, transform 1s ease;
}

.revealFast {
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.aboutTabs h1 {
  text-align: center;
  margin-bottom: 30px;
}

.aboutAccordion {
  display: grid;
  gap: 16px;
}

.aboutItem {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  overflow: hidden;
}

.aboutToggle {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  text-align: left;
  padding: 20px 24px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.aboutToggle::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #f2c200;
}

.aboutItem.active .aboutToggle::after {
  content: "–";
}

.aboutContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.aboutItem.active .aboutContent {
  max-height: 500px;
  padding: 0 24px 22px;
}

.aboutContent p {
  color: #fff;
  line-height: 1.75;
  font-size: 1.05rem;
  margin: 0 0 14px 0;
}

.associations {
  padding: 40px 20px;
}

.associationGrid {
  max-width: 1200px;
  margin: 0 auto;
}

.associations {
  padding: 40px 20px;
}

.associations h3 {
  text-align: center;
  margin-bottom: 30px;
}

.associationGrid {
  max-width: 1200px;
  margin: 0 auto;
}

.aboutToggle {
  font-size: 1.5rem;
  letter-spacing: 0.7px;
}

.aboutContent p {
  font-size: 1.2rem;
}

.aboutItem {
  position: relative;
  border-left: 3px solid #f2c200;
}

.affiliateCard {
  position: relative;
}

.affiliateCard .lightFollow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.affiliateCard:hover .lightFollow {
  opacity: 1;
}

.affiliateCard {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a, #101010);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.affiliateCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.02) 20%,
    rgba(255,255,255,0) 45%,
    rgba(255,255,255,0.05) 70%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
}

.affiliateCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0)
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.affiliateCard:hover {
  transform: translateY(-5px);
  border-color: rgba(242,194,0,0.35);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35), 0 0 14px rgba(242,194,0,0.12);
}

.affiliateCard:hover::after {
  left: 130%;
}

.affiliateCard h2::after {
  content: "";
  display: block;
  width: 55px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);
}

.affiliateCard::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255,255,255,0),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0)
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.affiliateCard:hover::after {
  left: 130%;
}


/* STACK */
.affiliatesStack {
  display: grid;
  gap: 20px;
}

/* ROW */
.affiliateRow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-decoration: none;
}

/* LOGO DEFAULT */
.affiliateRow img {
  max-height: 90px;
  width: auto;

  transition: all 0.3s ease;
}



/* ✨ SUBTLE HIGHLIGHT PASS (feels metallic) */
.affiliateRow img {
  position: relative;
}

/* GOLD LINE UNDER LOGO */
.affiliateRow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 2px;

  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);

  opacity: 0;
  transition: all 0.3s ease;
}

/* SHOW GOLD LINE */
.affiliateRow:hover::after {
  opacity: 1;
  width: 60%;
  left: 20%;
  box-shadow: 0 0 8px rgba(242,194,0,0.4);
}

/* OPTIONAL: slight lift */
.affiliateRow:hover {
  transform: translateY(-3px);
}

/* MAIN PAGE TITLES */
.section h1,
.pageHeroContent h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}
.section h1,
.pageHeroContent h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}

/* FULL-WIDTH GOLD LINE */
.section h1::after,
.pageHeroContent h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);
  box-shadow: 0 0 6px rgba(242,194,0,0.3);
}
.section h1:hover::after {
  width: 90px;
  transition: width 0.25s ease;
}

.tile__text h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* GOLD LINE */
.tile__text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);
  box-shadow: 0 0 6px rgba(242,194,0,0.3);
}


@media (max-width: 900px) {
  .headerInner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
  }

  .headerRight {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .mainNav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    padding: 0;
    margin: 0;
  }

  .logo img {
    max-height: 58px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .heroContent {
    text-align: center;
    padding: 60px 20px;
  }

  .heroContent h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .heroContent h2 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .heroContent p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .tiles__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tile {
    min-height: 260px;
    height: 260px;
  }

  .tile__text h2 {
    font-size: 1.6rem;
  }

  .tile__text p {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .servicesTiles {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .serviceTileInner {
    padding: 24px 20px;
  }

  .serviceTileInner h2 {
    font-size: 1.6rem;
  }

  .serviceTileInner p {
    font-size: 1.05rem;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .aboutToggle {
    font-size: 1.15rem;
    padding: 16px 18px;
  }

  .aboutContent {
    padding: 0 18px 18px;
  }

  .aboutContent p {
    font-size: 1.05rem;
    line-height: 1.75;
  }
}

@media (max-width: 768px) {
  .footerCenter {
    text-align: center;
    padding: 10px 18px;
  }

  .footerCenter p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .servicesTiles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .servicesSection .servicesTiles {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

.logo.arg {
  max-height: 75px;
}
.affiliateRow {
  min-height: 140px;
}

.logo.arg {
  max-height: 60px;
}


.affiliateRow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #8a6a00, #f2c200, #8a6a00);
  opacity: 0;
  transition: all 0.3s ease;
}

.affiliateRow:hover::after {
  opacity: 1;
  width: 60%;
  left: 20%;
  box-shadow: 0 0 8px rgba(242,194,0,0.4);
}

.affiliateRow img,
.affiliateRow svg {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.affiliateRow:hover img,
.affiliateRow:hover svg {
  opacity: 0.6;
  transform: translateY(-2px);
}

.logo.simko {
  max-height: 70px;
}
