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

  :root {
    --theme-accent: var(--e-global-color-accent, #e8752a);
    --theme-primary: var(--e-global-color-primary, #1a1a1a);
    --theme-secondary: var(--e-global-color-secondary, #222222);
    --theme-text-color: var(--e-global-color-text, #555555);
    --orange: var(--theme-accent);
    --orange-dark: #c9601a;
    --orange-dark: color-mix(in srgb, var(--theme-accent) 82%, #000 18%);
    --dark: var(--theme-primary);
    --dark2: var(--theme-secondary);
    --gray-bg: #f5f5f5;
    --gray-bg: color-mix(in srgb, var(--theme-accent) 5%, #ffffff 95%);
    --text: var(--theme-text-color);
    --white: #fff;
    --heading: var(--theme-primary);
  }

  html { scroll-behavior: smooth; }

  html, body { margin: 0; }

  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  h1,h2,h3,h4,h5,h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--heading);
    line-height: 1.2;
    font-weight: 600;
  }

  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }
  .custom-logo-link { display: inline-flex; }
  .custom-logo { height: 38px; width: auto; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .section-pad { padding: 80px 0; }
  .site-content--boxed { padding: 80px 0; }
  .site-content--boxed .elementor { width: 100%; }
  .site-content--landing { display: block; }
  .admin-bar header { top: 32px; }

  .elementor-page .site-content,
  .elementor-page .entry-content,
  .elementor-location-single .site-content {
    width: 100%;
  }

  .entry-content > :not(.elementor),
  .site-content--boxed > .container > :not(.elementor) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .agencia-praca-global-template,
  .agencia-praca-global-template .elementor {
    width: 100%;
  }
  .agencia-praca-global-template > .elementor {
    max-width: none;
    margin: 0;
  }

  /* ── BUTTONS ── */
  .btn {
    display: inline-block;
    padding: 13px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .btn-orange { background: var(--orange); color: #fff; border: 2px solid var(--orange); }
  .btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
  .btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
  .btn-outline-white:hover { background: #fff; color: var(--dark); }
  .btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
  .btn-outline-dark:hover { background: var(--dark); color: #fff; }

  /* ── SECTION LABEL ── */
  .section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
  }
  .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 20px;
    line-height: 1.2;
  }
  .section-desc {
    font-size: 15px;
    color: var(--text);
    max-width: 560px;
    line-height: 1.8;
  }

  /* ══════════════════════════════
     TOP BAR
  ══════════════════════════════ */
  .topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
    color: #aaa;
  }
  .topbar .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topbar a { color: #aaa; }
  .topbar a:hover { color: var(--orange); }

  /* ══════════════════════════════
     NAVBAR
  ══════════════════════════════ */
  header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }
  .navbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
  .navbar-logo img { height: 38px; }
  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 6px;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-header.is-mobile-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.is-mobile-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-mobile-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .navbar-cta--mobile {
    display: none;
  }

  nav ul { display: flex; gap: 8px; align-items: center; }
  nav ul li { position: relative; }
  nav ul li a {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 14px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  nav ul li a:hover, nav ul li a.active { color: var(--orange); }

  nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--orange);
    z-index: 100;
  }
  nav ul li:hover ul { display: flex; }
  nav ul li ul li a { padding: 10px 18px; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
  nav ul li ul li a:hover { background: var(--gray-bg); color: var(--orange); }

  .page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
  }
  .page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://templatekit.jegtheme.com/adventours/wp-content/uploads/sites/231/2022/02/two-atv-riders-in-helmets-ride-in-a-circle-on-sand-e1645568779414-1024x684.jpg') center/cover no-repeat;
    opacity: 0.4;
  }
  .page-hero-content {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    text-align: center;
  }
  .page-hero-content h1 {
    color: #fff;
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 14px;
  }
  .page-hero-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }
  .page-hero-breadcrumbs span::before {
    content: '/';
    margin-right: 10px;
    color: var(--orange);
  }

  .elementor-widget.section-label-widget .elementor-heading-title {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--orange) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
  }
  .elementor-widget.section-title-widget .elementor-heading-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--heading) !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .elementor-widget.section-title-widget--small .elementor-heading-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .elementor-widget.section-desc-widget .elementor-text-editor,
  .elementor-widget.section-desc-widget .elementor-text-editor p {
    font-size: 15px;
    color: var(--text) !important;
    line-height: 1.8;
  }
  .theme-btn-orange .elementor-button {
    display: inline-block;
    padding: 13px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
    background: var(--orange) !important;
    color: #fff !important;
    border: 2px solid var(--orange) !important;
    box-shadow: none !important;
  }
  .theme-btn-orange .elementor-button:hover {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark) !important;
    color: #fff !important;
  }
  .page-hero .elementor-container,
  .hero .elementor-container {
    position: relative;
    z-index: 2;
  }
  .page-hero .elementor-widget-wrap,
  .hero .elementor-widget-wrap {
    align-content: center;
  }
  .page-hero .elementor-column,
  .page-hero .elementor-widget-wrap {
    text-align: center;
  }
  .page-hero .hero-title-widget .elementor-heading-title {
    color: #fff !important;
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 14px;
  }
  .page-hero .hero-text-widget .elementor-text-editor,
  .page-hero .hero-text-widget .elementor-text-editor p {
    color: rgba(255,255,255,0.82) !important;
    font-size: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero .elementor-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .hero .elementor-column {
    max-width: 680px;
    margin-left: calc((100vw - 1200px) / 2);
  }
  .hero .elementor-widget-wrap {
    align-content: center;
    text-align: left;
  }
  .hero .hero-title-widget .elementor-heading-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 700;
    color: #fff !important;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .hero .hero-text-widget .elementor-text-editor,
  .hero .hero-text-widget .elementor-text-editor p {
    color: rgba(255,255,255,0.82) !important;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 480px;
  }
  .about .section-desc-widget .elementor-text-editor,
  .why .section-desc-widget .elementor-text-editor,
  .tips-intro .section-desc-widget .elementor-text-editor {
    max-width: 560px;
  }
  .about-feature-list-widget .elementor-text-editor ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
  }
  .about-feature-list-widget .elementor-text-editor li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
  }
  .about-feature-list-widget .elementor-text-editor li::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    background:
      radial-gradient(circle at center, #fff 0 28%, transparent 29%),
      var(--orange);
    box-shadow: 0 6px 12px color-mix(in srgb, var(--orange) 28%, transparent);
  }
  .about-story-main .section-title-widget .elementor-heading-title,
  .about-story-card .section-title-widget .elementor-heading-title {
    margin-bottom: 16px;
  }
  .about-stat-number-widget .elementor-heading-title {
    font-size: 34px !important;
    color: var(--heading) !important;
    margin-bottom: 8px;
  }
  .about-stat-text-widget .elementor-text-editor,
  .about-stat-text-widget .elementor-text-editor p {
    color: var(--text) !important;
    font-size: 14px;
    line-height: 1.7;
  }
  .team-card--about .section-title-widget .elementor-heading-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .team-card--about .section-desc-widget .elementor-text-editor,
  .team-card--about .elementor-text-editor p {
    padding: 0 24px;
  }
  .about-pillars .team-card--about > .elementor-widget-wrap {
    min-height: 100%;
    padding: 34px 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--orange) 12%, #eee7e1 88%);
    box-shadow: 0 18px 46px rgba(24,20,16,0.07);
  }
  .tips-card .elementor-widget-wrap {
    align-content: flex-start;
  }
  .tips-card .tips-icon-box-widget .elementor-icon-box-wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .tips-icon-box-widget .elementor-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--orange) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
  }
  .tips-icon-box-widget .elementor-icon-box-title,
  .tips-icon-box-widget .elementor-icon-box-title span {
    font-size: 30px;
    color: var(--heading) !important;
  }
  .tips-icon-box-widget .elementor-icon svg,
  .tips-icon-box-widget .elementor-icon svg path,
  .contact-info-box-widget .elementor-icon svg,
  .contact-info-box-widget .elementor-icon svg path {
    fill: currentColor !important;
    color: currentColor !important;
  }
  .tips-icon-box-widget .elementor-icon-box-description {
    color: var(--text) !important;
    font-size: 16px;
    line-height: 1.8;
  }
  .cta-banner .cta-title-widget .elementor-heading-title {
    font-size: 40px;
    color: #fff !important;
    margin-bottom: 16px;
    text-align: center;
  }
  .cta-banner .cta-text-widget .elementor-text-editor,
  .cta-banner .cta-text-widget .elementor-text-editor p {
    color: rgba(255,255,255,0.75) !important;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .cta-banner .theme-btn-orange {
    text-align: center;
  }
  .contact-page > .elementor-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: start;
  }
  .contact-page .elementor-top-column {
    width: auto;
  }
  .contact-copy,
  .contact-form-card,
  .contact-map-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(24,20,16,0.08);
  }
  .contact-copy > .elementor-widget-wrap,
  .contact-form-card > .elementor-widget-wrap {
    padding: 38px;
  }
  .contact-copy .section-desc-widget .elementor-text-editor {
    max-width: none;
  }
  .contact-info-box-widget .elementor-icon-box-wrapper {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    padding: 22px;
    border-radius: 8px;
    background: #fffaf7;
    border: 1px solid #eee7e1;
  }
  .contact-info-box-widget .elementor-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--orange) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-info-box-widget .elementor-icon-box-title,
  .contact-info-box-widget .elementor-icon-box-title span {
    font-size: 20px;
    color: var(--heading) !important;
  }
  .contact-info-box-widget .elementor-icon-box-description {
    color: var(--text) !important;
  }
  .contact-info-box-widget .elementor-icon-box-content {
    flex: 1;
  }
  .contact-form-card {
    background: linear-gradient(180deg, #1e2327 0%, #101416 100%);
  }
  .contact-form-card .section-label-widget .elementor-heading-title,
  .contact-form-card .section-title-widget .elementor-heading-title,
  .contact-form-card .section-title-widget .elementor-heading-title a {
    color: #fff !important;
  }
  .contact-form-card .section-desc-widget .elementor-text-editor,
  .contact-form-card .section-desc-widget .elementor-text-editor p,
  .contact-form-card .elementor-widget-shortcode,
  .contact-form-card .elementor-widget-shortcode p,
  .contact-form-card .elementor-widget-shortcode label {
    color: rgba(255,255,255,0.8) !important;
  }
  .contact-form-card .contact-form-live,
  .contact-form-card .elementor-widget-shortcode {
    margin-top: 8px;
  }
  .contact-form-card .wpcf7-form p {
    margin-bottom: 16px;
  }
  .contact-form-card .wpcf7-form label {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff !important;
  }
  .contact-form-card .wpcf7-form input:not([type="submit"]),
  .contact-form-card .wpcf7-form textarea,
  .contact-form-card .wpcf7-form select {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 6px;
    padding: 15px 16px;
    outline: none;
  }
  .contact-form-card .wpcf7-form input:not([type="submit"])::placeholder,
  .contact-form-card .wpcf7-form textarea::placeholder {
    color: rgba(255,255,255,0.45);
  }
  .contact-form-card .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
  }
  .contact-form-card .wpcf7-form .wpcf7-submit {
    display: inline-block;
    padding: 13px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--orange) !important;
    color: #fff !important;
    border: 2px solid var(--orange) !important;
  }
  .contact-form-card .wpcf7-form .wpcf7-submit:hover {
    background: var(--orange-dark) !important;
    border-color: var(--orange-dark) !important;
  }
  .contact-form-card .wpcf7-response-output,
  .contact-form-card .wpcf7-not-valid-tip {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
    margin-left: 0;
    margin-right: 0;
  }
  .contact-map-card {
    overflow: hidden;
  }
  .contact-map-card iframe {
    width: 100%;
    min-height: 460px;
    border: 0;
    display: block;
  }
  .elementor .elementor-widget.hero-title-widget .elementor-heading-title,
  .elementor .elementor-widget.hero-title-widget .elementor-heading-title a {
    color: #fff !important;
  }
  .elementor .elementor-widget.hero-text-widget .elementor-text-editor,
  .elementor .elementor-widget.hero-text-widget .elementor-text-editor p {
    color: rgba(255,255,255,0.82) !important;
  }
  .elementor .elementor-widget.section-title-widget .elementor-heading-title,
  .elementor .elementor-widget.section-title-widget .elementor-heading-title a {
    color: var(--heading) !important;
  }
  .elementor .elementor-widget.section-label-widget .elementor-heading-title,
  .elementor .elementor-widget.section-label-widget .elementor-heading-title a {
    color: var(--orange) !important;
  }
  .elementor .elementor-widget.section-desc-widget .elementor-text-editor,
  .elementor .elementor-widget.section-desc-widget .elementor-text-editor p,
  .elementor .elementor-widget.cta-text-widget .elementor-text-editor,
  .elementor .elementor-widget.cta-text-widget .elementor-text-editor p {
    color: var(--text) !important;
  }
  .elementor .cta-banner .elementor-widget.cta-text-widget .elementor-text-editor,
  .elementor .cta-banner .elementor-widget.cta-text-widget .elementor-text-editor p {
    color: rgba(255,255,255,0.75) !important;
  }
  .elementor .elementor-widget.theme-btn-orange .elementor-button,
  .elementor .elementor-widget.theme-btn-orange .elementor-button:hover,
  .elementor .elementor-widget.theme-btn-orange .elementor-button:focus {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
  }
  .elementor .cta-banner .elementor-widget.theme-btn-orange .elementor-button,
  .elementor .cta-banner .elementor-widget.theme-btn-orange .elementor-button:hover,
  .elementor .cta-banner .elementor-widget.theme-btn-orange .elementor-button:focus {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
  }
  .site-content > .elementor {
    width: 100%;
  }
  .hero.elementor-section-stretched,
  .page-hero.elementor-section-stretched {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    margin-left: -50vw !important;
    right: auto !important;
  }

  /* ══════════════════════════════
     HERO
  ══════════════════════════════ */
  .hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: url('https://templatekit.jegtheme.com/adventours/wp-content/uploads/sites/231/2022/02/summer-offroad-adventure-on-atv-in-sand-quarry-1024x639.jpg') center/cover no-repeat;
    opacity: 0.55;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 680px;
    padding: 0 20px;
    margin-left: calc((100vw - 1200px)/2);
    animation: fadeUp 0.9s ease both;
  }
  @keyframes fadeUp {
    from { opacity:0; transform:translateY(30px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .reveal-on-scroll {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--reveal-delay);
  }
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .hero-content h1 {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .hero-content p { color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 38px; max-width: 480px; }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .play-btn {
    display: flex; align-items: center; gap: 10px;
    color: #fff; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.2s;
  }
  .play-btn:hover { color: var(--orange); }
  .play-btn .icon {
    width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    transition: all 0.3s;
  }
  .play-btn:hover .icon { background: var(--orange); border-color: var(--orange); }

  /* ══════════════════════════════
     PARTNER LOGOS
  ══════════════════════════════ */
  .partners { background: #fff; padding: 40px 0; border-bottom: 1px solid #eee; }
  .partners-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 40px 60px; }
  .partners img { height: 32px; filter: grayscale(1) opacity(0.5); transition: filter 0.3s; }
  .partners img:hover { filter: none; }

  /* ══════════════════════════════
     ABOUT SECTION
  ══════════════════════════════ */
  .about { background: #fff; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .about-showcase {
    padding-top: 90px;
  }
  .about-showcase > .elementor-container {
    align-items: center;
    gap: 48px;
  }
  .about-showcase-copy .section-desc-widget .elementor-text-editor,
  .about-showcase-copy .section-desc-widget .elementor-text-editor p {
    max-width: 620px;
  }
  .about-showcase-media {
    position: relative;
    min-height: 540px;
  }
  .about-showcase-media > .elementor-widget-wrap {
    position: relative;
    min-height: inherit;
  }
  .about-showcase-main-image,
  .about-showcase-secondary-image {
    position: absolute;
  }
  .about-showcase-main-image {
    inset: 0 52px 82px 0;
  }
  .about-showcase-secondary-image {
    right: 0;
    bottom: 0;
    width: 52%;
  }
  .about-showcase-main-image img,
  .about-showcase-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(24,20,16,0.14);
  }
  .about-showcase-main-image img {
    min-height: 460px;
  }
  .about-showcase-secondary-image img {
    min-height: 220px;
    border: 8px solid #fff;
  }
  .about-floating-badge-title,
  .about-floating-badge-text {
    position: absolute;
    left: 26px;
    z-index: 2;
  }
  .about-floating-badge-title {
    bottom: 120px;
    display: inline-flex;
    align-items: center;
    padding: 16px 18px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    background: var(--orange);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 22px 50px color-mix(in srgb, var(--orange) 34%, transparent);
  }
  .about-floating-badge-text {
    bottom: 26px;
    max-width: 260px;
    padding: 16px 18px 18px;
    background: var(--theme-primary);
    border-radius: 0 18px 18px 18px;
    box-shadow: 0 22px 50px rgba(18, 14, 10, 0.18);
  }
  .about-floating-badge-text .elementor-text-editor,
  .about-floating-badge-text .elementor-text-editor p {
    color: rgba(255,255,255,0.82) !important;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
  }
  .about-stats {
    padding: 12px 0 36px;
  }
  .about-stats > .elementor-container {
    gap: 22px;
  }
  .about-stat-card > .elementor-widget-wrap {
    min-height: 100%;
    padding: 28px 24px;
    border-radius: 22px;
    text-align: center;
    background: linear-gradient(180deg, color-mix(in srgb, var(--orange) 10%, #fff 90%) 0%, #fff 100%);
    border: 1px solid color-mix(in srgb, var(--orange) 14%, #ede4dc 86%);
    box-shadow: 0 18px 46px rgba(24,20,16,0.07);
  }
  .about-story {
    padding-top: 28px;
  }
  .about-story > .elementor-container {
    gap: 26px;
  }

  .about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
    position: relative;
  }
  .about-images img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
  .about-images .img1 { grid-row: 1; grid-column: 1; }
  .about-images .img2 { grid-row: 1/3; grid-column: 2; }
  .about-images .img3 { grid-row: 2; grid-column: 1; }

  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; margin: 24px 0 32px; }
  .about-features li {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--text); font-weight: 500;
  }
  .about-features li::before {
    content: '✓'; background: var(--orange); color: #fff;
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0;
  }

  /* ══════════════════════════════
     STATS
  ══════════════════════════════ */
  .stats { background: var(--orange); padding: 60px 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
  .stat-item h3 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1; }
  .stat-item p { color: rgba(255,255,255,0.85); font-size: 15px; margin-top: 6px; font-family: 'Oswald', sans-serif; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

  /* ══════════════════════════════
     SERVICES
  ══════════════════════════════ */
  .services { background: var(--gray-bg); }
  .services-header { text-align: center; margin-bottom: 50px; }
  .services-header .section-desc { margin: 0 auto; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

  .service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
  .service-card-img { position: relative; height: 240px; overflow: hidden; }
  .service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .service-card:hover .service-card-img img { transform: scale(1.06); }
  .service-card-body { padding: 28px; }
  .service-card-body h3 { font-size: 22px; margin-bottom: 12px; }
  .service-card-body p { font-size: 14px; margin-bottom: 20px; color: var(--text); }
  .link-arrow {
    font-family: 'Oswald', sans-serif; font-size: 14px; color: var(--orange);
    text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .link-arrow:hover { gap: 10px; }

  .services-more { text-align: center; margin-top: 40px; }

  /* ══════════════════════════════
     TEAM
  ══════════════════════════════ */
  .team { background: #fff; }
  .team-header { text-align: center; margin-bottom: 50px; }
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .team-card { text-align: center; }
  .team-avatar {
    width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid var(--gray-bg);
    transition: border-color 0.3s;
  }
  .team-card:hover .team-avatar { border-color: var(--orange); }
  .team-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .team-card h4 { font-size: 18px; margin-bottom: 4px; }
  .team-card .role { font-size: 13px; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 12px; display: block; }
  .team-card p { font-size: 14px; color: var(--text); }
  .team-grid--about { grid-template-columns: repeat(3, 1fr); }
  .team-card--about {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding-bottom: 28px;
  }
  .team-photo { height: 360px; overflow: hidden; margin-bottom: 22px; }
  .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .team-card--about:hover .team-photo img { transform: scale(1.05); }
  .team-card--about h4 { font-size: 24px; }
  .team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
  }
  .team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-bg);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .team-social a:hover {
    background: var(--orange);
    color: #fff;
  }

  /* ══════════════════════════════
     TESTIMONIALS
  ══════════════════════════════ */
  .testimonials {
    background: var(--dark) url('https://templatekit.jegtheme.com/adventours/wp-content/uploads/sites/231/2022/02/germany-bavaria-faistenberg-family-on-a-bicycle-tour-e1645667990614-1024x668.jpg') center/cover no-repeat;
    background-blend-mode: multiply;
    position: relative;
  }
  .testimonials::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(20,20,20,0.75);
  }
  .testimonials .container { position: relative; z-index: 1; }
  .testimonials-header { text-align: center; margin-bottom: 50px; }
  .testimonials-header .section-label { color: var(--orange); }
  .testimonials-header .section-title { color: #fff; }
  .testimonials-header .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto; }

  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .testi-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 32px;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
  }
  .testi-card:hover { background: rgba(255,255,255,0.12); }
  .testi-stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-card p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
  .testi-author strong { color: #fff; font-family: 'Oswald', sans-serif; font-size: 16px; display: block; }
  .testi-author span { color: rgba(255,255,255,0.55); font-size: 12px; }

  /* ══════════════════════════════
     WHY CHOOSE US
  ══════════════════════════════ */
  .why { background: var(--gray-bg); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .why-img { position: relative; }
  .why-img img { width: 100%; border-radius: 6px; }
  .why-img::after {
    content: ''; position: absolute;
    bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border: 6px solid var(--orange);
    border-radius: 6px;
    z-index: -1;
  }
  .why-features { margin: 30px 0 36px; display: flex; flex-direction: column; gap: 20px; }
  .why-feature { display: flex; gap: 18px; align-items: flex-start; }
  .why-feature-icon {
    width: 54px; height: 54px; background: var(--orange); border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; flex-shrink: 0;
    transition: background 0.3s;
  }
  .why-feature:hover .why-feature-icon { background: var(--dark); }
  .why-feature h4 { font-size: 18px; margin-bottom: 4px; }
  .why-feature p { font-size: 14px; color: var(--text); }

  .about-story { background: #fff; }
  .about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: start;
  }
  .about-story-main,
  .about-story-card {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--orange) 4%, #fff 96%) 100%);
    border: 1px solid color-mix(in srgb, var(--orange) 12%, #eee7e1 88%);
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 20px 52px rgba(24,20,16,0.08);
  }
  .about-story-main h3,
  .about-story-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .about-story-main p,
  .about-story-card p {
    font-size: 15px;
    color: var(--text);
  }
  .about-story-main p + p,
  .about-story-card p + p { margin-top: 14px; }
  .about-story-side {
    display: grid;
    gap: 24px;
  }

  /* ══════════════════════════════
     CONTACT
  ══════════════════════════════ */
  .contact-page {
    background: linear-gradient(180deg, #fff 0%, #f7f4ef 100%);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: start;
  }
  .contact-copy,
  .contact-form-card,
  .contact-map-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(24,20,16,0.08);
  }
  .contact-copy,
  .contact-form-card {
    padding: 38px;
  }
  .contact-copy .section-desc {
    max-width: none;
  }
  .contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
  }
  .contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 8px;
    background: #fffaf7;
    border: 1px solid #eee7e1;
  }
  .contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .contact-info-card p {
    margin: 0;
  }
  .contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-social {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid #eee;
  }
  .contact-social h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .contact-social .social-links a {
    background: var(--dark);
    color: #fff;
  }
  .contact-social .social-links a:hover {
    background: var(--orange);
  }

  .contact-form-shell {
    position: sticky;
    top: 100px;
  }
  .contact-form-card {
    background: linear-gradient(180deg, #1e2327 0%, #101416 100%);
    color: rgba(255,255,255,0.8);
  }
  .contact-form-card .section-label,
  .contact-form-card h3,
  .contact-form-card label {
    color: #fff;
  }
  .contact-form-card h3 {
    font-size: 34px;
    margin-bottom: 10px;
  }
  .contact-form-card p {
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
  }
  .contact-form-live,
  .contact-form-empty {
    margin-top: 8px;
  }
  .contact-form-empty {
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 24px;
    background: rgba(255,255,255,0.05);
  }
  .contact-form-empty p:last-child {
    margin-bottom: 0;
  }
  .contact-form-live .wpcf7 {
    width: 100%;
  }
  .contact-form-live p {
    margin-bottom: 16px;
  }
  .contact-form-live label {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 10px;
    color: #fff;
  }
  .contact-form-live input:not([type="submit"]),
  .contact-form-live textarea,
  .contact-form-live select {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 6px;
    padding: 15px 16px;
    outline: none;
  }
  .contact-form-live input:not([type="submit"])::placeholder,
  .contact-form-live textarea::placeholder {
    color: rgba(255,255,255,0.45);
  }
  .contact-form-live .wpcf7-form-control-wrap {
    display: block;
    margin-top: 8px;
  }
  .contact-form-live .wpcf7-submit {
    display: inline-block;
    padding: 13px 32px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s;
    cursor: pointer;
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
  }
  .contact-form-live .wpcf7-submit:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
  }
  .contact-form-live .wpcf7-spinner {
    filter: brightness(2);
  }
  .contact-form-live .wpcf7-response-output,
  .contact-form-live .wpcf7-not-valid-tip {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
    margin-left: 0;
    margin-right: 0;
  }

  .contact-map-section {
    background: linear-gradient(180deg, #f7f4ef 0%, #fff 100%);
    padding: 0 0 80px;
  }
  .contact-map-card {
    overflow: hidden;
  }
  .contact-map-card iframe {
    width: 100%;
    min-height: 460px;
    border: 0;
    display: block;
  }

  .tips-page {
    background: transparent;
    padding: 18px 0;
  }
  .tips-intro {
    padding: 72px 0 26px;
    text-align: center;
  }
  .tips-intro > .elementor-container {
    max-width: 860px;
    padding: 44px 54px;
    border-radius: 28px;
    background:
      radial-gradient(circle at top right, color-mix(in srgb, var(--orange) 10%, transparent) 0, transparent 34%),
      linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--orange) 6%, #fff 94%) 100%);
    border: 1px solid color-mix(in srgb, var(--orange) 16%, #ede4dc 84%);
    box-shadow: 0 22px 60px rgba(24, 20, 16, 0.08);
    position: relative;
    overflow: hidden;
  }
  .tips-intro > .elementor-container::after {
    content: '';
    position: absolute;
    inset: auto auto -70px -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--orange) 10%, transparent);
    filter: blur(8px);
  }
  .tips-intro .section-label-widget,
  .tips-intro .section-title-widget,
  .tips-intro .section-desc-widget {
    position: relative;
    z-index: 1;
  }
  .tips-intro .section-desc-widget .elementor-text-editor,
  .tips-intro .section-desc-widget .elementor-text-editor p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .tips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .tips-page:not(.tips-intro) > .elementor-container {
    gap: 28px;
  }
  .tips-card {
    background: transparent;
  }
  .tips-card > .elementor-widget-wrap {
    min-height: 100%;
    padding: 34px 36px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 100%);
    border: 1px solid color-mix(in srgb, var(--orange) 14%, #eee7e1 86%);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(24, 20, 16, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }
  .tips-card > .elementor-widget-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(24, 20, 16, 0.12);
    border-color: color-mix(in srgb, var(--orange) 34%, #eee7e1 66%);
  }
  .tips-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
  }
  .tips-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .tips-card p {
    margin: 0;
    color: var(--text);
  }
  .tips-featured-passeios {
    background: transparent;
    padding: 42px 0 14px;
  }
  .tips-featured-passeios .services {
    background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--orange) 4%, #fff 96%) 100%);
    border-radius: 30px;
    border: 1px solid color-mix(in srgb, var(--orange) 12%, #efe5dc 88%);
    box-shadow: 0 22px 60px rgba(24, 20, 16, 0.08);
  }
  .tips-featured-passeios .services-header {
    margin-bottom: 36px;
  }
  .tips-featured-passeios .services-header .section-title {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .tips-featured-passeios .services-header .section-desc {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ══════════════════════════════
     PRICING
  ══════════════════════════════ */
  .pricing { background: #fff; }
  .pricing-header { text-align: center; margin-bottom: 50px; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .pricing-card {
    border: 2px solid #eee; border-radius: 6px; padding: 40px 32px;
    text-align: center; transition: all 0.3s; position: relative;
  }
  .pricing-card.popular {
    border-color: var(--orange); background: var(--orange);
    transform: scale(1.03);
    box-shadow: 0 16px 50px rgba(232,117,42,0.3);
  }
  .pricing-card:not(.popular):hover { border-color: var(--orange); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
  .pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--dark); color: #fff;
    font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    padding: 4px 16px; border-radius: 20px;
  }
  .pricing-label { font-family: 'Oswald', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 10px; display: block; }
  .pricing-card.popular .pricing-label { color: rgba(255,255,255,0.8); }
  .pricing-price { font-family: 'Oswald', sans-serif; font-size: 48px; font-weight: 700; color: var(--dark); line-height: 1; }
  .pricing-card.popular .pricing-price { color: #fff; }
  .pricing-period { font-size: 14px; color: var(--text); margin-bottom: 28px; display: block; }
  .pricing-card.popular .pricing-period { color: rgba(255,255,255,0.8); }
  .pricing-features { margin-bottom: 32px; }
  .pricing-features li {
    padding: 10px 0; border-bottom: 1px solid #f0f0f0;
    font-size: 14px; color: var(--text);
  }
  .pricing-card.popular .pricing-features li { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
  .btn-white { background: #fff; color: var(--orange); border: 2px solid #fff; }
  .btn-white:hover { background: var(--dark); color: #fff; border-color: var(--dark); }

  /* ══════════════════════════════
     GALLERY TABS
  ══════════════════════════════ */
  .gallery-section { background: var(--gray-bg); }
  .gallery-header { text-align: center; margin-bottom: 40px; }
  .gallery-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
  .gallery-tab {
    padding: 10px 24px; border-radius: 3px;
    border: 2px solid #ddd; background: #fff;
    font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
    transition: all 0.2s; color: var(--text);
  }
  .gallery-tab.active, .gallery-tab:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .gallery-item { overflow: hidden; border-radius: 4px; aspect-ratio: 1; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .gallery-item:hover img { transform: scale(1.08); }

  /* ══════════════════════════════
     CTA BANNER
  ══════════════════════════════ */
  .cta-banner {
    background: var(--dark);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://templatekit.jegtheme.com/adventours/wp-content/uploads/sites/231/2022/02/column-of-atvs-in-the-desert-at-sunset-sunny-desert-e1645646822155.jpg') center/cover;
    opacity: 0.15;
  }
  .cta-banner .container { position: relative; z-index: 1; }
  .cta-banner h2 { font-size: 40px; color: #fff; margin-bottom: 16px; }
  .cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }

  /* ══════════════════════════════
     BLOG
  ══════════════════════════════ */
  .blog { background: #fff; }
  .blog-header { text-align: center; margin-bottom: 50px; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-card {
    border-radius: 6px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
  .blog-img { height: 220px; overflow: hidden; }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .blog-card:hover .blog-img img { transform: scale(1.06); }
  .blog-body { padding: 26px; }
  .blog-cat {
    display: inline-block; background: var(--orange); color: #fff;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    padding: 3px 10px; border-radius: 2px; margin-bottom: 12px;
  }
  .blog-body h3 { font-size: 20px; margin-bottom: 8px; line-height: 1.3; }
  .blog-body h3 a:hover { color: var(--orange); }
  .blog-date { font-size: 13px; color: #aaa; margin-bottom: 12px; display: block; }
  .blog-body p { font-size: 14px; color: var(--text); margin-bottom: 18px; }

  /* ══════════════════════════════
     NEWSLETTER
  ══════════════════════════════ */
  .newsletter { background: var(--orange); padding: 60px 0; }
  .newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .newsletter-text h3 { font-size: 30px; color: #fff; margin-bottom: 6px; }
  .newsletter-text p { color: rgba(255,255,255,0.85); }
  .newsletter-form { display: flex; gap: 0; flex: 0 0 auto; }
  .newsletter-form input {
    width: 300px; padding: 14px 20px;
    border: none; border-radius: 3px 0 0 3px;
    font-size: 14px; outline: none;
  }
  .newsletter-form button {
    padding: 14px 28px; background: var(--dark); color: #fff;
    border: none; border-radius: 0 3px 3px 0;
    font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: #000; }

  /* ══════════════════════════════
     FOOTER
  ══════════════════════════════ */
  footer { background: var(--dark2); padding: 70px 0 0; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-about img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 20px; }
  .footer-about p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 20px; }
  .footer-contacts li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; color: rgba(255,255,255,0.6); font-size: 14px; }
  .footer-contacts li i { color: var(--orange); margin-top: 3px; font-size: 13px; }

  .footer-col h4 {
    font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
    color: #fff; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 24px; padding-bottom: 12px;
    border-bottom: 2px solid var(--orange); display: inline-block;
  }
  .footer-links li { margin-bottom: 10px; }
  .footer-links li a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
  .footer-links li a::before { content: '›'; color: var(--orange); font-size: 16px; }
  .footer-links li a:hover { color: var(--orange); }

  .work-hours p { color: rgba(255,255,255,0.55); font-size: 14px; margin-bottom: 16px; }
  .social-links { display: flex; gap: 10px; margin-top: 20px; }
  .social-links a {
    width: 38px; height: 38px; border-radius: 4px;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center; font-size: 15px;
    transition: all 0.2s;
  }
  .social-links a:hover { background: var(--orange); color: #fff; }

  .footer-bottom {
    padding: 20px 0; text-align: center;
    color: rgba(255,255,255,0.35); font-size: 13px;
  }

  /* ══════════════════════════════
     PASSEIOS
  ══════════════════════════════ */
  .passeio-hero {
    min-height: 520px;
  }
  .passeio-hero::after,
  .passeio-archive-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14,18,20,0.88), rgba(14,18,20,0.54));
  }
  .passeio-hero-bg,
  .passeio-archive-hero .page-hero-bg {
    opacity: 1;
  }
  .passeio-hero-content {
    text-align: left;
    max-width: 760px;
  }
  .passeio-hero-content > * {
    position: relative;
    z-index: 2;
  }
  .passeio-hero-summary {
    color: rgba(255,255,255,0.82);
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
  }
  .passeio-hero-content .passeio-hero-summary {
    margin: 0 0 26px;
  }
  .passeio-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
  }
  .passeio-hero-tags a,
  .passeio-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.2s;
  }
  .passeio-hero-tags a:hover,
  .passeio-filter-chip:hover,
  .passeio-filter-chip.is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
  }

  .passeio-single-main {
    background: linear-gradient(180deg, #fff 0%, #f7f3ef 100%);
    padding: 80px 0;
  }
  .passeio-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    gap: 34px;
    align-items: start;
  }
  .passeio-panel,
  .passeio-sidebar-card,
  .passeio-empty-state {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(24, 20, 16, 0.08);
  }
  .passeio-panel {
    padding: 38px;
  }
  .passeio-panel + .passeio-panel {
    margin-top: 28px;
  }
  .passeio-content-text > * + * {
    margin-top: 16px;
  }
  .passeio-content-text ul,
  .passeio-content-text ol {
    padding-left: 20px;
    list-style: disc;
  }
  .passeio-content-text ol {
    list-style: decimal;
  }
  .passeio-content-text strong {
    color: var(--heading);
  }

  .passeio-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .passeio-highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 6px;
    background: var(--gray-bg);
  }
  .passeio-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .passeio-highlight-item p {
    margin: 0;
    color: var(--heading);
    font-weight: 600;
  }

  .passeio-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .passeio-info-card {
    padding: 22px 24px;
    border: 1px solid #eee7e1;
    border-radius: 8px;
    background: #fffaf7;
  }
  .passeio-info-card strong,
  .passeio-sidebar-list strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--heading);
  }
  .passeio-info-card span,
  .passeio-sidebar-list span {
    color: var(--text);
  }

  .passeio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .passeio-gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 0.78;
  }
  .passeio-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
  }
  .passeio-gallery-item:hover img {
    transform: scale(1.05);
  }

  .passeio-map-embed,
  .passeio-map-embed iframe {
    width: 100%;
  }
  .passeio-map-embed iframe {
    min-height: 420px;
    border: 0;
    border-radius: 8px;
  }

  .passeio-sidebar {
    position: sticky;
    top: 100px;
  }
  .passeio-sidebar-card {
    padding: 32px;
    background: linear-gradient(180deg, #1e2327 0%, #101416 100%);
    color: rgba(255,255,255,0.82);
  }
  .passeio-sidebar-card .section-label,
  .passeio-sidebar-card h2,
  .passeio-sidebar-card strong {
    color: #fff;
  }
  .passeio-sidebar-card h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }
  .passeio-sidebar-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 30px;
  }
  .passeio-sidebar-list li {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .passeio-sidebar-cta {
    width: 100%;
    text-align: center;
  }

  .passeio-archive-section {
    background: linear-gradient(180deg, #fff 0%, #f3f4f5 100%);
  }
  .passeio-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
  }
  .passeio-filter-row .passeio-filter-chip {
    background: #fff;
    color: var(--dark);
    border-color: #ece1d8;
  }
  .passeio-card-grid .service-card-body {
    min-height: 220px;
  }
  .passeio-empty-state {
    padding: 44px;
    text-align: center;
  }
  .passeio-empty-state h2 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 992px) {
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-images { grid-template-rows: 200px 200px; }
    .services-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-card.popular { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .passeio-single-grid,
    .passeio-highlights-grid,
    .contact-info-grid,
    .contact-form-row,
    .passeio-info-grid,
    .tips-grid { grid-template-columns: 1fr; }
    .passeio-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .passeio-sidebar,
    .contact-form-shell { position: static; }
    .contact-page > .elementor-container {
      grid-template-columns: 1fr;
    }
    .about-showcase > .elementor-container,
    .about-stats > .elementor-container,
    .about-story > .elementor-container {
      display: grid;
      grid-template-columns: 1fr;
    }
    .about-showcase-media {
      min-height: 460px;
      order: -1;
    }
    .about-stat-card > .elementor-widget-wrap {
      padding: 24px 22px;
    }
    .tips-intro {
      padding-top: 56px;
    }
    .tips-intro > .elementor-container {
      padding: 36px 30px;
      border-radius: 22px;
    }
    .hero .elementor-column {
      margin-left: 20px;
    }
    .site-header {
      position: sticky;
    }
    .navbar {
      position: relative;
      padding: 14px 0;
      min-height: 78px;
    }
    .navbar-logo img,
    .custom-logo {
      height: 32px;
    }
    .menu-toggle {
      display: inline-flex;
    }
    .navbar-cta--desktop {
      display: none;
    }
    .primary-nav {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 22px 50px rgba(18, 14, 10, 0.16);
      padding: 18px;
      z-index: 50;
    }
    .site-header.is-mobile-open .primary-nav {
      display: block;
    }
    .primary-nav ul {
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
    }
    .primary-nav ul li a {
      padding: 12px 10px;
      border-bottom: 1px solid #f1ece7;
    }
    .primary-nav ul li:last-child a {
      border-bottom: 0;
    }
    .navbar-cta--mobile {
      display: inline-flex;
      width: 100%;
      margin-top: 14px;
      justify-content: center;
    }
    .hero-content { margin-left: 20px; }
  }
  @media (max-width: 600px) {
    .services-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
    .team-grid--about { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .passeio-gallery-grid { grid-template-columns: 1fr; }
    .passeio-panel,
    .passeio-sidebar-card,
    .passeio-empty-state { padding: 26px; }
    .passeio-hero { min-height: 440px; }
    .passeio-sidebar-card h2 { font-size: 28px; }
    .newsletter-inner { flex-direction: column; }
    .newsletter-form { width: 100%; flex-direction: column; }
    .newsletter-form input { width: 100%; border-radius: 3px; }
    .newsletter-form button { border-radius: 3px; }
    .footer-grid { grid-template-columns: 1fr; }
    .container {
      padding: 0 16px;
    }
    .navbar {
      min-height: 72px;
    }
    .menu-toggle {
      width: 44px;
      height: 44px;
    }
    .page-hero {
      min-height: 300px;
    }
    .page-hero-content {
      padding: 38px 0;
    }
    .page-hero-content h1 {
      font-size: clamp(34px, 9vw, 52px);
    }
    .page-hero-breadcrumbs {
      font-size: 12px;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .tips-card > .elementor-widget-wrap {
      padding: 28px 24px;
      border-radius: 18px;
    }
    .about-feature-list-widget .elementor-text-editor ul {
      grid-template-columns: 1fr;
    }
    .about-showcase {
      padding-top: 56px;
    }
    .about-showcase-media {
      min-height: 360px;
    }
    .about-showcase-main-image {
      inset: 0 26px 70px 0;
    }
    .about-showcase-secondary-image {
      width: 58%;
    }
    .about-showcase-main-image img {
      min-height: 300px;
    }
    .about-showcase-secondary-image img {
      min-height: 160px;
    }
    .about-floating-badge-title {
      left: 16px;
      bottom: 98px;
      font-size: 30px;
      padding: 12px 14px 0;
    }
    .about-floating-badge-text {
      left: 16px;
      bottom: 18px;
      max-width: 220px;
      padding: 12px 14px 14px;
    }
    .tips-icon-box-widget .elementor-icon-box-title,
    .tips-icon-box-widget .elementor-icon-box-title span {
      font-size: 24px;
    }
    .tips-featured-passeios .services {
      border-radius: 20px;
    }
    .hero .elementor-column {
      margin-left: 0;
      max-width: 100%;
    }
  }

  @media (max-width: 782px) {
    .admin-bar header { top: 46px; }
  }
