*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --black: #080808;
    --dark: #0f0f0f;
    --mid: #1a1a1a;
    --border: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --text: #d4d4d4;
    --text-dim: #787878;
    --white: #f5f5f0;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 2px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }
  
  .color-gold{
	  color: var(--gold)!important;
  }

	.cond-box a {
		color: var(--gold-light);
		text-decoration: unset;
	}
	.cond-box a:hover {
		text-decoration: underline;
	}

	/* Margin all */
	.m-0 { margin:0 !important; }
	.m-1 { margin:0.25rem !important; }
	.m-2 { margin:0.5rem !important; }
	.m-3 { margin:1rem !important; }
	.m-4 { margin:1.5rem !important; }
	.m-5 { margin:3rem !important; }

	/* Margin Top */
	.mt-0 { margin-top:0 !important; }
	.mt-1 { margin-top:0.25rem !important; }
	.mt-2 { margin-top:0.5rem !important; }
	.mt-3 { margin-top:1rem !important; }
	.mt-4 { margin-top:1.5rem !important; }
	.mt-5 { margin-top:3rem !important; }

	/* Margin Bottom */
	.mb-0 { margin-bottom:0 !important; }
	.mb-1 { margin-bottom:0.25rem !important; }
	.mb-2 { margin-bottom:0.5rem !important; }
	.mb-3 { margin-bottom:1rem !important; }
	.mb-4 { margin-bottom:1.5rem !important; }
	.mb-5 { margin-bottom:3rem !important; }

	/* Margin Left */
	.ml-0 { margin-left:0 !important; }
	.ml-1 { margin-left:0.25rem !important; }
	.ml-2 { margin-left:0.5rem !important; }
	.ml-3 { margin-left:1rem !important; }
	.ml-4 { margin-left:1.5rem !important; }
	.ml-5 { margin-left:3rem !important; }

	/* Margin Right */
	.mr-0 { margin-right:0 !important; }
	.mr-1 { margin-right:0.25rem !important; }
	.mr-2 { margin-right:0.5rem !important; }
	.mr-3 { margin-right:1rem !important; }
	.mr-4 { margin-right:1.5rem !important; }
	.mr-5 { margin-right:3rem !important; }

	/* Margin X (left + right) */
	.mx-0 { margin-left:0 !important; margin-right:0 !important; }
	.mx-1 { margin-left:0.25rem !important; margin-right:0.25rem !important; }
	.mx-2 { margin-left:0.5rem !important; margin-right:0.5rem !important; }
	.mx-3 { margin-left:1rem !important; margin-right:1rem !important; }
	.mx-4 { margin-left:1.5rem !important; margin-right:1.5rem !important; }
	.mx-5 { margin-left:3rem !important; margin-right:3rem !important; }

	/* Margin Y (top + bottom) */
	.my-0 { margin-top:0 !important; margin-bottom:0 !important; }
	.my-1 { margin-top:0.25rem !important; margin-bottom:0.25rem !important; }
	.my-2 { margin-top:0.5rem !important; margin-bottom:0.5rem !important; }
	.my-3 { margin-top:1rem !important; margin-bottom:1rem !important; }
	.my-4 { margin-top:1.5rem !important; margin-bottom:1.5rem !important; }
	.my-5 { margin-top:3rem !important; margin-bottom:3rem !important; }

	/* Auto margins */
	.mx-auto { margin-left:auto !important; margin-right:auto !important; }
	.ml-auto { margin-left:auto !important; }
	.mr-auto { margin-right:auto !important; }
	
	/* Padding all */
	.p-0 { padding:0 !important; }
	.p-1 { padding:0.25rem !important; }
	.p-2 { padding:0.5rem !important; }
	.p-3 { padding:1rem !important; }
	.p-4 { padding:1.5rem !important; }
	.p-5 { padding:3rem !important; }

	/* Padding Top */
	.pt-0 { padding-top:0 !important; }
	.pt-1 { padding-top:0.25rem !important; }
	.pt-2 { padding-top:0.5rem !important; }
	.pt-3 { padding-top:1rem !important; }
	.pt-4 { padding-top:1.5rem !important; }
	.pt-5 { padding-top:3rem !important; }

	/* Padding Bottom */
	.pb-0 { padding-bottom:0 !important; }
	.pb-1 { padding-bottom:0.25rem !important; }
	.pb-2 { padding-bottom:0.5rem !important; }
	.pb-3 { padding-bottom:1rem !important; }
	.pb-4 { padding-bottom:1.5rem !important; }
	.pb-5 { padding-bottom:3rem !important; }

	/* Padding Left */
	.pl-0 { padding-left:0 !important; }
	.pl-1 { padding-left:0.25rem !important; }
	.pl-2 { padding-left:0.5rem !important; }
	.pl-3 { padding-left:1rem !important; }
	.pl-4 { padding-left:1.5rem !important; }
	.pl-5 { padding-left:3rem !important; }

	/* Padding Right */
	.pr-0 { padding-right:0 !important; }
	.pr-1 { padding-right:0.25rem !important; }
	.pr-2 { padding-right:0.5rem !important; }
	.pr-3 { padding-right:1rem !important; }
	.pr-4 { padding-right:1.5rem !important; }
	.pr-5 { padding-right:3rem !important; }

	/* Padding X */
	.px-0 { padding-left:0 !important; padding-right:0 !important; }
	.px-1 { padding-left:0.25rem !important; padding-right:0.25rem !important; }
	.px-2 { padding-left:0.5rem !important; padding-right:0.5rem !important; }
	.px-3 { padding-left:1rem !important; padding-right:1rem !important; }
	.px-4 { padding-left:1.5rem !important; padding-right:1.5rem !important; }
	.px-5 { padding-left:3rem !important; padding-right:3rem !important; }

	/* Padding Y */
	.py-0 { padding-top:0 !important; padding-bottom:0 !important; }
	.py-1 { padding-top:0.25rem !important; padding-bottom:0.25rem !important; }
	.py-2 { padding-top:0.5rem !important; padding-bottom:0.5rem !important; }
	.py-3 { padding-top:1rem !important; padding-bottom:1rem !important; }
	.py-4 { padding-top:1.5rem !important; padding-bottom:1.5rem !important; }
	.py-5 { padding-top:3rem !important; padding-bottom:3rem !important; }
	
	/* =========================================
	   TYPOGRAPHY
	========================================= */

	.text-sm{font-size:.875rem}
	.text-base{font-size:1rem}
	.text-lg{font-size:1.25rem}
	.text-xl{font-size:1.5rem}
	.text-2xl{font-size:2rem}

	.text-center{text-align:center}
	.text-right{text-align:right}

	.font-bold{font-weight:700}
	.font-medium{font-weight:500}
	
	.font-14{font-size: 14px;}
	.font-16{font-size: 16px;}
	.font-18{font-size: 18px;}
	.font-20{font-size: 20px;}

	/* =========================================
	   DISPLAY
	========================================= */

	.hidden{display:none!important}
	.block{display:block!important}
	.inline{display:inline!important}
	.inline-block{display:inline-block!important}


	/* =========================================
	   BORDER
	========================================= */

	.border{border:1px solid #ddd}
	.rounded{border-radius:6px}
	.rounded-lg{border-radius:12px}


	/* =========================================
	   SHADOW
	========================================= */

	.shadow-sm{box-shadow:0 1px 3px rgba(0,0,0,.1)}
	.shadow{box-shadow:0 5px 15px rgba(0,0,0,.1)}

  /* ── HEADER / NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px;
    background: linear-gradient(to bottom, rgba(8,8,8,0.98) 0%, transparent 100%);
  }

  .logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 6px;
    color: var(--white);
    text-transform: uppercase;
  }
  .logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 4px;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
  }
  nav a {
	color: var(--gold);
	text-decoration: none;
	font-size: 16px;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: color 0.3s;
  }
  nav a:hover { color: var(--text-dim); }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(8,8,8,0.26) 0%, rgba(8,8,8,0.32) 38%, rgba(8,8,8,0.18) 70%, rgba(8,8,8,0.12) 100%), linear-gradient(to bottom, rgba(8,8,8,0.1) 0%, rgba(8,8,8,0.55) 100%), url('../img/noir_hero_w1.webp');
    background-size: cover;
    background-position: center;
  }

  .hero-visual {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 80%;
	overflow: hidden;
	background: unset;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.2;
  }

  
  .car-container {
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 520px;
    opacity: 0.9;
    animation: fadeSlideIn 2s ease forwards;
  }

  .car-container svg {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(201,168,76,0.15));
  }

  /* Fog / atmosphere layers */
  .fog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
    z-index: 2;
  }

  .trees {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background:
      radial-gradient(ellipse 300px 500px at 85% 0%, rgba(15,15,15,0.9) 0%, transparent 70%),
      radial-gradient(ellipse 200px 400px at 65% 10%, rgba(10,10,10,0.95) 0%, transparent 60%);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    padding: 0 60px;
    max-width: 100vw;
    animation: heroFade 1.8s ease forwards;
    opacity: 0;
  }

  @keyframes heroFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 0.9; transform: translateX(0); }
  }

  .hero-tag {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 8px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 28px 0;
  }

  .hero p {
    font-size: 20px;
    line-height: 1.9;
    color: #b8b8b8;
    max-width: 820px;
    margin-bottom: 44px;
    text-shadow: 0 1px 16px rgba(8,8,8,0.9), 0 0 40px rgba(8,8,8,0.7);
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 36px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--gold);
    color: var(--black);
  }
  .btn-arrow {
    font-size: 16px;
    transition: transform 0.3s;
  }
  .btn-primary:hover .btn-arrow { transform: translateX(4px); }

  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
  }
  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--border);
    position: relative;
    overflow: hidden;
  }
  .scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: scanLine 2s ease-in-out infinite;
  }
  @keyframes scanLine {
    0% { left: -100%; } 100% { left: 100%; }
  }

  /* ── ABOUT / SERVICE SECTION ── */
  .section-service {
    padding: 120px 60px;
    background: var(--dark);
    border-top: 1px solid var(--border);
  }

  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }

  .section-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 30px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }

  .service-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 20px;
	text-align: justify;
  }

  .service-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
  }
  .feature-item:first-child { border-top: 1px solid var(--border); }

  .feature-dot {
    width: 6px;
    height: 6px;
    border: 1px solid var(--gold);
    background: transparent;
    flex-shrink: 0;
    transition: background 0.3s;
  }
  .feature-item:hover .feature-dot { background: var(--gold); }

  .feature-item span {
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--text-dim);
  }
  .feature-item span:hover {
	color: var(--gold-light);
  }

  /* right column — visual accent */
  .service-visual {
    position: relative;
    padding-top: 20px;
  }

  .quote-block {
    border-left: 2px solid var(--gold);
    padding: 30px 0 30px 36px;
    margin-bottom: 50px;
  }

  .quote-block blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
  }

  .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
  }

  .stat-box {
    background: var(--mid);
    padding: 30px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  /* ── FLEET SECTION ── */
  .section-fleet {
    padding: 120px 60px;
    background: var(--black);
    border-top: 1px solid var(--border);
  }

  .fleet-header {
    max-width: 1100px;
    margin: 0 auto 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .fleet-header .section-title { margin-bottom: 0; }

  .fleet-note {
    font-size: 14px;
    color: var(--text-dim);
    letter-spacing: 1px;
    max-width: 260px;
    text-align: right;
    line-height: 1.8;
  }

  .tax-text {
    max-width: 1100px;
	margin: 0 auto;
  }
  .fleet-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
  }

  .fleet-row {
    background: var(--dark);
    display: grid;
    grid-template-columns: 240px 1fr auto auto;
    align-items: center;
    gap: 0;
    transition: background 0.3s;
    overflow: hidden;
  }
  .fleet-row:hover { background: var(--mid); }

  .fleet-num {
	  width: 240px;
	  min-width: 180px;
	  border-right: 1px solid var(--border);
	  align-self: stretch;
	  overflow: hidden;
}

.fleet-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: grayscale(30%) brightness(0.85);
  transition: filter 0.4s;
}

.fleet-row:hover .fleet-num img {
  filter: grayscale(0%) brightness(1);
}

  .fleet-info {
    padding: 36px 40px;
    border-right: 1px solid var(--border);
  }

  .fleet-model {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
    transition: color 0.3s;
  }
  .fleet-row:hover .fleet-model { color: var(--gold-light); }

  .fleet-class {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .fleet-capacity {
    padding: 36px 40px;
    border-right: 1px solid var(--border);
    text-align: center;
    min-width: 140px;
  }

  .fleet-cap-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
  }

  .fleet-cap-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text);
    text-transform: uppercase;
  }

  .fleet-price {
    padding: 36px 50px;
    text-align: right;
    min-width: 180px;
	width: 240px;
  }

  .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
  }

  .price-unit {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--text);
    text-transform: uppercase;
  }

  /* ── CONDITIONS SECTION ── */
  .section-conditions {
    padding: 100px 60px;
    background: var(--dark);
    border-top: 1px solid var(--border);
  }

  .conditions-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1px;
    background: var(--border);
  }

  .cond-box {
    background: var(--dark);
    padding: 30px 20px;
  }

  .cond-icon {
    font-size: 28px;
    margin-bottom: 20px;
    opacity: 0.6;
  }

  .cond-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  .cond-text {
    font-size: 18px;
    line-height: 1.6;
	text-align: justify;
    color: var(--text);
  }

  .cond-highlight {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
    padding: 6px 14px;
    margin-top: 16px;
  }

  /* ── CONTACT SECTION ── */
  .section-contact {
    padding: 100px 60px;
    background: var(--black);
    border-top: 1px solid var(--border);
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }

  .contact-left .section-title {
    margin-bottom: 16px;
  }

  .contact-tagline {
    font-size: 16px;
    line-height: 2;
    color: var(--text);
    margin-bottom: 50px;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s;
    color: inherit;
  }
  .contact-item:first-child { border-top: 1px solid var(--border); }

  .contact-item:hover { padding-left: 8px; }

  .contact-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: border-color 0.3s;
  }
  .contact-item:hover .contact-icon { border-color: var(--gold); }

  .contact-detail {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .contact-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
  }

  .contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
  }

  /* right side decorative */
  .contact-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 140px;
    color: rgba(201,168,76,0.05);
    line-height: 1;
    letter-spacing: -5px;
    margin-bottom: -30px;
  }

  .contact-cta {
    background: var(--mid);
    border: 1px solid var(--border);
    padding: 50px;
    width: 100%;
  }

  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
  }

  .cta-text {
    font-size: 20px;
    line-height: 2;
    color: var(--text-dim);
    margin-bottom: 28px;
  }

  .cta-hours {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 28px;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 30px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
  }
  .btn-cta:hover { opacity: 0.85; }

  /* ── FOOTER ── */
  footer {
    padding: 30px 60px;
    background: var(--dark);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy {
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 2px;
  }

  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 4px;
  }

  /* ── ANIMATIONS ON SCROLL ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── SERVICE READ MORE ACCORDION ── */
  .service-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
  }
  .service-expand.open {
    max-height: 2400px;
    opacity: 1;
  }

  .service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 0 8px;
    transition: color 0.3s, border-color 0.3s;
  }
  .service-read-more:hover {
    color: var(--gold-light);
    border-color: rgba(201,168,76,0.7);
  }
  .read-more-arrow {
    display: inline-block;
    transition: transform 0.4s ease;
    font-size: 14px;
  }
  .service-read-more.open .read-more-arrow {
    transform: rotate(180deg);
  }

  /* ── FLEET INFO BANNER ── */
  .fleet-info-banner {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    background: var(--dark);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
  }
  .fleet-info-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
  }

  .fleet-info-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 40px;
  }

  .fleet-info-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold);
    opacity: 0.75;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .fleet-info-item p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    margin: 0;
  }

  .fleet-info-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
  }

  /* ── fleet scroll hint — mobile only ── */
  .fleet-scroll-hint { display: none; }

  /* ── ANIMATIONS: extra delays ── */
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav ul { display: none; }
    .hero-content { padding: 0 24px; }
    .hero-visual { display: none; }
    .section-service, .section-conditions, .section-contact { padding: 80px 24px; }
    .section-inner, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
    .conditions-inner { grid-template-columns: 1fr; }
    .fleet-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
    .scroll-hint { display: none; }
    .ornament { font-size: 80px; }

    /* ── FLEET MOBILE: swipeable cards ── */
    .section-fleet {
      padding: 80px 0 80px;
    }

    .section-fleet .fleet-header {
      padding: 0 24px;
      margin-bottom: 40px;
    }

    .section-fleet .tax-text {
      padding: 0 24px;
    }

    .fleet-list {
      display: flex;
      flex-direction: row;
      gap: 16px;
      background: transparent;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-padding-left: 24px;
      padding: 8px 24px 24px;
      /* hide scrollbar */
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .fleet-list::-webkit-scrollbar { display: none; }

    /* scroll indicator dots */
    .fleet-list::after {
      content: '';
      display: block;
      min-width: 1px;
      flex-shrink: 0;
    }

    .fleet-row {
      display: flex;
      flex-direction: column;
      background: var(--dark);
      border: 1px solid var(--border);
      min-width: 260px;
      max-width: 260px;
      flex-shrink: 0;
      scroll-snap-align: start;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
      position: relative;
    }

    .fleet-row:active {
      transform: scale(0.98);
      border-color: rgba(201,168,76,0.4);
    }

    /* image area — full width, fixed height */
    .fleet-num {
      display: block !important;
      width: 100%;
      min-width: unset;
      height: 160px;
      border-right: none;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      position: relative;
      background: var(--mid);
    }

    .fleet-num::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(8,8,8,0.55) 100%
      );
      pointer-events: none;
    }

    .fleet-num img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: grayscale(20%) brightness(0.9);
      transition: filter 0.4s, transform 0.4s;
    }

    .fleet-row:active .fleet-num img {
      filter: grayscale(0%) brightness(1.05);
      transform: scale(1.03);
    }

    /* capacity badge — overlay on image */
    .fleet-capacity {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 0;
      border: none;
      min-width: unset;
      background: rgba(8,8,8,0.75);
      border: 1px solid rgba(201,168,76,0.35);
      padding: 6px 10px;
      text-align: center;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .fleet-cap-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 2px;
    }

    .fleet-cap-label {
      font-size: 8px;
      letter-spacing: 1.5px;
      color: var(--text);
    }

    /* model name row */
    .fleet-info {
      padding: 18px 18px 14px;
      border-right: none;
      border-bottom: 1px solid var(--border);
      flex-grow: 1;
    }

    .fleet-model {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      line-height: 1.2;
    }

    /* price row */
    .fleet-price {
      padding: 14px 18px 18px;
      border: none;
      min-width: unset;
      text-align: left;
      display: flex;
      align-items: baseline;
      gap: 6px;
    }

    .price-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0;
    }

    .price-unit {
      font-size: 10px;
      letter-spacing: 1.5px;
      color: var(--text-dim);
    }

    /* fleet info banner — stack on mobile */
    .fleet-info-banner {
      grid-template-columns: 1fr;
      margin: 24px 24px 0;
    }
    .fleet-info-divider {
      width: auto;
      height: 1px;
    }
    .fleet-info-item {
      padding: 26px 24px;
      gap: 18px;
    }

    /* scroll hint strip below cards */
    .fleet-scroll-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 4px;
      padding: 0 24px;
    }
  }


/* =========================================
   ORDER FORM PAGE  (rendeles.php)
========================================= */

/* Active nav link */
nav a.nav-link-order {
  color: var(--white);
  position: relative;
}
nav a.nav-link-order::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* Page wrapper */
.section-order {
  min-height: 100vh;
  padding: 140px 60px 100px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Order header ── */
.order-header { margin-bottom: 36px; }

.order-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}
.order-title em {
  font-style: italic;
  color: var(--gold-light);
}
.order-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 24px 0;
}
.order-intro {
  font-size: 20px;
  line-height: 1.85;
  color: var(--text-dim);
  max-width: 700px;
  font-weight: 400;
}

/* ── Form section wrapper ── */
.form-section {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.form-section.form-section-4{
	margin-bottom: 22px;
}
.form-section:last-of-type { border-bottom: none; }

.form-section-title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.form-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 3px;
}
.form-section-name {
  font-family: 'Montserrat', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

/* ── Form grid ── */
.form-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}
.form-grid.two-col   { grid-template-columns: 1fr 1fr; }
.form-grid.three-col { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.one-col   { grid-template-columns: 1fr; }
.form-grid:last-child { margin-bottom: 0; }

/* ── Field ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: unset;
  color: var(--text-dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}
.form-input {
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
  width: 100%;
  border-radius: 0;
}
.form-input::placeholder { color: #3d3d3d; }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: #1e1e1e;
}
.form-input.error { border-color: #b55; }

.field-error {
  font-size: 10px;
  letter-spacing: 1px;
  color: #c97272;
  text-transform: uppercase;
}

/* ── Error summary ── */
.form-errors {
  background: rgba(180, 60, 60, 0.06);
  border: 1px solid rgba(180, 60, 60, 0.25);
  padding: 20px 24px;
  margin-bottom: 44px;
}
.form-errors-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c97272;
  margin-bottom: 12px;
}
.form-errors ul { list-style: none; }
.form-errors li {
  font-size: 13px;
  color: #c97272;
  padding: 3px 0;
}
.form-errors li::before { content: '— '; }

/* ── Vehicle table ── */
.vehicle-note {
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
  /*max-width: 680px;*/
}

.vehicle-table-header {
  display: grid;
  grid-template-columns: 80px 1fr 148px 148px 110px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.vehicle-table-header span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 10px;
}
.vehicle-table-header span:first-child { padding-left: 0; }
.vehicle-table-header span:last-child  { text-align: right; }

.vehicle-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr 148px 148px 110px;
  grid-template-areas: "thumb info db h sub";
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  transition: background 0.2s;
}
.vehicle-row:hover { background: rgba(201, 168, 76, 0.025); }

.vehicle-thumb {
  grid-area: thumb;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(15%);
}

.vehicle-info {
  grid-area: info;
  padding: 0 18px;
}
.vehicle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.vehicle-meta {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Spinner controls */
.vehicle-ctrl {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.vehicle-ctrl.db-ctrl { grid-area: db; }
.vehicle-ctrl.h-ctrl  { grid-area: h; }

.ctrl-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.spinner-wrap {
  display: flex;
  align-items: stretch;
}
.spinner-btn {
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}
.spinner-btn:hover:not(:disabled) {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.spinner-btn:disabled { opacity: 0.18; cursor: default; }

.spinner-val {
  width: 42px;
  height: 32px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  color: var(--text);
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
  padding: 0;
}
.spinner-val::-webkit-inner-spin-button,
.spinner-val::-webkit-outer-spin-button { display: none; }

.vehicle-ctrl.disabled-ctrl .spinner-btn,
.vehicle-ctrl.disabled-ctrl .spinner-val {
  opacity: 0.2;
  pointer-events: none;
}

/* Subtotal */
.vehicle-subtotal {
  grid-area: sub;
  padding: 0 0 0 10px;
  text-align: right;
}
.subtotal-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
  display: none; /* shown on mobile */
}
.subtotal-val {
  font-family: 'Montserrat', serif;
  font-size: 18px;
  color: var(--gold);
  white-space: nowrap;
}
.vehicle-row.no-price .subtotal-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.vehicles-error {
  padding: 14px 0 0;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c97272;
}

/* ── Calc summary ── */
.calc-summary {
  margin-top: 28px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.calc-summary-note {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text);
  /*text-transform: uppercase;*/
  line-height: 1.7;
}
.calc-summary-note span{
	color: var(--text);
}
.calc-total-wrap { text-align: right; flex-shrink: 0; }
.calc-total-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.calc-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: var(--gold);
  line-height: 1;
}

/* ── Form footer ── */
.form-footer {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Consent */
.consent-label {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  cursor: pointer;
}
.consent-check-wrap {
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.consent-check {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.consent-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--border);
  background: var(--mid);
  transition: border-color 0.2s, background 0.2s;
  pointer-events: none;
}
.consent-check:checked + .consent-box {
  border-color: var(--gold);
  background: var(--gold);
}
.consent-check:checked + .consent-box::after {
  content: '✓';
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.consent-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
}
.consent-text a { color: var(--gold); text-decoration: none; }
.consent-text a:hover { text-decoration: underline; }
.consent-error {
  font-size: 10px;
  letter-spacing: 1px;
  color: #c97272;
  text-transform: uppercase;
  margin-top: 8px;
  margin-left: 34px;
}

/* Submit area */
.form-submit-area {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.form-submit-btn { flex-shrink: 0; }
.submit-note {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 400px;
}

/* ── Success state ── */
.order-success {
  text-align: center;
  padding: 36px 40px;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
  margin: 0 auto 32px;
}
.success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
}
.success-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 40px;
}

/* ── Radio buttons (honnan értesült) ── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.radio-group.has-error .radio-box { border-color: rgba(180,60,60,0.5); }

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.radio-check-wrap {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.radio-input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.radio-box {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  pointer-events: none;
}
.radio-input:checked + .radio-box { border-color: var(--gold); }
.radio-input:checked + .radio-box::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.radio-text {
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}

/* ── Conditional iroda fields reveal ── */
.iroda-reveal {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.iroda-reveal.open {
  max-height: 300px;
  opacity: 1;
  margin-top: 24px;
}
.iroda-reveal-inner {
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  padding-left: 20px;
}

/* ── Mobile (≤900px) ── */
@media (max-width: 900px) {
  .section-order { padding: 100px 24px 80px; }

  .order-intro { font-size: 15px; }

  .form-grid.two-col,
  .form-grid.three-col { grid-template-columns: 1fr; }

  /* Vehicle: hide desktop header, convert rows to card layout */
  .vehicle-table-header { display: none; }

  .vehicle-row {
    grid-template-columns: 128px 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "thumb info"
      "db    h"
      "sub   sub";
    gap: 14px 16px;
    padding: 20px 0;
  }

  .vehicle-info  { padding: 0; align-self: center; }
  .vehicle-name  { font-size: 17px; }

  .vehicle-ctrl  { padding: 0; align-items: flex-start; }
  .ctrl-label    { display: block; }

  .vehicle-subtotal {
    padding: 0;
    text-align: left;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .subtotal-label { display: block; margin-bottom: 0; }
  .subtotal-val   { font-size: 22px; }
  .vehicle-row.no-price .subtotal-val { font-size: 10px; }

  /* Calc summary stack */
  .calc-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }
  .calc-total-wrap { text-align: left; }
  .calc-total-amount { font-size: 28px; }

  /* Submit */
  .form-submit-area { flex-direction: column; align-items: flex-start; gap: 16px; }
  .submit-note { max-width: 100%; }

  /* Success */
  .order-success { padding: 20px 0; }
  .order-header { margin-bottom: 10px;}

  /* Helpers */
  .bb-none {border-bottom: none!important;}
}

/* ── GDPR Modal ── */
.gdpr-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: gdprFadeIn 0.2s ease;
}
.gdpr-backdrop[hidden] { display: none; }

@keyframes gdprFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gdpr-modal {
  background: var(--dark);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  animation: gdprSlideUp 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gdprSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.gdpr-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.gdpr-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--white);
}

.gdpr-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.15s;
}
.gdpr-close:hover { color: var(--white); }

.gdpr-modal-body {
  overflow-y: auto;
  padding: 28px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.gdpr-modal-body::-webkit-scrollbar { width: 3px; }
.gdpr-modal-body::-webkit-scrollbar-thumb { background: var(--gold); }

.gdpr-updated {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.gdpr-modal-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0 10px;
}
.gdpr-modal-body h3:first-of-type { margin-top: 0; }

.gdpr-modal-body p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 10px;
}

.gdpr-modal-body ul {
  margin: 6px 0 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gdpr-modal-body li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}
.gdpr-modal-body a {
  color: var(--gold-light);
  text-decoration: none;
}
.gdpr-modal-body a:hover { text-decoration: underline; }

.gdpr-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.gdpr-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
  flex-shrink: 0;
}
.gdpr-download:hover { color: var(--gold-light); }

.gdpr-accept { flex-shrink: 0; }

@media (max-width: 600px) {
  .gdpr-modal-header,
  .gdpr-modal-body,
  .gdpr-modal-footer { padding-left: 20px; padding-right: 20px; }

  .gdpr-modal-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .gdpr-download { justify-content: center; }
  .gdpr-accept { text-align: center; justify-content: center; }
}
