/* ═══ GUARANTEED BASE RESET ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}body{-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}a{text-decoration:none}
ul,ol{list-style:none;margin:0;padding:0}li{list-style:none}button{cursor:pointer}
.pdr-nav,.pdr-nav ul,.pdr-nav ol,.pdr-nav li,nav ul,nav ol,nav li,.menu,.menu ul,.menu li{list-style:none!important;list-style-type:none!important;margin:0;padding:0}
.pdr-nav>ul{display:flex;align-items:center;gap:0;flex-wrap:wrap}
.pdr-nav>ul>li{position:relative}.pdr-nav>ul>li>a{display:block;padding:10px 16px;font-size:14px;font-weight:600;white-space:nowrap}
.pdr-nav>ul>li.pdr-cta-item>a,.pdr-nav .pdr-nav-cta{border-radius:50px!important;padding:10px 24px!important}
.pdr-nav>a{display:inline-flex;align-items:center;padding:10px 16px;font-size:14px;font-weight:600}
.pdr-container{max-width:1200px;margin:0 auto;padding:0 24px}
.pdr-menu-toggle{display:none;background:none;border:none;font-size:28px;cursor:pointer;padding:4px}
@media(max-width:768px){
.pdr-menu-toggle{display:block}
.pdr-nav{display:none;position:absolute;top:100%;left:0;right:0;background:#fff;padding:12px 0;box-shadow:0 8px 24px rgba(0,0,0,.1);z-index:999}
.pdr-nav.active{display:block}.pdr-nav>ul{flex-direction:column}.pdr-nav>ul>li>a{padding:12px 24px}.pdr-nav>a{display:block;padding:12px 24px}}
body.admin-bar .pdr-header{top:32px}@media(max-width:782px){body.admin-bar .pdr-header{top:46px}}

/* ═══ AI-GENERATED STYLES ═══ */

/*
Theme Name: Prime Drive Rentals and Tours
Description: Professional transportation and tourism theme for Prime Drive Rentals and Tours
Version: 1.0
Author: Elite Web Designer
*/

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

:root {
  --pdr-primary: #2563eb;
  --pdr-primary-dark: #1d4ed8;
  --pdr-secondary: #f97316;
  --pdr-accent: #10b981;
  --pdr-dark: #1e293b;
  --pdr-gray: #64748b;
  --pdr-light-gray: #f1f5f9;
  --pdr-white: #ffffff;
  --pdr-black: #0f172a;
  
  --pdr-gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --pdr-gradient-secondary: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --pdr-gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  
  --pdr-font-primary: 'Montserrat', sans-serif;
  --pdr-font-secondary: 'Open Sans', sans-serif;
  
  --pdr-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --pdr-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --pdr-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --pdr-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --pdr-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  --pdr-radius: 8px;
  --pdr-radius-lg: 16px;
  --pdr-radius-xl: 24px;
  
  --pdr-transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--pdr-font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pdr-dark);
  background-color: var(--pdr-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pdr-font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--pdr-black);
}

h1 { font-size: 3.5rem; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 2rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

a {
  color: var(--pdr-primary);
  text-decoration: none;
  transition: var(--pdr-transition);
}

a:hover {
  color: var(--pdr-primary-dark);
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* CONTAINER */
.pdr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.pdr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--pdr-font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--pdr-transition);
  white-space: nowrap;
}

.pdr-btn-primary {
  background: var(--pdr-gradient-primary);
  color: var(--pdr-white);
  border-color: var(--pdr-primary);
}

.pdr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--pdr-shadow-lg);
  color: var(--pdr-white);
}

.pdr-btn-outline {
  background: transparent;
  color: var(--pdr-primary);
  border-color: var(--pdr-primary);
}

.pdr-btn-outline:hover {
  background: var(--pdr-primary);
  color: var(--pdr-white);
}

.pdr-btn-white {
  background: var(--pdr-white);
  color: var(--pdr-primary);
  border-color: var(--pdr-white);
}

.pdr-btn-white:hover {
  background: transparent;
  color: var(--pdr-white);
  border-color: var(--pdr-white);
}

.pdr-btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.pdr-btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

/* TOPBAR */
.pdr-topbar {
  background: var(--pdr-primary);
  color: var(--pdr-white);
  padding: 8px 0;
  font-size: 14px;
}

.pdr-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdr-topbar-info {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pdr-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdr-topbar a {
  color: var(--pdr-white);
}

.pdr-topbar a:hover {
  color: var(--pdr-light-gray);
}

/* HEADER */
.pdr-header {
  position: sticky;
  top: 0;
  background: var(--pdr-white);
  box-shadow: var(--pdr-shadow);
  z-index: 1000;
  padding: 0;
}

.pdr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

/* LOGO */
.pdr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pdr-black);
}

.pdr-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--pdr-gradient-primary);
  border-radius: var(--pdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pdr-white);
  font-size: 24px;
  font-weight: 700;
}

.pdr-logo-text {
  font-family: var(--pdr-font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--pdr-black);
}

.pdr-logo-tagline {
  font-size: 12px;
  color: var(--pdr-gray);
  font-weight: 400;
}

/* NAVIGATION */
.pdr-nav {
  display: flex;
  align-items: center;
}

.pdr-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdr-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdr-nav a {
  color: var(--pdr-dark);
  padding: 26px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--pdr-font-primary);
  display: block;
  text-decoration: none;
  transition: var(--pdr-transition);
}

.pdr-nav a:hover {
  color: var(--pdr-primary);
}

.pdr-nav-cta {
  background: var(--pdr-primary) !important;
  color: var(--pdr-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  margin-left: 16px;
}

.pdr-nav-cta:hover {
  background: var(--pdr-primary-dark) !important;
  color: var(--pdr-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--pdr-shadow-lg);
}

/* MOBILE MENU */
.pdr-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--pdr-dark);
}

@media (max-width: 768px) {
  .pdr-menu-toggle {
    display: block;
  }
  
  .pdr-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--pdr-white);
    flex-direction: column;
    box-shadow: var(--pdr-shadow-lg);
    z-index: 999;
  }
  
  .pdr-nav.active {
    display: flex;
  }
  
  .pdr-nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  .pdr-nav li {
    width: 100%;
    border-bottom: 1px solid var(--pdr-light-gray);
  }
  
  .pdr-nav a {
    padding: 14px 24px;
  }
  
  .pdr-nav-cta {
    margin: 16px 24px !important;
    display: inline-block !important;
    text-align: center;
    width: calc(100% - 48px) !important;
  }
}

/* HERO */
.pdr-hero {
  background: var(--pdr-gradient-hero);
  color: var(--pdr-white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pdr-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.pdr-hero-content {
  position: relative;
  z-index: 2;
}

.pdr-hero h1 {
  color: var(--pdr-white);
  font-size: 56px;
  margin-bottom: 24px;
}

.pdr-hero p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.pdr-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pdr-hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.pdr-hero-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--pdr-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pdr-hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--pdr-white);
  margin-bottom: 8px;
}

.pdr-hero-stat-text {
  font-size: 14px;
  opacity: 0.8;
}

/* PAGE HERO */
.pdr-page-hero {
  background: var(--pdr-gradient-primary);
  color: var(--pdr-white);
  padding: 56px 0;
  text-align: center;
}

.pdr-page-hero h1 {
  color: var(--pdr-white);
  font-size: 40px;
  margin-bottom: 16px;
}

.pdr-page-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* SECTIONS */
.pdr-section {
  padding: 80px 0;
}

.pdr-section-white {
  background: var(--pdr-white);
}

.pdr-section-gray {
  background: var(--pdr-light-gray);
}

.pdr-section-dark {
  background: var(--pdr-dark);
  color: var(--pdr-white);
}

.pdr-section-primary {
  background: var(--pdr-gradient-primary);
  color: var(--pdr-white);
}

/* SECTION HEADER */
.pdr-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.pdr-section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.pdr-section-header p {
  font-size: 18px;
  color: var(--pdr-gray);
  margin-bottom: 32px;
}

.pdr-section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--pdr-gradient-primary);
  margin: 0 auto;
  border-radius: 2px;
}

.pdr-section-dark .pdr-section-header h2,
.pdr-section-primary .pdr-section-header h2 {
  color: var(--pdr-white);
}

.pdr-section-dark .pdr-section-header p,
.pdr-section-primary .pdr-section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.pdr-section-dark .pdr-section-header::after,
.pdr-section-primary .pdr-section-header::after {
  background: var(--pdr-white);
}

/* GRIDS */
.pdr-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pdr-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pdr-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARDS */
.pdr-card {
  background: var(--pdr-white);
  border: 1px solid var(--pdr-light-gray);
  border-radius: var(--pdr-radius-lg);
  padding: 32px;
  transition: var(--pdr-transition);
  height: 100%;
}

.pdr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pdr-shadow-xl);
}

.pdr-card-icon {
  width: 56px;
  height: 56px;
  background: var(--pdr-gradient-primary);
  border-radius: var(--pdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pdr-white);
  font-size: 24px;
  margin-bottom: 24px;
}

.pdr-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.pdr-card p {
  color: var(--pdr-gray);
  line-height: 1.6;
}

.pdr-card-dark {
  background: var(--pdr-dark);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--pdr-white);
}

.pdr-card-dark h3 {
  color: var(--pdr-white);
}

.pdr-card-dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* BENEFIT CARDS */
.pdr-benefit {
  background: var(--pdr-white);
  padding: 32px;
  border-radius: var(--pdr-radius-lg);
  border-left: 4px solid var(--pdr-primary);
  box-shadow: var(--pdr-shadow);
  transition: var(--pdr-transition);
}

.pdr-benefit:hover {
  border-left-color: var(--pdr-secondary);
  transform: translateX(8px);
}

.pdr-benefit h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--pdr-primary);
}

.pdr-benefit p {
  color: var(--pdr-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* STEPS */
.pdr-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.pdr-step {
  text-align: center;
  position: relative;
}

.pdr-step-number {
  width: 80px;
  height: 80px;
  background: var(--pdr-gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pdr-white);
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
}

.pdr-step-number::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--pdr-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

.pdr-step h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.pdr-step p {
  color: var(--pdr-gray);
  line-height: 1.6;
}

/* CTA */
.pdr-cta {
  background: var(--pdr-gradient-primary);
  color: var(--pdr-white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pdr-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(50px);
  }
}

.pdr-cta-content {
  position: relative;
  z-index: 2;
}

.pdr-cta h2 {
  color: var(--pdr-white);
  font-size: 36px;
  margin-bottom: 16px;
}

.pdr-cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* CONTACT */
.pdr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--pdr-radius-lg);
  overflow: hidden;
  box-shadow: var(--pdr-shadow-xl);
}

.pdr-contact-info {
  background: var(--pdr-dark);
  color: var(--pdr-white);
  padding: 48px;
}

.pdr-contact-info h3 {
  color: var(--pdr-white);
  font-size: 24px;
  margin-bottom: 24px;
}

.pdr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.pdr-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--pdr-primary);
  border-radius: var(--pdr-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pdr-white);
  font-size: 20px;
  flex-shrink: 0;
}

.pdr-contact-details h4 {
  color: var(--pdr-white);
  font-size: 16px;
  margin-bottom: 4px;
}

.pdr-contact-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.pdr-contact-form {
  background: var(--pdr-white);
  padding: 48px;
}

/* FORM */
.pdr-form {
  max-width: none;
}

.pdr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.pdr-form-group {
  margin-bottom: 20px;
}

.pdr-form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--pdr-dark);
}

.pdr-form-group input,
.pdr-form-group select,
.pdr-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--pdr-light-gray);
  border-radius: var(--pdr-radius);
  font-size: 16px;
  font-family: var(--pdr-font-secondary);
  transition: var(--pdr-transition);
  background: var(--pdr-white);
}

.pdr-form-group input:focus,
.pdr-form-group select:focus,
.pdr-form-group textarea:focus {
  outline: none;
  border-color: var(--pdr-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.pdr-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ */
.pdr-faq-item {
  background: var(--pdr-white);
  border-radius: var(--pdr-radius);
  margin-bottom: 16px;
  box-shadow: var(--pdr-shadow);
  overflow: hidden;
}

.pdr-faq-q {
  padding: 24px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--pdr-transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 16px;
}

.pdr-faq-q:hover {
  background: var(--pdr-light-gray);
}

.pdr-faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pdr-primary);
  color: var(--pdr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--pdr-transition);
}

.pdr-faq-item.active .pdr-faq-toggle {
  transform: rotate(45deg);
  background: var(--pdr-secondary);
}

.pdr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.pdr-faq-item.active .pdr-faq-a {
  max-height: 500px;
}

.pdr-faq-a-inner {
  padding: 0 24px 24px;
  color: var(--pdr-gray);
  line-height: 1.6;
}

/* FOOTER */
.pdr-footer {
  background: var(--pdr-dark);
  color: var(--pdr-white);
  padding: 64px 0 0;
}

.pdr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.pdr-footer h4 {
  color: var(--pdr-white);
  font-size: 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdr-footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pdr-footer ul {
  list-style: none;
}

.pdr-footer ul li {
  margin-bottom: 12px;
}

.pdr-footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--pdr-transition);
}

.pdr-footer ul li a:hover {
  color: var(--pdr-white);
}

.pdr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pdr-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pdr-hero h1 {
    font-size: 48px;
  }
  
  .pdr-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .pdr-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .pdr-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .pdr-container {
    padding: 0 16px;
  }
  
  .pdr-grid-2,
  .pdr-grid-3,
  .pdr-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .pdr-hero {
    padding: 64px 0;
    text-align: center;
  }
  
  .pdr-hero h1 {
    font-size: 36px;
  }
  
  .pdr-hero p {
    font-size: 16px;
  }
  
  .pdr-section {
    padding: 56px 0;
  }
  
  .pdr-section-header h2 {
    font-size: 32px;
  }
  
  .pdr-form-row {
    grid-template-columns: 1fr;
  }
  
  .pdr-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pdr-topbar-info {
    gap: 16px;
  }
  
  .pdr-topbar-item {
    font-size: 12px;
  }
  
  .pdr-contact-info,
  .pdr-contact-form {
    padding: 32px 24px;
  }
}

/* ADMIN BAR */
body.admin-bar .pdr-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .pdr-header {
    top: 46px;
  }
}
/* ═══ IMAGE HELPERS ═══ */
.pdr-hero img, .pdr-page-hero img { max-width: 100%; height: auto; }
.pdr-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
img[style*="object-fit"] { display: block; }
@media (max-width: 768px) {
    .pdr-card img { height: 160px; }
    img[style*="height:400px"] { height: 200px !important; }
    img[style*="height:300px"] { height: 180px !important; }
}