/* -----------------------------------
   AAA+ DAK ONDERHOUD – CLEAN EDITION
   Donker Grijs • Gold • Simpel Design
----------------------------------- */

/* KLEUREN */
:root {
    --bg: #2a2a2a;
    --bg-light: #333333;
    --text: #e8e8e8;
    --gold: #d4af37;
    --gold-light: #f7e7a1;
    --gold-dark: #b8961f;
    --card-bg: #303030;
    --border: #404040;
    --shadow: rgba(0,0,0,0.3);
}

/* ALGEMEEN */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 80px 0 0 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    perspective: 1200px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* LINKS */
a {
    color: var(--gold);
    text-decoration: none;
}

/* Touch-friendly tap targets */
a, button, .btn, input, select, textarea {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
}

/* HEADER */
header {
    background: var(--bg);
    border-bottom: 2px solid var(--gold);
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

/* NAV */
nav a {
    font-size: 15px;
    font-weight: bold;
    padding: 6px 0;
    position: relative;
}

/* GLOSSY ZOEKVELD */
#searchInput {
    background: var(--bg-light);
    border: 1px solid var(--gold);
    color: var(--text);
}

/* SECTIES */
.section {
    padding: 70px 40px;
    text-align: center;
}
.section h1, .section h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* HERO */
.hero {
    padding: 140px 40px;
    text-align: center;
    background: var(--bg);
}
.hero h1 {
    font-size: 46px;
    color: var(--gold);
}
.hero h2 {
    font-size: 22px;
    margin-top: 10px;
    color: var(--text);
}
.hero p {
    max-width: 600px;
    margin: 20px auto;
}

/* BUTTONS – SIMPEL */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    border: 1px solid var(--gold);
    color: var(--gold);
    margin: 10px;
    background: transparent;
}
.btn:hover {
    background: var(--gold);
    color: #000;
}
.btn.filled {
    background: var(--gold);
    color: #000;
}
.btn.filled:hover {
    background: var(--gold-light);
}

/* GRID */
.grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    justify-items: center;
}

/* Grid voor 2 kolommen op tablets */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

/* Grid voor 1 kolom op mobiel */
@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* CARDS – SIMPEL */
.card, .review-card, .contact-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    box-shadow: none;
}
.card:hover, .review-card:hover {
    border-color: var(--gold);
}
.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid var(--gold);
    box-shadow: none;
    display: block;
}

/* BEFORE/AFTER SLIDER */
.ba-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 35px;
    background: var(--bg);
    border-top: 1px solid var(--gold);
    color: #aaa;
    box-shadow: none;
}

/* ANIMATIES */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* -----------------------------------
   LIVE ZOEKFUNCTIE – CLEAN EDITION
----------------------------------- */

/* Zoekveld */
#searchInput {
    padding: 8px 14px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    background: var(--bg-light);
    color: var(--text);
    outline: none;
    width: 160px;
    box-shadow: none;
}

#searchInput:focus {
    width: 220px;
    border-color: var(--gold);
}

/* Zoekresultaten dropdown */
#searchResults {
    position: absolute;
    right: 40px;
    top: 80px;
    width: 260px;
    background: var(--bg-light);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 10px;
    z-index: 999;
    display: none;
    box-shadow: none;
}

/* Individuele zoekresultaten */
.search-item {
    padding: 12px;
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    border-radius: 4px;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: rgba(212,175,55,0.15);
}
.ba-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
}

.ba-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ba-before,
.ba-after {
    width: 100%;
    display: block;
}

.ba-after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* startpositie */
    height: 100%;
    overflow: hidden;
}

.ba-slider {
    width: 100%;
    margin-top: 10px;
}
.contact-input,
.contact-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    background: var(--bg-light);
    color: #fff;
    outline: none;
    margin-bottom: 15px;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--gold-light);
}
/* FLIP TILES - SIMPEL */
.flip-tile {
    width: 360px;
    height: 400px;
    margin: 0;
}

.flip-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: none;
}

.flip-tile:hover .flip-inner {
    transform: none;
}

/* FRONT + BACK */
.flip-front,
.flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 8px;
    padding: 24px;
    box-sizing: border-box;
    background: var(--bg-light);
    border: 1px solid var(--border);
    box-shadow: none;
    overflow: hidden;
}

/* FRONT */
.flip-front {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.flip-front img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid var(--gold);
    margin-bottom: 16px;
    box-shadow: none;
}

.flip-front h3,
.flip-front h4 {
    color: var(--gold);
    margin: 10px 0;
    font-size: 1.4rem;
}

.flip-front p {
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* BACK */
.flip-back {
    transform: none;
    text-align: left;
    position: relative;
    display: none;
}
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.flip-back::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-image: url('../img/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.2));
}

.flip-back h3,
.flip-back h4 {
    color: #d4af37;
    margin: 0 0 16px 0;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(212,175,55,0.5);
}

.flip-back ul {
    padding-left: 20px;
    margin: 0;
    line-height: 1.8;
    color: #e8e8e8;
    position: relative;
    z-index: 1;
    list-style: none;
}

.flip-back ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 8px;
}

.flip-back ul li::before {
    content: '▸';
    position: absolute;
    left: -12px;
    color: #d4af37;
    font-weight: bold;
}

/* MOBIEL */
@media (max-width: 1024px) {
    .flip-tile {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .flip-tile {
        width: 100%;
        max-width: 340px;
        height: 380px;
    }
}
/* ===========================================
   ACTIEVE PAGINA – SIMPEL STIJL
   =========================================== */

nav a.active {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
}

nav a.active:hover {
    background: rgba(212,175,55,0.2);
    color: #fffbe6;
}
/* =========================
   MOBILE RESPONSIVE STYLING
   ========================= */

/* Tablet en kleine laptops */
@media (max-width: 1024px) {
  /* ALGEMEEN */
  body {
    overflow-x: hidden;
  }

  section, .section {
    padding: 60px 30px;
  }

  /* HEADER */
  header {
    padding: 12px 20px;
  }

  .logo {
    padding: 8px 16px;
  }

  .logo img {
    height: 70px;
  }

  /* HERO */
  .hero {
    padding: 100px 30px;
  }

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

  .hero h2 {
    font-size: 20px;
  }

  /* FLASH MENU */
  .flash-menu {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 20px;
  }

  .flash-menu a {
    font-size: 1rem;
  }

  /* GRIDS */
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 15px;
  }

  /* CARDS */
  .card, .review-card {
    padding: 18px;
  }

  /* FLIP TILES */
  .flip-tile {
    width: 100%;
    max-width: 360px;
  }
}

/* Mobiele telefoons en kleine tablets */
@media (max-width: 768px) {

  /* ALGEMEEN */
  body {
    overflow-x: hidden;
  }

  section, .section {
    padding: 50px 20px;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* HEADER / NAV */
  header {
    padding: 12px 15px !important;
    position: sticky;
    top: 0;
  }

  .logo {
    padding: 6px 12px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
  }
    
  .logo img {
    height: 60px;
  }

  /* HAMBURGER MENU BUTTON - alleen zichtbaar op mobiel */
  .hamburger-toggle {
    display: block !important;
    position: absolute;
    right: 15px;
    top: 15px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
  }

  .hamburger-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
  }

  .hamburger-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
  }

  .hamburger-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* FLASH MENU - Mobiel */
  .flash-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #2a2a2a !important;
    border-left: 2px solid #d4af37 !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 70px 0 20px 0 !important;
    overflow-y: auto !important;
    transition: right 0.4s ease !important;
    margin: 0 !important;
    z-index: 1000 !important;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5) !important;
  }
  
  .flash-menu.active {
    right: 0 !important;
  }

  .flash-menu a {
    width: auto !important;
    text-align: left !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    display: block !important;
    border-radius: 0 !important;
    border: none !important;
  }

  .flash-menu .cta-button.active {
    width: calc(100% - 24px) !important;
    text-align: center !important;
    padding: 12px 12px !important;
    margin: 8px 12px !important;
  }

  .flash-menu input[type="text"] {
    width: 100% !important;
    margin: 8px 0 0 0 !important;
    padding: 10px 14px !important;
  }

  /* ZOEKRESULTATEN */
  #searchResults {
    right: 15px !important;
    left: 15px !important;
    width: auto !important;
    top: 70px !important;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  nav a {
    font-size: 0.9rem;
    padding: 8px 14px;
  }

  nav input#searchInput {
    width: 100% !important;
    max-width: 100%;
    margin-top: 10px;
  }

  /* HERO */
  .hero {
    padding: 80px 20px;
    text-align: center;
    min-height: auto;
  }

  .hero h1 {
    font-size: 32px !important;
    margin-bottom: 15px;
  }

  .hero h2 {
    font-size: 18px !important;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
    padding: 0 10px;
  }

  .hero a.btn,
  .hero .btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 12px auto;
    padding: 14px 24px;
  }

  /* GRIDS */
  .grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 10px;
    max-width: 100% !important;
  }

  /* REVIEWS GALLERY */
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    padding: 10px;
  }

  /* Review cards mobiel optimalisatie */
  .review-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 20px auto !important;
  }

  /* FLIP TILES */
  .flip-tile {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto;
  }

  .flip-front,
  .flip-back {
    padding: 20px;
  }

  .flip-front img {
    width: 100%;
    height: auto;
  }

  .flip-front h3,
  .flip-front h4,
  .flip-back h3,
  .flip-back h4 {
    font-size: 1.3rem;
  }

  .flip-back ul {
    font-size: 0.9rem;
  }

  /* BEFORE / AFTER */
  .ba-wrapper {
    width: 100%;
    padding: 0 10px;
  }

  .ba-container {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .ba-before,
  .ba-after {
    width: 100%;
    height: auto;
  }

  .ba-slider {
    width: 100%;
  }

  /* CARDS */
  .card,
  .review-card,
  .contact-box {
    padding: 18px;
    margin: 0 auto;
    max-width: 100%;
  }

  .card img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 350px;
    object-fit: cover;
  }

  .card h3,
  .review-card h3 {
    font-size: 1.2rem;
  }

  .card p,
  .review-card p {
    font-size: 0.9rem;
  }

  /* BUTTONS */
  .btn,
  .cta-button {
    padding: 14px 22px;
    font-size: 1rem;
    display: inline-block;
  }

  /* CONTACT FORM */
  .contact-input,
  .contact-textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  /* FOOTER */
  footer {
    text-align: center;
    font-size: 0.85rem;
    padding: 30px 20px;
    line-height: 1.8;
  }
}

/* Kleine mobiele telefoons */
@media (max-width: 480px) {
  /* ALGEMEEN */
  section, .section {
    padding: 40px 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.9rem;
  }

  /* HEADER */
  .logo img {
    height: 50px;
  }

  /* HERO */
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 26px !important;
  }

  .hero h2 {
    font-size: 16px !important;
  }

  /* BUTTONS */
  .btn,
  .cta-button {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  /* CARDS */
  .card,
  .review-card {
    padding: 15px;
  }

  /* FLIP TILES */
  .flip-front,
  .flip-back {
    padding: 16px;
  }

  .flip-front h3,
  .flip-back h3 {
    font-size: 1.1rem;
  }

  /* FOOTER */
  footer {
    padding: 25px 15px;
    font-size: 0.8rem;
  }
}

/* ====================================
   EXTRA MOBIELE OPTIMALISATIES
   ==================================== */

/* Zorg dat images nooit groter zijn dan container */
img {
    max-width: 100%;
    height: auto;
}

/* Voorkom horizontale scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Verbeter tekst leesbaarheid op mobiel */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    /* Grotere klikbare gebieden voor links/buttons */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Smooth scrolling voor betere UX */
    html {
        scroll-behavior: smooth;
    }

    /* Verbeterde formulier inputs */
    input, select, textarea {
        font-size: 16px !important; /* Voorkomt zoom op iOS */
    }

    /* Verbeterde kaart spacing */
    .card, .review-card, .contact-box {
        margin-bottom: 20px;
    }

    /* Zorg dat tabellen responsive zijn */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Landscape mode optimalisatie voor mobiel */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 24px !important;
    }

    .hero h2 {
        font-size: 16px !important;
    }

    header {
        padding: 8px 15px !important;
    }

    .logo img {
        height: 45px;
    }
}

/* Touch-friendly interactie voor flip tiles op mobiel */
@media (max-width: 768px) {
    .flip-tile {
        cursor: pointer;
    }

    /* Automatisch flip na tap op mobiel */
    .flip-tile.flipped .flip-inner {
        transform: rotateY(180deg);
    }
}

/* ====================================
   MODERN HEADER & NAVIGATION - CLEAN
   ==================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg);
    border-bottom: 1px solid var(--gold);
    padding: 12px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: none;
}

.hamburger-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
    margin: -8px -8px -8px 0;
}

.hamburger-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo */
.logo {
    display: none;
}

.logo img {
    height: 0;
    width: 0;
}

/* Navigation Menu */
.flash-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.flash-menu a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid transparent;
    white-space: nowrap;
}

.flash-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #fffbe6;
    border: 1px solid #d4af37;
}

.flash-menu a.active {
    background: rgba(212, 175, 55, 0.2);
    color: #fffbe6;
    border: 1px solid #d4af37;
}

.flash-menu .cta-button {
    background: var(--gold);
    color: #000;
    font-weight: bold;
    border: 1px solid var(--gold);
    box-shadow: none;
    padding: 10px 16px;
}

.flash-menu .cta-button:hover {
    background: var(--gold-light);
    box-shadow: none;
}

.flash-menu .cta-button.active {
    background: var(--gold);
    color: #000;
}

/* Mobile Menu (Hamburger) - Handled in main @media (max-width: 768px) section */
@media (max-width: 768px) {
    .hamburger-toggle {
        display: flex;
    }

    .flash-menu a {
        padding: 12px 20px;
        border-radius: 0;
        border: none;
        text-align: left;
        transition: none;
    }

    .flash-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        border: none;
    }

    .flash-menu a.active {
        background: rgba(212, 175, 55, 0.15);
        border: none;
    }

    .flash-menu .cta-button {
        margin: 8px 12px;
        text-align: center;
        width: calc(100% - 24px);
    }

    .logo img {
        height: 40px;
    }
}

/* SEARCH RESULTS */
#searchResults {
    display: none;
    background: #111;
    padding: 15px;
    border-bottom: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* ====================================
   HERO SECTION - CLEAN
   ==================================== */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-premium h1 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin: 0 0 20px 0;
}

.hero-premium h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0 0 30px 0;
    font-weight: 300;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 12px 24px;
    margin: 30px 0;
    font-size: 1rem;
    font-weight: bold;
    color: var(--gold);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    display: block;
}

.stat-label {
    color: var(--text);
    font-size: 0.95rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-hero.primary {
    background: var(--gold);
    color: #000;
}

.btn-hero.primary:hover {
    background: var(--gold-light);
}

.btn-hero.secondary {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-hero.secondary:hover {
    background: rgba(212,175,55,0.1);
}

/* ====================================
   TRUST BADGES SECTION - CLEAN
   ==================================== */

.trust-section {
    background: var(--bg);
    padding: 60px 20px;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border);
}

.trust-item:hover {
    border-color: var(--gold);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.trust-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

.trust-desc {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ====================================
   USP SECTION - CLEAN
   ==================================== */

.usp-section {
    padding: 80px 20px;
    background: var(--bg);
}

.usp-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 50px auto 0;
}

.usp-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: none;
    text-align: center;
    transition: none;
    position: relative;
    overflow: hidden;
}

.usp-card:hover {
    border-color: var(--gold);
}

.usp-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.usp-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.usp-card p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* MAP PINS - CLEAN */
.map-pin {
    cursor: default;
    transition: none;
}

.map-pin:hover {
    filter: none;
}

.map-pin:hover circle {
    fill: var(--gold) !important;
}

/* FOOTER STYLING */
footer {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg);
    border-top: 1px solid var(--gold);
}

footer p {
    margin: 10px 0;
    color: var(--text);
}

footer p:first-child {
    font-size: 1rem;
}

footer p:last-child {
    opacity: 0.7;
    font-size: 0.9rem;
}
