/* =========================
   GLOBAL RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#fff;
  color:#333;
}

/* HOME vs INNER PAGES */
body.home{
  padding-top:0;
}

body.inner{
  padding-top:90px;
}

a{
  text-decoration:none;
  color:inherit;
}

.hidden{
  display:none!important;
}

.gold{
  color:#C59D5F;
}

/* =========================
   HEADER (FIXED)
========================= */
.main-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  padding:12px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:9999;
  background:#fff;
}

/* HOME header over hero */
body.home .main-header{
  background:transparent !important;
}

.header-logo img{
  height:58px;
  display:block;
}

/* =========================
   NAVIGATION
========================= */
.nav-menu{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-link{
  font-size:18px;
  font-weight:600;
}

body.home .nav-link{
  color:#fff;
  text-shadow:0 0 6px rgba(0,0,0,0.6);
}

.nav-link.active{
  color:#C59D5F!important;
  border-bottom:2px solid #C59D5F;
  padding-bottom:3px;
}
/* =========================
   DESKTOP DEFAULT
========================= */
.mobile-menu-btn{
  display:none;
}

.mobile-lang{
  display:none;
}

/* =========================
   LANGUAGE SWITCH
========================= */
.desktop-lang{
  display:flex;
  gap:10px;
}

.flag-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:7px 14px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  border:1px solid rgba(0,0,0,0.2);
  background:#fff;
}

.flag-icon{
  width:22px;
  height:16px;
  border-radius:3px;
}

body.home .flag-btn{
  background:rgba(255,255,255,0.2);
  border-color:rgba(255,255,255,0.5);
  color:#fff;
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  height:115vh;
  min-height:700px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:140px;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    #fff
  );
  z-index:1;
}

/* ⬅️ КЛУЧОТ */
body.home .hero{
  margin-top:-90px;
  padding-top:90px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:0 20px;
}

.hero-content h1{
  font-size:56px;
  font-weight:800;
  margin-bottom:15px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:30px;
}

.hero-btn{
  display:inline-block;
  padding:14px 36px;
  border-radius:14px;
  background:#C59D5F;
  color:#fff;
  font-weight:700;
}

/* =========================
   SECTIONS
========================= */
section{
  padding:70px 20px;
}

/* =========================
   STATS
========================= */
.stats-section{
  background:#fff;
  text-align:center;
}

.stats-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:40px;
}

.stats-grid{
  max-width:1000px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.stat-box{
  background:#fff;
  padding:32px 20px;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}


.stat-box:hover{
  transform:translateY(-5px);
}

.stat-number{
  font-size:44px;
  font-weight:800;
  color:#C59D5F;
}

.stat-label{
  font-size:15.5px;
  font-weight:600;
}

/* =========================
   SERVICES
========================= */
.services{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.services h2{
  font-size:42px;
  margin-bottom:50px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service-box{
  background:#fff;
  padding:35px 25px;
  border-radius:18px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:0.3s;
}

.service-box:hover{
  transform:translateY(-6px);
}
/* =========================
   SERVICES – ICON & TEXT SCALE
========================= */

/* ICON */
.service-box .icon{
  font-size:64px;        /* ⬅️ поголеми икони */
  margin-bottom:22px;
  line-height:1;
}

/* TITLE */
.service-box h3{
  font-size:22px;        /* ⬅️ поголем наслов */
  font-weight:800;
  margin-bottom:14px;
}

/* DESCRIPTION */
.service-box p{
  font-size:16.5px;      /* ⬅️ почитлив текст */
  line-height:1.7;
}

/* MOBILE */
@media(max-width:768px){
  .service-box .icon{
    font-size:52px;
  }

  .service-box h3{
    font-size:20px;
  }

  .service-box p{
    font-size:15.5px;
  }
}

/* =========================
   GALLERY PREVIEW
========================= */
.preview{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.preview h2{
  font-size:42px;
  margin-bottom:40px;
}

.preview-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  margin-bottom:40px;
}

.preview-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
}
/* =========================
   MOBILE ONLY
========================= */
@media (max-width: 768px){

  .nav-menu{
    display:none;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#fff;
    flex-direction:column;
    padding:25px 0;
    gap:18px;
    z-index:9998;
  }

  .nav-menu.show{
    display:flex;
  }

  .mobile-menu-btn{
    display:block;
  }

  .desktop-lang{
    display:none;
  }

  .mobile-lang{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:15px;
  }

  body.home .nav-link{
    color:#333;
    text-shadow:none;
  }
}
/* =========================
   GALLERY PAGE
========================= */
.gallery-page{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px 80px;
  text-align:center;
}

.gallery-page h1{
  font-size:42px;
  margin-bottom:50px;
}

/* GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:25px;
}

/* IMAGE BOX */
.gallery-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  cursor:pointer;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover{
  transform:scale(1.05);
  box-shadow:0 18px 45px rgba(0,0,0,0.25);
}

/* =========================
   LIGHTBOX
========================= */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:10000;
}

.lightbox img{
  max-width:90%;
  max-height:85vh;
  border-radius:12px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  color:#fff;
  font-size:40px;
  cursor:pointer;
  user-select:none;
}

.lightbox-close{
  top:25px;
  right:35px;
}

.lightbox-prev{
  left:30px;
}

.lightbox-next{
  right:30px;
}

/* MOBILE */
@media(max-width:768px){
  .gallery-grid img{
    height:220px;
  }
}
/* =========================
   CONTACT – CARD STYLE
========================= */
.contact-page{
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px 80px;
  text-align:center;
}

.contact-page h1{
  font-size:42px;
  margin-bottom:40px;
}

/* CARD */
.contact-card{
  max-width:900px;
  margin:0 auto;
  background:#fff;
  border-radius:22px;
  padding:40px 40px 50px;
  box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* INFO */
.contact-info{
  margin-bottom:35px;
  font-size:17px;
}

.contact-info p{
  margin-bottom:10px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
  display:inline-block;
  margin-top:18px;
  padding:14px 36px;
  border-radius:14px;
  background:#25D366;
  color:#fff;
  font-weight:700;
  font-size:16px;
}

/* FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid #ddd;
  font-family:'Montserrat',sans-serif;
  font-size:15px;
}

.contact-form textarea{
  min-height:160px;
  resize:vertical;
}

/* SUBMIT */
.contact-submit{
  margin-top:10px;
  align-self:center;
  padding:14px 40px;
  border-radius:18px;
  background:#C59D5F;
  color:#fff;
  font-weight:800;
  font-size:16px;
  border:none;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
  .contact-card{
    padding:30px 20px 40px;
  }

  .form-row{
    grid-template-columns:1fr;
  }
}
/* =========================
   GALLERY PREVIEW BUTTON FIX
========================= */
.preview .btn{
  margin: 30px auto 0;
  display: inline-block;
}
/* =========================
   GLOBAL BUTTON SYSTEM
========================= */
.btn{
  display:inline-block;
  padding:14px 38px;
  border-radius:16px;
  font-weight:800;
  font-size:16px;
  text-align:center;
  transition:0.3s ease;
  cursor:pointer;
}

/* GOLD BUTTON */
.btn-gold{
  background:#C59D5F;
  color:#fff !important;
  box-shadow:0 10px 28px rgba(197,157,95,0.35);
}

.btn-gold:hover{
  background:#b48a4d;
  transform:translateY(-2px);
  box-shadow:0 16px 38px rgba(197,157,95,0.45);
}

/* CENTER BUTTON IN PREVIEW */
.preview .btn{
  margin:30px auto 0;
}
/* =========================
   ABOUT PAGE – CLEAN & FINAL
========================= */

/* MAIN WRAPPER */
.premium-about{
  max-width:1100px;
  margin:0 auto;
  padding:100px 24px 120px;
}

/* TITLES */
.premium-about h1{
  font-size:48px;
  font-weight:800;
  margin-bottom:30px;
  color:#111;
}

.premium-about h1::after{
  content:"";
  display:block;
  width:80px;
  height:3px;
  background:#C59D5F;
  margin-top:14px;
}

.premium-about h2{
  font-size:32px;
  font-weight:700;
  margin:80px 0 24px;
  color:#111;
}

/* =========================
   HERO INTRO (IMAGE BACKGROUND)
========================= */

.about-hero{
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url("images/about-hero.jpg") center / cover no-repeat;

  padding:70px 60px;
  margin:40px 0 90px;
  border-radius:16px;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.about-hero p{
  font-size:18px;
  line-height:1.9;
  max-width:850px;
  color:#222;
}

/* =========================
   HIGHLIGHTS
========================= */

.about-highlights{
  display:flex;
  gap:50px;
  margin-top:35px;
  flex-wrap:wrap;
}

.highlight strong{
  font-size:30px;
  font-weight:800;
  color:#C59D5F;
  display:block;
}

.highlight span{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.7px;
  color:#444;
}

/* =========================
   TEXT BLOCK
========================= */

.big-text{
  font-size:17px;
  line-height:1.9;
  max-width:900px;
  color:#333;
  margin-bottom:30px;
}

/* =========================
   INTERNATIONAL SECTION
========================= */

.international{
  background:
    linear-gradient(
      rgba(255,255,255,0.75),
      rgba(255,255,255,0.75)
    ),
    url("images/international-hero.jpg");
  background-size: cover;
  background-position: center;
  padding:55px 60px 50px;
  border-radius:20px;
  margin:90px 0;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.international p{
  margin-bottom:18px;
  max-width:820px;
}


/* =========================
   WHY US GRID
========================= */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:32px;
  margin:60px 0 120px;
}

.why{
  background:#fff;
  padding:40px 32px;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(0,0,0,0.08);
  transition:0.3s ease;
  position:relative;
}

.why::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:0;
  height:4px;
  background:#C59D5F;
  transition:0.3s;
}

.why:hover::before{
  width:100%;
}

.why:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 65px rgba(0,0,0,0.15);
}

.why span{
  font-size:34px;
  display:block;
  margin-bottom:18px;
}

.why p{
  font-size:15px;
  line-height:1.7;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .premium-about{
    padding:80px 20px 100px;
  }

  .premium-about h1{
    font-size:36px;
  }

  .premium-about h2{
    font-size:26px;
    margin-top:60px;
  }

  .about-hero{
    padding:40px 26px;
  }

  .about-highlights{
    gap:30px;
  }

  .highlight strong{
    font-size:26px;
  }

}
/* =========================
   ABOUT PAGE – CLEAN FINAL
========================= */

.premium-about{
  max-width:1100px;
  margin:0 auto;
  padding:80px 20px;
}

/* TITLE */
.premium-about h1{
  font-size:42px;
  font-weight:800;
  margin-bottom:40px;
  color:#111;
}

/* HERO */
.about-hero{
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    url("images/about-hero.jpg") center / cover no-repeat;

  padding: 60px;
  border-radius: 14px;
  margin: 40px 0 80px;
}

.about-hero p{
  font-size:18px;
  line-height:1.9;
  color:#222;
  max-width:850px;
}

/* HIGHLIGHTS */
.about-highlights{
  display:flex;
  gap:40px;
  margin-top:30px;
  flex-wrap:wrap;
}

.highlight strong{
  font-size:32px;
  color:#C59D5F;
  display:block;
}

.highlight span{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* SECONDARY */
.about-secondary{
  margin:60px 0;
}

.big-text{
  font-size:18px;
  line-height:1.9;
  max-width:900px;
  color:#333;
}

/* =========================
   INTERNATIONAL – IMAGE + TRUST BADGE
========================= */

.international-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin:120px 0;
}

.international-media{
  position:relative;
}

.international-media img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 22px 55px rgba(0,0,0,0.18);
}

/* TRUST BADGE */
.trust-badge{
  position:absolute;
  bottom:22px;
  left:22px;
  background:#111;
  color:#fff;
  padding:16px 20px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.trust-badge span{
  display:block;
  font-size:28px;
  font-weight:800;
  color:#C59D5F;
  line-height:1;
}

.trust-badge small{
  display:block;
  font-size:12px;
  letter-spacing:0.6px;
  text-transform:uppercase;
  opacity:0.9;
}

/* TEXT */
.international-content .big-text{
  max-width:520px;
}

/* MOBILE */
@media(max-width:900px){
  .international-hero{
    grid-template-columns:1fr;
    gap:40px;
  }

  .international-media img{
    height:300px;
  }
}


/* WHY */
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin:50px 0 80px;
}

.why{
  background:#fff;
  padding:35px 30px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.why:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 55px rgba(0,0,0,0.12);
}

.why span{
  font-size:34px;
  display:block;
  margin-bottom:15px;
}

/* MOBILE */
@media(max-width:768px){
  .about-hero,
  .international{
    padding:35px 25px;
  }

  .about-highlights{
    gap:25px;
  }

  .premium-about h1{
    font-size:34px;
  }
}
/* =========================
   ABOUT – HERO SUBTEXT
========================= */
.about-hero .hero-subtext{
  margin-top:18px;
  font-size:1.05rem;
  line-height:1.85;
  color:#333;
  max-width:820px;
}
/* =========================
   INTERNATIONAL HERO (PREMIUM)
========================= */

.international-hero{
  position:relative;
  margin:120px 0;
  padding:70px 60px;
  border-radius:26px;
  background-image:url("images/international-experience.jpg");
  background-size:cover;
  background-position:center;
  overflow:hidden;
  box-shadow:0 25px 65px rgba(0,0,0,0.12);
}

/* OVERLAY */
.international-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,0.96),
    rgba(245,248,250,0.88)
  );
}

/* CONTENT */
.international-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

/* SUBTEXT */
.international-hero .hero-subtext{
  margin-top:18px;
  font-size:1.05rem;
  line-height:1.85;
  color:#333;
}

/* TRUST BADGES */
.trust-badges{
  display:flex;
  gap:18px;
  margin-top:30px;
  flex-wrap:wrap;
}

.trust-badges span{
  background:#fff;
  padding:10px 18px;
  border-radius:30px;
  font-size:0.85rem;
  font-weight:700;
  color:#333;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* MOBILE */
@media(max-width:768px){
  .international-hero{
    padding:45px 28px;
  }

  .trust-badges{
    gap:12px;
  }
}
/* =========================
   WHY US – ICON CENTERING
========================= */

.why{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.why span{
  font-size:42px;          /* икона поголема */
  margin-bottom:18px;
  line-height:1;
}

.why p{
  font-size:15.5px;
  line-height:1.6;
  max-width:220px;
}
/* =========================
   WHY US – CTA BUTTON
========================= */
.why-cta{
  margin:60px auto 0;
  text-align:center;
}

.why-cta .btn{
  font-size:18px;
  padding:16px 46px;
}
/* =========================
   ABOUT PAGE TITLE FIX
========================= */
.about.premium-about h1{
  font-size:38px;
  font-weight:800;
  color:#C59D5F;
  margin-bottom:45px;
  letter-spacing:0.5px;
}

/* mobile */
@media(max-width:768px){
  .about.premium-about h1{
    font-size:30px;
    margin-bottom:35px;
  }
}
/* ABOUT HIGHLIGHTS – SINGLE CENTER */
.about-highlights.single{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 40px 0;
}

/* Hover – subtle luxury */
.trust-badge:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
  transition: 0.25s ease;
}
/* =========================
   EU CERTIFICATION BADGE
========================= */

.about-highlights.single{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 50px 0;
}

/* Outer badge */
.eu-badge{
  width:140px;
  height:140px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Ring */
.eu-ring{
  width:120px;
  height:120px;
  border-radius:50%;
  border:2px solid #C59D5F;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#fff;
}

/* Text */
.eu-top{
  font-size:26px;
  font-weight:900;
  letter-spacing:0.12em;
  color:#C59D5F;
}

.eu-middle{
  font-size:18px;
  margin:4px 0;
  color:#C59D5F;
}

.eu-bottom{
  font-size:10px;
  font-weight:700;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:#333;
}

/* Optional subtle shadow */
.eu-ring{
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
/* =========================
   EU QUALITY IMAGE
========================= */

.about-highlights.single{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 50px 0;
}

.eu-quality-img{
  width:200px;
  height:auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}

@media(max-width:768px){
  .eu-quality-img{
    width:120px;
  }
}
/* =========================
   SECTION DIVIDER – FINAL SAFE
========================= */

.section-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin:60px auto;
  max-width:900px;
}

.divider-line{
  flex:1;
  height:2px;
  background:#C59D5F;
  opacity:0.7;
}

.divider-text{
  font-size:18px;
  font-weight:700;
  color:#C59D5F;
  text-align:center;
  white-space:nowrap;
}

/* mobile */
@media(max-width:768px){
  .divider-text{
    font-size:16px;
    white-space:normal;
  }
}
/* =========================
   INTERNATIONAL – FORCE CENTER FIX
========================= */

/* HERO WRAPPER */
.international-hero{
  padding:40px 60px 70px !important;
}

/* CONTENT – FORCE CENTER */
.international-hero .international-content.centered{
  max-width:860px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

/* TITLE – MOVE UP + CENTER */
.international-hero .international-title{
  margin-top:0 !important;
  margin-bottom:26px !important;
  text-align:center !important;
  color:#C59D5F !important;
}

/* TITLE LINE */
.international-hero .international-title::after{
  margin-left:auto !important;
  margin-right:auto !important;
}

/* TEXT – CENTER & READABLE */
.international-hero .international-text{
  max-width:780px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  text-align:center !important;
}

.international-hero .international-text p{
  text-align:center !important;
}

/* TRUST POINTS – CENTER */
.international-hero .international-points{
  justify-content:center !important;
}

/* MOBILE */
@media(max-width:768px){
  .international-hero{
    padding:35px 24px 55px !important;
  }
}
/* =========================
   INTERNATIONAL HERO – REAL CENTER FIX
========================= */

/* ensure content container is centered */
.international-hero .international-content.centered {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  max-width: 860px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

/* make sure text inside is centered */
.international-hero .international-content.centered,
.international-hero .international-content.centered * {
  text-align: center !important;
}

/* reduce any left bias from parent */
.international-hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* beef up title spacing */
.international-hero .international-title {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}
/* ONLY FIX TRUST TEXT – NO LAYOUT CHANGE */
.international-trust{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:32px;
  margin:30px auto 0;
  text-align:center;
  flex-wrap:wrap;
}

.international-trust span{
  position:relative;
  font-size:15px;
  font-weight:600;
  color:#111;
  padding-left:20px;
  white-space:nowrap;
}

.international-trust span::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#C59D5F;
  font-weight:800;
}

/* mobile only spacing */
@media(max-width:768px){
  .international-trust{
    gap:18px;
  }
}
/* =========================
   INTERNATIONAL TRUST DIVIDER
========================= */

.international-trust-divider{
  position:relative;
  display:flex;
  justify-content:center;
  gap:36px;
  margin:40px auto 30px;
  padding-top:18px;
  flex-wrap:wrap;
  text-align:center;
}

/* gold divider line */
.international-trust-divider::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:220px;
  height:2px;
  background:#C59D5F;
  opacity:0.8;
}

/* text + check */
.international-trust-divider span{
  position:relative;
  font-size:15px;
  font-weight:600;
  color:#111;
  padding-left:20px;
  white-space:nowrap;
}

/* check icon */
.international-trust-divider span::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#C59D5F;
  font-weight:800;
}

/* mobile */
@media(max-width:768px){
  .international-trust-divider{
    gap:18px;
  }

  .international-trust-divider::before{
    width:160px;
  }

  .international-trust-divider span{
    font-size:14px;
  }
}
/* =========================
   FOOTER – FINAL SINGLE
========================= */

.site-footer{
  width:100%;
  background:#111;
  color:#fff;
  margin-top:40px;
}

.footer-container{
  max-width:1200px;
  margin:0 auto;
  padding:35px 20px 25px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:40px;
  align-items:flex-start;
}

.footer-col{
  font-size:15px;
  line-height:1.8;
}

.footer-col:first-child{
  text-align:left;
}

.footer-col:last-child{
  text-align:right;
}

.footer-title{
  font-size:17px;
  font-weight:800;
  margin-bottom:10px;
  color:#C59D5F;
}

.footer-col a{
  display:block;
  margin-bottom:5px;
  color:#fff;
  opacity:0.85;
  transition:0.25s;
}

.footer-col a:hover{
  opacity:1;
  color:#C59D5F;
}

.footer-logo{
  text-align:center;
}

.footer-logo img{
  max-width:110px;
}

.footer-bottom{
  text-align:center;
  padding:10px;
  font-size:12px;
  background:#0b0b0b;
  color:#aaa;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
  }

  .footer-col{
    text-align:center;
  }

  .footer-logo img{
    max-width:120px;
  }
}
/* =========================
   FOOTER – MOBILE CENTERED
========================= */
@media (max-width: 768px){

  .site-footer{
    margin-top:30px;
    text-align:center;
  }

  .footer-container{
    grid-template-columns:1fr;
    padding:25px 16px 20px;
    gap:22px;
    text-align:center;
  }

  .footer-col{
    text-align:center;
    font-size:14px;
    line-height:1.6;
  }

  .footer-title{
    font-size:16px;
    margin-bottom:8px;
    text-align:center;
  }

  .footer-col a{
    margin-bottom:4px;
    text-align:center;
  }

  .footer-logo{
    text-align:center;
  }

  .footer-logo img{
    max-width:95px;
    margin:0 auto;
    display:block;
  }

  .footer-bottom{
    padding:8px 10px;
    font-size:11px;
    text-align:center;
  }
}
/* =========================
   FOOTER – MOBILE FORCE CENTER (FIX)
========================= */
@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr !important;
    text-align:center !important;
  }

  .footer-container .footer-col,
  .footer-container .footer-col:first-child,
  .footer-container .footer-col:last-child{
    text-align:center !important;
  }

  .footer-col a{
    text-align:center !important;
  }

  .footer-logo{
    text-align:center !important;
  }

  .footer-logo img{
    margin:0 auto !important;
    display:block;
  }
}













































































