/*----------------------------------------------------------
  DubitCamer Business Car Rental - style.css
  Creative Artistic - Vibrant, Modern, Artistic Flexbox Design
  Author: UI Senior Dev
-----------------------------------------------------------*/
/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F3F4F6;
  color: #252525;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B2538;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #D9A441;
}
ul, ol{
  margin: 0 0 1em 1.5em;
}

/* Artistic FONT IMPORTS (Montserrat & Open Sans) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;800&family=Open+Sans:wght@400;600&display=swap');

/*---------------------------
  BRAND COLORS -- CSS VARIABLES
---------------------------*/
:root {
  --primary: #1B2538;
  --secondary: #D9A441;
  --accent: #F3F4F6;
  --brand-blue: #4165df; /* creative accent */
  --brand-magenta: #D95EC2; 
  --brand-lime: #C2E812; 
  --brand-bg: #F3F4F6;
  --card-bg: #fff;
  --shadow: 0 6px 30px 0 rgba(38,42,102,0.08), 0 1.5px 4px 0 rgba(0,0,0,0.08);
}

/*---------------------------
  LAYOUT HELPERS
---------------------------*/
.container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 40px 20px;
  background: inherit;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  min-width: 260px;
  transition: transform .15s, box-shadow .15s;
}
.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 12px 30px 0 rgba(38,42,102,0.13);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(27,37,56,0.08);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 320px;
  transition: box-shadow .15s, transform .15s;
}
.testimonial-card p {
  font-size: 18px;
  color: #232237;
  font-style: italic;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  font-size: 15px;
  color: #777;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus{
  box-shadow: 0 8px 30px rgba(217,164,65,0.13);
  outline: 2px solid var(--secondary);
  z-index: 1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*---------------------------------------
  BRANDING & CREATIVE ARTISTIC TOUCHES
-----------------------------------------*/

header {
  background: var(--primary);
  color: #fff;
  width: 100%;
  box-shadow: 0 2px 20px rgba(27,37,56,0.06);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 28px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 17px;
  position: relative;
  padding: 6px 0;
  transition: color .18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: var(--secondary);
  transition: width .26s cubic-bezier(.6,.04,0,1.08);
  position: absolute;
  left: 0; bottom: 0;
  border-radius:2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-btn {
  background: linear-gradient(93deg,#D9A441 0%,#D95EC2 80%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 14px 32px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(217,164,65,0.16);
  outline: none;
  transition: background 0.27s, box-shadow 0.27s, transform .11s;
  letter-spacing: .04em;
  position: relative;
  overflow: visible;
  margin-top: 30px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#D95EC2 20%,#D9A441 98%);
  transform: scale(1.03);
  box-shadow: 0 8px 40px 0 rgba(27,37,56,.17);
}

/*---------------------------
  HERO SECTIONS
---------------------------*/
.hero {
  background: linear-gradient(120deg, rgba(65,101,223,0.10),rgba(217,94,194,0.08) 60%,rgba(194,232,18,0.12));
  border-radius: 0 0 44px 44px;
  margin-bottom: 60px;
  padding: 48px 0 36px 0;
  box-shadow: 0 16px 60px 0 rgba(27,37,56,0.10) inset;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.hero .subheadline {
  font-size: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #375;
  margin-bottom: 18px;
}

/*--------------------------
  SECTION HEADINGS
--------------------------*/
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  color: var(--brand-magenta);
  font-weight: 800;
  margin: 26px 0 14px 0;
}
h4 {
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

/*-----------------------------
  FEATURES & LISTS
-------------------------------*/
.features ul, .about ul, .services ul {
  list-style: none;
  padding-left: 0;
}
.features ul li, .about ul li, .services ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 17px;
  padding: 9px 0 9px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  border-left: 5px solid var(--secondary);
  background: linear-gradient(90deg,rgba(217,164,65,0.09),rgba(217,94,194,0.07));
  border-radius: 9px;
  margin-bottom: 11px;
  padding-left: 16px;
}
.features ul li img, .about ul li img, .services ul li img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
}

.about ul {
  margin-top: 0.5em;
}

.services ol {
  margin-left: 1.3em;
}
.services ol li {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/*-------------------------
  PRICING TABLES
--------------------------*/
.pricing table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 10px rgba(65,101,223,0.07);
  overflow: hidden;
}
.pricing th, .pricing td {
  padding: 16px 10px;
  text-align: left;
}
.pricing thead {
  background: var(--secondary);
  color: #fff;
  font-size: 18px;
}
.pricing tr:nth-child(even){
  background: #F9F7FD;
}
.pricing tr:nth-child(odd){
  background: #fff;
}

/*---------------------------
  CONTACT CONTENT & ICONS
---------------------------*/
.contact-content address, .about address {
  font-style: normal;
  margin-bottom: 20px;
  font-size: 17px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.contact-info-icons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-icons img, address img {
  width: 23px;
  height: 23px;
  margin-right: 7px;
  vertical-align: middle;
}

/*--------------------------
  FOOTER
--------------------------*/
footer {
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  margin-top: 64px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 40px 0 rgba(27,37,56,0.09);
  z-index: 2;
  position: relative;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding: 38px 0 12px 0;
}
.footer-cols p, .footer-cols span{
  color: white;
}
.footer-cols > div {
  min-width: 190px;
  flex: 1 1 230px;
}
.footer-cols img {
  height: 36px;
  margin-bottom: 9px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  opacity: .93;
  transition: color .16s, opacity .18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  opacity: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(243,244,246,.09);
  padding: 18px 0 7px 0;
  text-align: center;
  font-size: 15px;
  color: #ededed;
}

/*-------------------------------
  CREATIVE ARTISTIC DECOR
-------------------------------*/
.hero::before {
  content: '';
  position: absolute;
  left: -80px; top: -35px;
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse 140px 95px at 80% 50%, var(--secondary) 0%, transparent 100%);
  opacity: .24;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -80px;
  width: 200px; height: 130px;
  background: radial-gradient(ellipse 140px 60px at 30% 90%, var(--brand-magenta) 0%, transparent 100%);
  opacity: .22;
  z-index: 1;
  pointer-events: none;
}

.section {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
}

/*---------------------------
  THANK YOU & LEGAL PAGES
---------------------------*/
.legal, .thankyou {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 36px 20px;
  margin-bottom: 40px;
}
.legal h1, .thankyou h1 {
  font-size: 32px;
  color: var(--brand-magenta);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 18px;
}
.legal h2, .thankyou h2 {
  font-size: 21px;
  color: var(--secondary);
  margin: 27px 0 11px 0;
}
.legal ul, .thankyou ul {
  list-style: disc;
  margin-left: 1.3em;
  margin-bottom: 1.1em;
}
.legal p, .thankyou p {
  margin-bottom: 12px;
}

/*--------------------------
  BUTTONS
--------------------------*/
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 25px;
  outline: none;
  border: none;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .13s, color .13s;
}
button:focus-visible {
  outline: 2px solid var(--brand-blue);
}

/*--------------------------
  MOBILE BURGER MENU
------------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 14px;
  background: linear-gradient(90deg,var(--secondary) 0%,var(--brand-magenta) 100%);
  color: #fff;
  font-size: 30px;
  border-radius: 18px;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(217,94,194,.13);
  transition: background .22s, color .16s, box-shadow .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #1B2538;
  background: var(--secondary);
  box-shadow: 0 4px 16px rgba(27,37,56,0.13);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 90vw;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(98deg,#fff 70%, #F3F4F6 100%);
  box-shadow: -4px 0 40px rgba(65,101,223,0.09);
  padding: 38px 30px 30px 30px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(110vw);
  transition: transform 0.32s cubic-bezier(.6,.18,.2,.92);
  gap: 30px;
}
.mobile-menu.open {
  transform: translateX(0vw);
  transition: transform 0.34s cubic-bezier(.71,1.3,.21,1);
}
.mobile-menu-close {
  background: #fff;
  color: #1B2538;
  font-size: 30px;
  border-radius: 18px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--secondary);
  align-self: flex-end;
  margin-bottom: 8px;
  transition: background .18s, color .18s, border .18s;
  z-index: 20;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--brand-magenta);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
      align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1B2538;
  padding: 10px 0;
  transition: color .13s, background .16s;
  border-radius: 8px;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus{
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 1100px) {
  .footer-cols {
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-cols > div {
    min-width: 160px;
  }
}
@media (max-width: 900px) {
  .footer-cols {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 900px){
  .container{
    max-width: 100vw;
    padding: 0 8px;
  }
}

@media (max-width: 900px) {
  header .container{
    flex-direction: row;
    gap: 9px;
    padding: 0 8px;
  }
  .content-wrapper, .section, .hero{
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  /* Hide main nav, show burger */
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .cta-btn {
    display: none;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero .subheadline {
    font-size: 16px;
  }
  .footer-cols{
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .section, .hero, .legal, .thankyou {
    padding: 28px 5px;
    border-radius: 14px;
    margin-bottom: 40px;
  }
  .content-wrapper{
    gap: 14px;
  }
  .testimonial-card {
    min-width: 240px;
    padding: 13px;
  }
}
@media (max-width: 600px) {
  html{
    font-size: 15px;
  }
  .hero h1 {
    font-size: 21px;
  }
  .footer-cols > div {
    min-width: unset;
    flex: 1 1 90px;
  }
}
@media (max-width:480px){
  .container{
    padding: 0 2px;
  }
  .hero, .section, .legal, .thankyou{
    border-radius:7px;
    margin-bottom:23px;
    padding:15px 2px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
}

/*---------------------------
  MICROINTERACTIONS & EFFECTS
----------------------------*/
.testimonial-card, .card, .cta-btn, .main-nav a, .mobile-menu-toggle {
  transition: box-shadow .20s, background .20s, color .17s, transform .12s;
}
button:active, .cta-btn:active {
  transform: scale(.98);
}

/* Focus ring for accessibility */
.main-nav a:focus, .mobile-nav a:focus, .cta-btn:focus {
  outline: 2px solid var(--brand-magenta);
  outline-offset: 2px;
}

/*----------------------
  COOKIE CONSENT BANNER
-----------------------*/
.cookie-banner {
  position: fixed;
  left: 12px; right: 12px; bottom: 18px;
  z-index: 20000;
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 2px 32px rgba(27,37,56,.16);
  padding: 24px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  font-size: 15px;
  font-family: 'Open Sans',Arial,sans-serif;
  animation: fadeInCookie .45s .2s cubic-bezier(.65,1.15,.58,1) backwards;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 21px;
  padding: 8px 19px;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 11px rgba(217,94,194,.08);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--brand-magenta);
}
.cookie-btn.reject {
  background: #e9e9ea;
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--brand-lime);
  color: var(--primary);
}
.cookie-btn.settings {
  background: #fff;
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 700px){
  .cookie-banner{
    flex-direction: column;
    gap: 18px;
    padding: 20px 10px;
    left: 3vw;
    right:3vw;
    font-size: 14px;
  }
}

/*--------------------
  COOKIE PREFERENCES MODAL
---------------------*/
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27,37,56, .27);
  z-index: 30000;
  display: none;
}
.cookie-modal-backdrop.open {
  display: block;
  animation: fadeBackdrop .34s;
}
@keyframes fadeBackdrop {
  from { opacity:0; } to{ opacity:1; }
}
.cookie-modal {
  position: fixed;
  background: #fff;
  padding: 36px 29px;
  max-width: 370px;
  width: 95vw;
  left: 50%;
  top: 46%;
  transform: translate(-50%,-55%) scale(.97);
  border-radius: 19px;
  box-shadow: 0 10px 48px rgba(27,37,56,0.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
  z-index: 30001;
  animation: popupIn .35s cubic-bezier(.58,0,.67,1.3);
}
@keyframes popupIn {
  from { opacity:.1; transform: translate(-50%,-60%) scale(.92); }
  to   { opacity:1;  transform: translate(-50%,-55%) scale(1); }
}
.cookie-modal h3 {
  margin: 0 0 5px 0;
  color: var(--secondary);
  font-size: 20px;
  font-family: 'Montserrat',Arial,sans-serif;
}
.cookie-group {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-group label {
  font-family: 'Open Sans',Arial,sans-serif;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.3;
}
.cookie-toggle {
  appearance: none;
  outline: none;
  width: 38px;
  height: 22px;
  background: #e5e5e5;
  border-radius: 11px;
  position: relative;
  transition: background .12s;
  cursor: pointer;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:disabled {
  background: #bbc2c5;
  cursor: not-allowed;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
  box-shadow: 0 1.5px 6px rgba(27,37,56,0.08);
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal .cookie-btn {
  width: 100%;
  margin: 8px 0 0 0;
  padding: 10px 0;
}
.cookie-modal .cookie-action-row{
  display: flex;
  gap: 10px;
  flex-direction: row;
  margin-top:5px;
}
@media (max-width:500px){
  .cookie-modal{ padding:20px 7px; max-width:99vw;}
}

/*--------------------------
  TYPOGRAPHY HIERARCHY
---------------------------*/
p, li, address, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #25304C;
  line-height: 1.65;
}
ul li strong{ color: var(--brand-blue); font-weight: 700; }

/*--------------------------
  SPACING & ARTISTIC WHITESPACE
---------------------------*/
main > section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.content-grid, .card-container, .footer-cols {
  gap: 24px;
}
.features, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
}

/*---------------------------
  ALL TABLES
---------------------------*/
table {
  border-collapse:separate;
  border-spacing: 0;
  width:100%;
}
thead {
  background: var(--secondary);
  color: #fff;
}
th, td {
  padding: 13px 12px;
}

/*------------------------------
  Z-INDEX CONTEXTS
------------------------------*/
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop { z-index: 10000; }

/*----------------------------
  MISC
---------------------------*/
::-webkit-scrollbar {
  width: 10px; background: #e1e6f1;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary); border-radius: 4px;
}

/*--------------------------
  END OF FILE
--------------------------*/