  /* ====================================
     GLOBAL CSS FOR DOGUE WEBSITE
     ==================================== */

  /* Base styles and resets */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  @font-face {
    font-family: 'CooperBlack';
    src: url('/assets/fonts/COOPBL.TTF') format('truetype');
  }

  .hide {
    display:none;
  }

  :root {
    /* Color Palette */
    --primary: #a37cc7;
    --primary-light: #c7a9e6;
    --primary-lighter: #d3b5f2;
    --primary-lightest: #e8d7f7;
    --primary-lightest-transparent: rgba(232, 215, 247, 0.5);
    --primary-dark: #8259a3;
    --secondary: #6a8c9e;
    --secondary-light: #a7c8db;
    --accent: #b77f7a;

    /* Text Colors */
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --text-lightest: #888;

    /* Background Colors */
    --bg-primary: #fdfbff;
    --bg-secondary: #f7f5fa;
    --bg-tertiary: #f1ebf8;
    --bg-card: #ffffff;

    /* Border Colors */
    --border-light: #e0d5eb;
    --border-lighter: #f5eefc;

    /* Success/Error Colors */
    --success: #6dca89;
    --error: #ff6b6b;

    /* Animation Timing */
    --transition-fast: 0.2s;
    --transition-default: 0.3s;
    --transition-slow: 0.5s;
    --transition-very-slow: 0.8s;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-xxl: 80px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-circle: 50%;

    /* Box Shadows */
    --shadow-sm: 0 4px 10px rgba(167, 139, 199, 0.07);
    --shadow-md: 0 8px 20px rgba(167, 139, 199, 0.1);
    --shadow-lg: 0 15px 40px rgba(167, 139, 199, 0.15);
    --shadow-btn: 0 6px 15px rgba(167, 139, 199, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    --gradient-primary-light: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
    --gradient-bg: linear-gradient(135deg, #fdfbff 0%, #f7f5fa 100%);
    --gradient-pastel: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'CooperBlack', serif;
  }

  /* Typography */
  body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--bg-primary);
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    line-height: 1.3;
  }

  h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
  }

  h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  h5 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  p {
    margin-bottom: 1rem;
  }

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

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

  /* Utility Classes */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .section {
    padding: 100px 0;
    position: relative;
  }

  .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--primary);
  }

  .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
  }

  /* Buttons */
  .btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-default) ease;
    box-shadow: var(--shadow-btn);
    text-align: center;
  }

  .btn:hover,
  .btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
    background: var(--gradient-primary-light);
    color: white;
  }

  .btn:active {
    transform: translateY(1px);
  }

  .btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary-lightest);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.1);
  }

  .btn-secondary:hover,
  .btn-secondary:focus {
    background: var(--primary-lightest-transparent);
    color: var(--primary);
    border-color: var(--primary-light);
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
  }

  .btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  /* Cards */
  .card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-default) ease, box-shadow var(--transition-default) ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  /* Form Elements */
  input,
  textarea,
  select {
    font-family: var(--font-primary);
    font-size: 1rem;
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background-color: var(--bg-card);
    transition: border-color var(--transition-default) ease, box-shadow var(--transition-default) ease;
  }

  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(163, 124, 199, 0.1);
  }

  label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
  }

  ::placeholder {
    color: var(--text-lightest);
    opacity: 0.7;
  }

  /* Animation Utility Classes */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-very-slow) ease, transform var(--transition-very-slow) ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--transition-very-slow) ease, transform var(--transition-very-slow) ease;
  }

  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-very-slow) ease, transform var(--transition-very-slow) ease;
  }

  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity var(--transition-very-slow) ease, transform var(--transition-very-slow) ease;
  }

  .scale-in.visible {
    opacity: 1;
    transform: scale(1);
  }

  /* Floating animation */
  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .float {
    animation: float 5s ease-in-out infinite;
  }

  .float-delayed {
    animation: float 5s ease-in-out 1.5s infinite;
  }

  /* Shimmer animation for hover effects */
  @keyframes shimmer {
    0% {
      opacity: 0;
      transform: translateX(-100%) rotate(10deg);
    }

    100% {
      opacity: 0.3;
      transform: translateX(100%) rotate(10deg);
    }
  }

  /* Box shadow animation */
  @keyframes shadow-pulse {

    0%,
    100% {
      box-shadow: 0 10px 25px rgba(167, 139, 199, 0.1);
    }

    50% {
      box-shadow: 0 15px 35px rgba(167, 139, 199, 0.2);
    }
  }

  /* Animated background elements */
  .bg-shape {
    position: absolute;
    border-radius: var(--radius-circle);
    opacity: 0.05;
    background: var(--gradient-primary);
    z-index: -1;
    pointer-events: none;
  }

  /* Pastel Background Pattern */
  .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a37cc7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
  }

  /* Dividers */
  .divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(232, 215, 247, 0), rgba(232, 215, 247, 1), rgba(232, 215, 247, 0));
    margin: 40px 0;
  }

  .divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, rgba(232, 215, 247, 0), rgba(232, 215, 247, 1), rgba(232, 215, 247, 0));
    margin: 0 40px;
  }

  /* Responsive Styles */
  @media (max-width: 1200px) {
    .container {
      max-width: 992px;
    }
  }

  @media (max-width: 992px) {
    .container {
      max-width: 768px;
    }

    h1 {
      font-size: 3.5rem;
    }

    h2 {
      font-size: 2.5rem;
    }

    h3 {
      font-size: 1.8rem;
    }

    .section {
      padding: 80px 0;
    }
  }

  @media (max-width: 768px) {
    .container {
      max-width: 576px;
    }

    h1 {
      font-size: 2.8rem;
    }

    h2 {
      font-size: 2.2rem;
    }

    h3 {
      font-size: 1.6rem;
    }

    .section {
      padding: 60px 0;
    }

    .section-subtitle {
      font-size: 1rem;
    }

    .divider {
      margin: 30px 0;
    }

    .divider-vertical {
      margin: 0 30px;
    }
  }

  @media (max-width: 576px) {
    .container {
      padding: 0 20px;
    }

    h1 {
      font-size: 2.2rem;
    }

    h2 {
      font-size: 1.8rem;
    }

    h3 {
      font-size: 1.4rem;
    }

    .btn {
      padding: 12px 24px;
      font-size: 0.9rem;
    }

    .section {
      padding: 50px 0;
    }
  }

  /* Vue Transitions */
  .fade-enter-active,
  .fade-leave-active {
    transition: opacity var(--transition-default);
  }

  .fade-enter-from,
  .fade-leave-to {
    opacity: 0;
  }

  .slide-enter-active,
  .slide-leave-active {
    transition: transform var(--transition-default), opacity var(--transition-default);
  }

  .slide-enter-from,
  .slide-leave-to {
    transform: translateY(20px);
    opacity: 0;
  }

  .slide-left-enter-active,
  .slide-left-leave-active {
    transition: transform var(--transition-default), opacity var(--transition-default);
  }

  .slide-left-enter-from,
  .slide-left-leave-to {
    transform: translateX(-20px);
    opacity: 0;
  }

  .slide-right-enter-active,
  .slide-right-leave-active {
    transition: transform var(--transition-default), opacity var(--transition-default);
  }

  .slide-right-enter-from,
  .slide-right-leave-to {
    transform: translateX(20px);
    opacity: 0;
  }

  .scale-enter-active,
  .scale-leave-active {
    transition: transform var(--transition-default), opacity var(--transition-default);
  }

  .scale-enter-from,
  .scale-leave-to {
    transform: scale(0.95);
    opacity: 0;
  }

  /* Accessibility */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Focus styles for accessibility */
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
  }

  /* Skip link for keyboard navigation */
  .skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    z-index: 100;
    transition: top 0.3s ease;
  }

  .skip-link:focus {
    top: 0;
  }

  /* Custom scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  ::-webkit-scrollbar-thumb {
    background: var(--primary-lightest);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-lighter);
  }

  /* Print styles */
  @media print {
    .no-print {
      display: none !important;
    }

    body {
      font-size: 12pt;
      color: black;
      background: white;
    }

    a {
      text-decoration: underline;
      color: #000;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      page-break-after: avoid;
      page-break-inside: avoid;
    }

    img {
      max-width: 100% !important;
    }

    .container {
      max-width: 100%;
      padding: 0;
    }
  }

  /* Fallbacks for older browsers */
  @supports not (display: grid) {
    .fallback-flex {
      display: flex;
      flex-wrap: wrap;
    }
  }

  /* Helpers for loading state */
  .loading-shimmer {
    background: linear-gradient(90deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-secondary) 100%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
  }

  @keyframes loading-shimmer {
    0% {
      background-position: -200% 0;
    }

    100% {
      background-position: 200% 0;
    }
  }

  .dogue-hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f5fa 0%, #e8e3f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dogue-hero-cloud-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .dogue-hero-cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    filter: blur(20px);
  }

  .dogue-hero-cloud-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.7;
    background: rgba(230, 235, 255, 0.7);
    animation: dogue-hero-float 15s ease-in-out infinite;
  }

  .dogue-hero-cloud-2 {
    top: 30%;
    right: 15%;
    width: 300px;
    height: 200px;
    opacity: 0.5;
    background: rgba(241, 231, 254, 0.6);
    animation: dogue-hero-float 18s ease-in-out infinite reverse;
  }

  .dogue-hero-cloud-3 {
    bottom: 20%;
    left: 20%;
    width: 250px;
    height: 150px;
    opacity: 0.6;
    background: rgba(250, 234, 242, 0.7);
    animation: dogue-hero-float 20s ease-in-out infinite;
    animation-delay: 5s;
  }

  .dogue-hero-cloud-4 {
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    opacity: 0.4;
    background: rgba(234, 250, 250, 0.5);
    animation: dogue-hero-float 22s ease-in-out infinite reverse;
    animation-delay: 3s;
  }

  .dogue-hero-cloud-5 {
    bottom: 10%;
    right: 10%;
    width: 220px;
    height: 220px;
    opacity: 0.5;
    background: rgba(241, 248, 233, 0.6);
    animation: dogue-hero-float 17s ease-in-out infinite;
    animation-delay: 7s;
  }

  @keyframes dogue-hero-float {
    0% {
      transform: translateY(0) translateX(0);
    }

    50% {
      transform: translateY(-20px) translateX(20px);
    }

    100% {
      transform: translateY(0) translateX(0);
    }
  }

  .dogue-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 30px;
    transform: translateY(-30px);
    opacity: 0;
    animation: dogue-hero-content-reveal 1.5s ease forwards 0.5s;
  }

  @keyframes dogue-hero-content-reveal {
    0% {
      transform: translateY(-30px);
      opacity: 0;
    }

    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }



  .dogue-hero-title {
    font-family: 'CooperBlack', cursive;
    font-size: calc(3rem + 5vw);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #9990d3;
    margin: 0 0 10px;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
  }

  .dogue-hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: calc(0.8rem + 0.5vw);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #666;
    margin-bottom: 40px;
    text-transform: uppercase;
  }

  .dogue-hero-cta {
    margin-top: 40px;
    opacity: 0;
    animation: dogue-hero-fade-in 1s ease forwards 1.5s;
  }

  @keyframes dogue-hero-fade-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .dogue-hero-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    border: none;
    border-radius: 30px;
    padding: 16px 34px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.3);
  }

  .dogue-hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(167, 139, 199, 0.4);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-hero-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.4);
  }

  .dogue-hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.2;
  }

  .dogue-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(1.1);
    animation: dogue-hero-zoom 30s ease-in-out infinite alternate;
  }

  @keyframes dogue-hero-zoom {
    from {
      transform: scale(1);
    }

    to {
      transform: scale(1.1);
    }
  }

  .dogue-hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(236, 226, 248, 0.7) 0%, rgba(246, 234, 242, 0.7) 100%);
    z-index: 2;
  }

  .dogue-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
    opacity: 0;
    animation: dogue-hero-fade-in 1s ease forwards 2s;
  }

  .dogue-hero-scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    margin-top: 10px;
  }

  .dogue-hero-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #888;
    border-radius: 13px;
    position: relative;
  }

  .dogue-hero-mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: #888;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: dogue-hero-scroll 2s ease infinite;
  }

  @keyframes dogue-hero-scroll {
    0% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    100% {
      transform: translateX(-50%) translateY(15px);
      opacity: 0;
    }
  }

  @media (max-width: 768px) {
    .dogue-hero-title {
      font-size: calc(2.5rem + 5vw);
    }

    .dogue-hero-tagline {
      font-size: calc(0.7rem + 0.5vw);
    }

    .dogue-hero-button {
      padding: 14px 28px;
      font-size: 0.8rem;
    }
  }

  .dogue-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(167, 139, 199, 0.1);
  }

  .dogue-navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    transition: padding 0.3s ease;
  }

  .dogue-navbar.scrolled .dogue-navbar-container {
    padding: 8px 30px;
  }

  .dogue-navbar-logo {
    z-index:10;
  }
  .dogue-navbar-logo-svg {
    display: block;
  }
  .dogue-navbar-logo-svg img {
    width: 140px;
    margin-top: -15px;
    margin-bottom: -25px;
    margin-left: -25px;
  }

  .dogue-navbar.scrolled .dogue-navbar-logo-svg img {
    transform: scale(0.75);
  }

  /* .dogue-navbar-logo:hover .dogue-navbar-logo-svg {
    transform: scale(0.9);
  } */

  .dogue-navbar-links-container {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }

  .dogue-navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .dogue-navbar-item {
    position: relative;
    margin: 0 10px;
  }

  .dogue-navbar-link {
    display: block;
    padding: 8px 12px;
    color: rgba(51, 51, 51, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
  }

  .dogue-navbar-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #9b7bb5;
    transition: width 0.3s ease, left 0.3s ease;
  }

  .dogue-navbar-link:hover {
    color: #9b7bb5;
  }

  .dogue-navbar-link:hover::after {
    width: 80%;
    left: 10%;
  }

  .dogue-navbar-actions {
    display: flex;
    align-items: center;
    z-index:10;
  }

  .dogue-navbar-lang {
    display: inline-block;
    margin-right: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  .dogue-navbar-lang:hover {
    color: #9b7bb5;
  }

  .dogue-navbar-booking-btn {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.2);
  }

  .dogue-navbar-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-navbar-booking-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(167, 139, 199, 0.3);
  }

  .dogue-navbar-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .dogue-navbar-menu-bar {
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 1px;
  }

  .dogue-navbar.open .dogue-navbar-menu-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: #9b7bb5;
  }

  .dogue-navbar.open .dogue-navbar-menu-bar:nth-child(2) {
    opacity: 0;
  }

  .dogue-navbar.open .dogue-navbar-menu-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #9b7bb5;
  }

  .dogue-navbar-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 80px 30px 30px;
    z-index: 9;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.4s ease;
    overflow-y: auto;
  }

  .dogue-navbar.open .dogue-navbar-mobile-menu {
    transform: translateY(0);
    opacity: 1;
  }

  .dogue-navbar-mobile-links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .dogue-navbar-mobile-item {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .dogue-navbar.open .dogue-navbar-mobile-item {
    opacity: 1;
    transform: translateY(0);
  }

  .dogue-navbar-mobile-item:nth-child(1) {
    transition-delay: 0.1s;
  }

  .dogue-navbar-mobile-item:nth-child(2) {
    transition-delay: 0.15s;
  }

  .dogue-navbar-mobile-item:nth-child(3) {
    transition-delay: 0.2s;
  }

  .dogue-navbar-mobile-item:nth-child(4) {
    transition-delay: 0.25s;
  }

  .dogue-navbar-mobile-item:nth-child(5) {
    transition-delay: 0.3s;
  }

  .dogue-navbar-mobile-item:nth-child(6) {
    transition-delay: 0.35s;
  }

  .dogue-navbar-mobile-item:nth-child(7) {
    transition-delay: 0.4s;
  }

  .dogue-navbar-mobile-link {
    color: #333;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
  }

  .dogue-navbar-mobile-link:hover {
    color: #9b7bb5;
  }

  .dogue-navbar-mobile-booking-btn {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 139, 199, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.45s;
  }

  .dogue-navbar.open .dogue-navbar-mobile-booking-btn {
    opacity: 1;
    transform: translateY(0);
  }

  .dogue-navbar-mobile-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.4);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  @media (max-width: 1024px) {
    .dogue-navbar-link {
      font-size: 0.75rem;
      padding: 8px 8px;
    }

    .dogue-navbar-lang {
      font-size: 0.75rem;
      margin-right: 15px;
    }

    .dogue-navbar-booking-btn {
      padding: 10px 18px;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 900px) {
    .dogue-navbar-links-container {
      display: none;
    }

    .dogue-navbar-booking-btn {
      display: none;
    }

    .dogue-navbar-menu-toggle {
      display: flex;
    }

    .dogue-navbar-mobile-menu {
      display: block;
    }

    .dogue-navbar-container {
      padding: 15px 20px;
    }

    .dogue-navbar.scrolled .dogue-navbar-container {
      padding: 10px 20px;
    }
  }

  .dogue-approach-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fdfbff 0%, #f7f5fa 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .dogue-approach-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }

  .dogue-approach-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-approach-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-approach-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px 0 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-approach-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
  }

  .dogue-approach-text-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .dogue-approach-philosophy {
    margin-bottom: 40px;
  }

  .dogue-approach-philosophy-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
  }

  .dogue-approach-philosophy-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
  }

  .dogue-approach-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
  }

  .dogue-approach-feature.visible {
    transform: translateX(0);
    opacity: 1;
  }

  .dogue-approach-feature:nth-child(2) {
    transition-delay: 0.2s;
  }

  .dogue-approach-feature:nth-child(3) {
    transition-delay: 0.4s;
  }

  .dogue-approach-feature:nth-child(4) {
    transition-delay: 0.6s;
  }

  .dogue-approach-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #a37cc7;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.15);
  }

  .dogue-approach-feature-text {
    flex: 1;
  }

  .dogue-approach-feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
  }

  .dogue-approach-feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .dogue-approach-quote {
    background: linear-gradient(135deg, #f1ebf8 0%, #e8d7f7 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(167, 139, 199, 0.1);
    margin-top: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
  }

  .dogue-approach-quote.visible {
    transform: translateY(0);
    opacity: 1;
  }

  .dogue-approach-quote blockquote {
    font-family: 'CooperBlack', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
    margin: 0 0 15px;
    line-height: 1.6;
  }

  .dogue-approach-quote cite {
    font-style: normal;
    font-weight: 500;
    color: #a37cc7;
    font-size: 0.9rem;
  }

  .dogue-approach-illustration-column {
    flex: 1;
    min-width: 300px;
  }

  .dogue-approach-illustration-container {
    position: relative;
    height: 400px;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5eefc 0%, #dfd2ef 100%);
    box-shadow: 0 10px 30px rgba(167, 139, 199, 0.2);
  }

  .dogue-approach-illustration-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8d7f7 0%, #d3b5f2 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: dogue-approach-pulse 8s infinite ease-in-out;
  }

  @keyframes dogue-approach-pulse {

    0%,
    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.6;
    }

    50% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.4;
    }
  }

  .dogue-approach-illustration-walker {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .dogue-approach-tarif-svg {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 120px;
    height: 300px;
  }

  .dogue-approach-tarif-body {
    animation: dogue-approach-tarif-body 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-tarif-body {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }

  .dogue-approach-tarif-head {
    animation: dogue-approach-tarif-head 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-tarif-head {

    0%,
    100% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-2px) rotate(5deg);
    }
  }

  .dogue-approach-tarif-legs {
    animation: dogue-approach-tarif-legs 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-tarif-legs {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(2px);
    }
  }

  .dogue-approach-tarif-arm1 {
    transform-origin: 150px 150px;
    animation: dogue-approach-tarif-arm1 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-tarif-arm1 {

    0%,
    100% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(-5deg);
    }
  }

  .dogue-approach-tarif-arm2 {
    transform-origin: 50px 150px;
    animation: dogue-approach-tarif-arm2 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-tarif-arm2 {

    0%,
    100% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(5deg);
    }
  }

  .dogue-approach-leash-svg {
    position: absolute;
    bottom: 100px;
    left: 25%;
    width: 200px;
    height: 200px;
  }

  .dogue-approach-leash {
    stroke-dasharray: 5;
    animation: dogue-approach-leash-dash 20s linear infinite;
  }

  @keyframes dogue-approach-leash-dash {
    to {
      stroke-dashoffset: 200;
    }
  }

  .dogue-approach-dog-svg {
    position: absolute;
    bottom: 50px;
    left: 45%;
    width: 150px;
    height: 150px;
    animation: dogue-approach-dog-move 5s infinite ease-in-out;
  }

  @keyframes dogue-approach-dog-move {

    0%,
    100% {
      transform: translateY(0) translateX(0);
    }

    25% {
      transform: translateY(-5px) translateX(5px);
    }

    50% {
      transform: translateY(0) translateX(10px);
    }

    75% {
      transform: translateY(-8px) translateX(5px);
    }
  }

  .dogue-approach-dog-tail {
    transform-origin: 60px 120px;
    animation: dogue-approach-dog-tail 1.5s infinite ease-in-out;
  }

  @keyframes dogue-approach-dog-tail {

    0%,
    100% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(10deg);
    }
  }

  .dogue-approach-dog-head {
    animation: dogue-approach-dog-head 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-dog-head {

    0%,
    100% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-2px) rotate(5deg);
    }
  }

  .dogue-approach-dog-ear1,
  .dogue-approach-dog-ear2 {
    animation: dogue-approach-dog-ear 3s infinite ease-in-out;
  }

  @keyframes dogue-approach-dog-ear {

    0%,
    100% {
      transform: rotate(-30deg);
    }

    50% {
      transform: rotate(-25deg);
    }
  }

  .dogue-approach-dog-leg1,
  .dogue-approach-dog-leg2,
  .dogue-approach-dog-leg3 {
    animation: dogue-approach-dog-legs 1s infinite ease-in-out alternate;
  }

  .dogue-approach-dog-leg1 {
    animation-delay: 0s;
  }

  .dogue-approach-dog-leg2 {
    animation-delay: 0.2s;
  }

  .dogue-approach-dog-leg3 {
    animation-delay: 0.4s;
  }

  @keyframes dogue-approach-dog-legs {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(-5px);
    }
  }

  .dogue-approach-scene-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .dogue-approach-tree {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 80px;
    height: 200px;
    background: linear-gradient(to top, #a37cc7 0%, #a37cc7 30%, transparent 30%);
  }

  .dogue-approach-tree::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: #d3b5f2;
    border-radius: 50%;
    z-index: -1;
  }

  .dogue-approach-tree-2 {
    right: 25%;
    width: 60px;
    height: 150px;
  }

  .dogue-approach-tree-2::before {
    width: 90px;
    height: 90px;
  }

  .dogue-approach-bush {
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 80px;
    height: 50px;
    background: #d3b5f2;
    border-radius: 50% 50% 0 0;
  }

  .dogue-approach-bush-2 {
    left: 60%;
    width: 60px;
    height: 40px;
  }

  .dogue-approach-cloud {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(10px);
  }

  .dogue-approach-cloud-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    height: 60px;
    animation: dogue-approach-cloud-float 20s infinite ease-in-out;
  }

  .dogue-approach-cloud-2 {
    top: 30%;
    right: 15%;
    width: 120px;
    height: 70px;
    animation: dogue-approach-cloud-float 25s infinite ease-in-out reverse;
  }

  .dogue-approach-cloud-3 {
    top: 15%;
    right: 30%;
    width: 80px;
    height: 50px;
    animation: dogue-approach-cloud-float 22s infinite ease-in-out;
    animation-delay: 5s;
  }

  @keyframes dogue-approach-cloud-float {

    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(30px);
    }
  }

  .dogue-approach-butterfly {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #c7a9e6;
    border-radius: 50% 50% 0 0;
    top: 40%;
    left: 20%;
    transform-origin: center bottom;
    animation: dogue-approach-butterfly-float 12s infinite ease-in-out;
  }

  .dogue-approach-butterfly::before,
  .dogue-approach-butterfly::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #c7a9e6;
    opacity: 0.7;
  }

  .dogue-approach-butterfly::before {
    left: -10px;
    top: -5px;
    animation: dogue-approach-butterfly-wing 0.8s infinite ease-in-out alternate;
  }

  .dogue-approach-butterfly::after {
    right: -10px;
    top: -5px;
    animation: dogue-approach-butterfly-wing 0.8s infinite ease-in-out alternate-reverse;
  }

  .dogue-approach-butterfly-2 {
    top: 60%;
    left: 70%;
    animation-delay: 3s;
  }

  @keyframes dogue-approach-butterfly-float {
    0% {
      transform: translateY(0) translateX(0);
    }

    25% {
      transform: translateY(-50px) translateX(50px);
    }

    50% {
      transform: translateY(-100px) translateX(0);
    }

    75% {
      transform: translateY(-50px) translateX(-50px);
    }

    100% {
      transform: translateY(0) translateX(0);
    }
  }

  @keyframes dogue-approach-butterfly-wing {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(60deg);
    }
  }

  .dogue-approach-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }

  .dogue-approach-benefit {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(167, 139, 199, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    top: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s ease, opacity 0.6s ease, top 0.3s ease, box-shadow 0.3s ease;
  }

  .dogue-approach-benefit.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .dogue-approach-benefit:nth-child(1) {
    transition-delay: 0.1s;
  }

  .dogue-approach-benefit:nth-child(2) {
    transition-delay: 0.2s;
  }

  .dogue-approach-benefit:nth-child(3) {
    transition-delay: 0.3s;
  }

  .dogue-approach-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(167, 139, 199, 0.2);
    top: -5px;
  }

  .dogue-approach-benefit-number {
    font-family: 'CooperBlack', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(167, 139, 199, 0.2);
    margin-bottom: 15px;
    line-height: 1;
  }

  .dogue-approach-benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
  }

  .dogue-approach-benefit-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .dogue-approach-cta {
    background: linear-gradient(135deg, #e8d7f7 0%, #d3b5f2 100%);
    padding: 60px 30px;
    text-align: center;
    border-radius: 0 0 0 100px;
    box-shadow: 0 -10px 30px rgba(167, 139, 199, 0.1);
    position: relative;
    overflow: hidden;
  }

  .dogue-approach-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    animation: dogue-approach-cta-shine 10s infinite linear;
    pointer-events: none;
  }

  @keyframes dogue-approach-cta-shine {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  .dogue-approach-cta-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .dogue-approach-cta-button {
    background: white;
    color: #a37cc7;
    border: none;
    border-radius: 30px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
  }

  .dogue-approach-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(167, 139, 199, 0.3);
    background: #f5eefc;
  }

  .dogue-approach-cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.3);
  }

  @media (max-width: 992px) {
    .dogue-approach-section {
      padding: 100px 0 80px;
    }

    .dogue-approach-content {
      flex-direction: column-reverse;
    }

    .dogue-approach-title {
      font-size: 2.5rem;
    }

    .dogue-approach-subtitle {
      font-size: 1.1rem;
    }

    .dogue-approach-philosophy-title {
      font-size: 1.6rem;
    }

    .dogue-approach-cta-title {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 768px) {
    .dogue-approach-section {
      padding: 80px 0 60px;
    }

    .dogue-approach-header {
      margin-bottom: 60px;
    }

    .dogue-approach-title {
      font-size: 2.2rem;
    }

    .dogue-approach-subtitle {
      font-size: 1rem;
    }

    .dogue-approach-philosophy-title {
      font-size: 1.4rem;
    }

    .dogue-approach-illustration-container {
      height: 350px;
    }

    .dogue-approach-benefits {
      grid-template-columns: 1fr;
    }

    .dogue-approach-cta {
      padding: 50px 20px;
      border-radius: 0;
    }

    .dogue-approach-cta-title {
      font-size: 1.4rem;
    }

    .dogue-approach-cta-button {
      padding: 14px 30px;
      font-size: 0.9rem;
    }
  }

  .dogue-customize {
    position: relative;
    padding: 120px 0 140px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
    overflow: hidden;
  }

  .dogue-customize-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .dogue-customize-cloud {
    position: absolute;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(240, 247, 255, 0.4) 70%, rgba(230, 242, 255, 0) 100%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.7;
  }

  .dogue-customize-cloud-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
    animation: dogue-customize-cloud-float-1 25s infinite ease-in-out;
  }

  .dogue-customize-cloud-2 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: -80px;
    animation: dogue-customize-cloud-float-2 30s infinite ease-in-out;
  }

  .dogue-customize-cloud-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 20%;
    animation: dogue-customize-cloud-float-3 20s infinite ease-in-out;
  }

  @keyframes dogue-customize-cloud-float-1 {

    0%,
    100% {
      transform: translateX(0) translateY(0);
    }

    50% {
      transform: translateX(40px) translateY(20px);
    }
  }

  @keyframes dogue-customize-cloud-float-2 {

    0%,
    100% {
      transform: translateX(0) translateY(0);
    }

    50% {
      transform: translateX(-40px) translateY(15px);
    }
  }

  @keyframes dogue-customize-cloud-float-3 {

    0%,
    100% {
      transform: translateX(0) translateY(0);
    }

    50% {
      transform: translateX(30px) translateY(-20px);
    }
  }

  .dogue-customize-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
  }

  .dogue-customize-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .dogue-customize-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 48px;
    color: #524173;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
  }

  .dogue-customize-title span {
    position: relative;
    z-index: 1;
  }

  .dogue-customize-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(156, 108, 255, 0.2);
    z-index: -1;
  }

  .dogue-customize-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #9c6cff;
    position: relative;
    display: inline-block;
  }

  .dogue-customize-subtitle::before,
  .dogue-customize-subtitle::after {
    content: '•';
    color: #b68aff;
    margin: 0 10px;
    opacity: 0.6;
  }

  .dogue-customize-content {
    margin-bottom: 60px;
  }

  .dogue-customize-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }

  .dogue-customize-intro-text {
    max-width: 700px;
  }

  .dogue-customize-intro-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #6a7c99;
  }

  .dogue-customize-accent {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .dogue-customize-accent span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: #9c6cff;
    position: relative;
  }

  .dogue-customize-accent span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(156, 108, 255, 0.3);
  }

  .dogue-customize-form-container {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(156, 108, 255, 0.15);
    overflow: hidden;
  }

  .dogue-tabs {
    display: flex;
    flex-direction: column;
  }

  .dogue-tab-headers {
    display: flex;
    border-bottom: 1px solid rgba(156, 108, 255, 0.1);
    background-color: #f8f5ff;
  }

  .dogue-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 20px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #6a7c99;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .dogue-tab-btn i {
    font-size: 18px;
    transition: all 0.3s ease;
  }

  .dogue-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #9c6cff;
    transition: width 0.3s ease;
  }

  .dogue-tab-btn:hover {
    color: #9c6cff;
  }

  .dogue-tab-btn.active {
    color: #9c6cff;
  }

  .dogue-tab-btn.active::after {
    width: 100%;
  }

  .dogue-tab-content {
    padding: 30px;
  }

  .dogue-tab-pane {
    display: none;
  }

  .dogue-tab-pane.active {
    display: block;
  }

  /* Route Preferences Tab */
  .dogue-route-preferences {
    display: flex;
    gap: 30px;
  }

  .dogue-route-map {
    flex: 1;
  }

  .dogue-map-container {
    position: relative;
    height: 440px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(156, 108, 255, 0.1);
  }

  #dogue-interactive-map {
    width: 100%;
    height: 100%;
    background-color: #e9edf5;
  }

  .dogue-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
  }

  .dogue-map-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-end;
    pointer-events: all;
  }

  .dogue-map-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #524173;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-map-control-btn:hover {
    background-color: #9c6cff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 108, 255, 0.3);
  }

  .dogue-map-note {
    align-self: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #524173;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: all;
  }

  .dogue-map-note i {
    color: #9c6cff;
  }

  .dogue-route-options {
    flex: 1;
    max-width: 450px;
  }

  .dogue-route-options-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #524173;
    margin-bottom: 20px;
  }

  .dogue-route-filters {
    margin-bottom: 30px;
  }

  .dogue-filter-group {
    margin-bottom: 20px;
  }

  .dogue-filter-group h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #9c6cff;
    margin-bottom: 12px;
  }

  .dogue-filter-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dogue-filter-option {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 28px;
    cursor: pointer;
  }

  .dogue-filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .dogue-filter-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #f8f5ff;
    border: 1px solid #d9c4ff;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .dogue-filter-option:hover .dogue-filter-checkbox {
    background-color: #f0e6ff;
  }

  .dogue-filter-option input:checked~.dogue-filter-checkbox {
    background-color: #9c6cff;
    border-color: #9c6cff;
  }

  .dogue-filter-checkbox:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .dogue-filter-option input:checked~.dogue-filter-checkbox:after {
    display: block;
  }

  .dogue-filter-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6a7c99;
  }

  .dogue-route-saved {
    background-color: #f8f5ff;
    border-radius: 15px;
    padding: 20px;
  }

  .dogue-saved-route-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .dogue-saved-route-title h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #524173;
    margin: 0;
  }

  .dogue-saved-counter {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #9c6cff;
  }

  .dogue-saved-routes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }

  .dogue-saved-route {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(156, 108, 255, 0.1);
    transition: all 0.3s ease;
  }

  .dogue-saved-route:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(156, 108, 255, 0.15);
  }

  .dogue-saved-route-info {
    flex: 1;
  }

  .dogue-saved-route-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #524173;
    margin-bottom: 5px;
  }

  .dogue-saved-route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .dogue-route-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #9c6cff;
    background-color: #f0e6ff;
    padding: 3px 8px;
    border-radius: 30px;
    white-space: nowrap;
  }

  .dogue-saved-route-actions {
    display: flex;
    gap: 5px;
  }

  .dogue-route-action-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f8f5ff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c6cff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-route-action-btn:hover {
    background-color: #9c6cff;
    color: white;
  }

  .dogue-save-new-route-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background-color: #f0e6ff;
    border: 1px dashed #9c6cff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9c6cff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-save-new-route-btn:hover {
    background-color: #9c6cff;
    color: white;
  }

  /* Walk Duration Tab */
  .dogue-duration-options {
    display: flex;
    gap: 30px;
  }

  .dogue-duration-selector {
    flex: 1;
  }

  .dogue-duration-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #524173;
    margin-bottom: 25px;
  }

  .dogue-duration-slider-container {
    background-color: #f8f5ff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
  }

  .dogue-duration-display {
    text-align: center;
    margin-bottom: 20px;
  }

  .dogue-duration-value {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 42px;
    color: #9c6cff;
  }

  .dogue-duration-unit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #6a7c99;
    margin-left: 5px;
  }

  .dogue-slider-wrapper {
    position: relative;
  }

  .dogue-duration-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0d5ff;
    border-radius: 3px;
    outline: none;
  }

  .dogue-duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9c6cff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(156, 108, 255, 0.3);
    transition: all 0.3s ease;
  }

  .dogue-duration-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(156, 108, 255, 0.4);
  }

  .dogue-duration-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9c6cff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(156, 108, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
  }

  .dogue-duration-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(156, 108, 255, 0.4);
  }

  .dogue-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .dogue-slider-labels span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6a7c99;
  }

  .dogue-duration-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .dogue-duration-package {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(156, 108, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
  }

  .dogue-duration-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(156, 108, 255, 0.15);
  }

  .dogue-package-header {
    background-color: #f8f5ff;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(156, 108, 255, 0.1);
  }

  .dogue-package-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: #524173;
    margin-bottom: 5px;
  }

  .dogue-package-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9c6cff;
    margin-bottom: 10px;
  }

  .dogue-package-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #524173;
  }

  .dogue-package-content {
    padding: 20px;
  }

  .dogue-package-content p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #6a7c99;
    margin-bottom: 15px;
  }

  .dogue-package-features {
    padding-left: 20px;
    margin: 0;
  }

  .dogue-package-features li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6a7c99;
    margin-bottom: 8px;
  }

  .dogue-package-featured {
    border: 2px solid #9c6cff;
    transform: scale(1.05);
    z-index: 1;
  }

  .dogue-package-featured:hover {
    transform: scale(1.05) translateY(-5px);
  }

  .dogue-package-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #9c6cff;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 30px;
  }

  .dogue-duration-custom {
    flex: 1;
    max-width: 400px;
    background-color: #f8f5ff;
    border-radius: 15px;
    padding: 25px;
  }

  .dogue-duration-custom h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #524173;
    margin-bottom: 20px;
  }

  .dogue-frequency-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .dogue-frequency-option {
    position: relative;
    cursor: pointer;
  }

  .dogue-frequency-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .dogue-frequency-card {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(156, 108, 255, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .dogue-frequency-option input:checked+.dogue-frequency-card {
    border-color: #9c6cff;
    box-shadow: 0 5px 15px rgba(156, 108, 255, 0.15);
  }

  .dogue-frequency-icon {
    width: 40px;
    height: 40px;
    background-color: #f0e6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c6cff;
    margin-right: 15px;
    transition: all 0.3s ease;
  }

  .dogue-frequency-option input:checked+.dogue-frequency-card .dogue-frequency-icon {
    background-color: #9c6cff;
    color: white;
  }

  .dogue-frequency-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #524173;
    margin-bottom: 2px;
  }

  .dogue-frequency-detail {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6a7c99;
  }

  .dogue-weekly-selector {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
  }

  .dogue-hidden {
    display: none;
  }

  .dogue-week-days {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .dogue-week-day {
    position: relative;
    cursor: pointer;
  }

  .dogue-week-day input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .dogue-day-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    background-color: #f8f5ff;
    color: #6a7c99;
    transition: all 0.3s ease;
  }

  .dogue-week-day.dogue-weekend .dogue-day-circle {
    background-color: #f0e6ff;
    color: #9c6cff;
  }

  .dogue-week-day input:checked+.dogue-day-circle {
    background-color: #9c6cff;
    color: white;
  }

  .dogue-preferred-time {
    margin-top: 15px;
  }

  .dogue-preferred-time label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #524173;
    margin-bottom: 8px;
  }

  .dogue-time-select {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #524173;
    background-color: #f8f5ff;
    border: 1px solid #d9c4ff;
    border-radius: 8px;
    padding: 12px 15px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239c6cff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
  }

  /* Activities Tab */
  .dogue-activities-options {
    max-width: 900px;
    margin: 0 auto;
  }

  .dogue-activities-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #524173;
    margin-bottom: 10px;
    text-align: center;
  }

  .dogue-activities-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6a7c99;
    margin-bottom: 30px;
    text-align: center;
  }

  .dogue-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }

  .dogue-activity-card {
    position: relative;
    display: block;
    height: 100%;
    cursor: pointer;
  }

  .dogue-activity-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .dogue-activity-content {
    background-color: white;
    border: 1px solid #e9edf5;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(156, 108, 255, 0.05);
  }

  .dogue-activity-card:hover .dogue-activity-content {
    border-color: #d9c4ff;
    box-shadow: 0 8px 20px rgba(156, 108, 255, 0.1);
    transform: translateY(-3px);
  }

  .dogue-activity-card input:checked+.dogue-activity-content {
    border-color: #9c6cff;
    box-shadow: 0 10px 25px rgba(156, 108, 255, 0.15);
    transform: translateY(-5px);
  }

  .dogue-activity-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c6cff;
    font-size: 24px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }

  .dogue-activity-card input:checked+.dogue-activity-content .dogue-activity-icon {
    background-color: #9c6cff;
    color: white;
  }

  .dogue-activity-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #524173;
    margin-bottom: 10px;
  }

  .dogue-activity-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6a7c99;
    margin: 0;
  }

  .dogue-activity-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background-color: #f8f5ff;
    border: 1px solid #d9c4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
  }

  .dogue-activity-card input:checked+.dogue-activity-content+.dogue-activity-check {
    background-color: #9c6cff;
    border-color: #9c6cff;
    color: white;
    opacity: 1;
    transform: scale(1);
  }

  .dogue-activity-intensity {
    background-color: #f8f5ff;
    border-radius: 15px;
    padding: 25px;
  }

  .dogue-intensity-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #524173;
    margin-bottom: 20px;
    text-align: center;
  }

  .dogue-intensity-slider-container {
    margin-bottom: 25px;
    padding: 0 20px;
  }

  .dogue-intensity-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d9c4ff 0%, #9c6cff 50%, #6c4bff 100%);
    border-radius: 3px;
    outline: none;
  }

  .dogue-intensity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9c6cff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(156, 108, 255, 0.3);
    transition: all 0.3s ease;
  }

  .dogue-intensity-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(156, 108, 255, 0.4);
  }

  .dogue-intensity-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }

  .dogue-intensity-labels span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #6a7c99;
  }

  .dogue-intensity-display {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .dogue-intensity-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: #f0e6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c6cff;
    font-size: 24px;
  }

  .dogue-intensity-description {
    flex: 1;
  }

  .dogue-intensity-description h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #524173;
    margin-bottom: 5px;
  }

  .dogue-intensity-description p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6a7c99;
    margin: 0;
  }

  /* Special Requests Tab */
  .dogue-special-options {
    max-width: 800px;
    margin: 0 auto;
  }

  .dogue-special-intro {
    text-align: center;
    margin-bottom: 30px;
  }

  .dogue-special-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #524173;
    margin-bottom: 10px;
  }

  .dogue-special-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6a7c99;
    margin: 0;
  }

  .dogue-special-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .dogue-form-section {
    background-color: #f8f5ff;
    border-radius: 15px;
    padding: 25px;
  }

  .dogue-form-section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #524173;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .dogue-form-section-title i {
    color: #9c6cff;
  }

  .dogue-form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .dogue-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .dogue-form-field label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #6a7c99;
  }

  .dogue-form-input,
  .dogue-form-select,
  .dogue-form-textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #524173;
    background-color: white;
    border: 1px solid #d9c4ff;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
  }

  .dogue-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239c6cff'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
  }

  .dogue-form-textarea {
    height: 80px;
    resize: vertical;
  }

  .dogue-form-textarea.dogue-textarea-large {
    height: 120px;
  }

  .dogue-form-input:focus,
  .dogue-form-select:focus,
  .dogue-form-textarea:focus {
    outline: none;
    border-color: #9c6cff;
    box-shadow: 0 0 0 2px rgba(156, 108, 255, 0.1);
  }

  .dogue-form-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
  }

  .dogue-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
  }

  .dogue-form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .dogue-checkbox-mark {
    height: 18px;
    width: 18px;
    background-color: white;
    border: 1px solid #d9c4ff;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
  }

  .dogue-form-checkbox:hover .dogue-checkbox-mark {
    background-color: #f0e6ff;
  }

  .dogue-form-checkbox input:checked~.dogue-checkbox-mark {
    background-color: #9c6cff;
    border-color: #9c6cff;
  }

  .dogue-checkbox-mark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .dogue-form-checkbox input:checked~.dogue-checkbox-mark:after {
    display: block;
  }

  .dogue-checkbox-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6a7c99;
  }

  /* Summary Section */
  .dogue-customize-summary {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(156, 108, 255, 0.15);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
  }

  .dogue-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(156, 108, 255, 0.1);
  }

  .dogue-summary-header h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 24px;
    color: #524173;
    margin: 0;
  }

  .dogue-reset-selections-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #9c6cff;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .dogue-reset-selections-btn::before {
    content: '\f2f9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
  }

  .dogue-reset-selections-btn:hover {
    color: #6c4bff;
  }

  .dogue-summary-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .dogue-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .dogue-summary-icon {
    width: 40px;
    height: 40px;
    background-color: #f8f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c6cff;
    font-size: 16px;
    flex-shrink: 0;
  }

  .dogue-summary-info {
    flex: 1;
  }

  .dogue-summary-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #524173;
    margin-bottom: 5px;
  }

  .dogue-summary-info p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #6a7c99;
    margin: 0;
  }

  .dogue-summary-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(156, 108, 255, 0.1);
  }

  .dogue-summary-book-btn {
    background: linear-gradient(135deg, #b68aff 0%, #6c4bff 100%);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 40px;
    padding: 14px 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(158, 133, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
  }

  .dogue-summary-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
  }

  .dogue-summary-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(158, 133, 255, 0.4);
  }

  .dogue-summary-book-btn:hover::before {
    left: 100%;
  }

  .dogue-summary-save-btn {
    background-color: white;
    border: 1px solid #9c6cff;
    border-radius: 40px;
    padding: 14px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #9c6cff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-summary-save-btn:hover {
    background-color: #f8f5ff;
    transform: translateY(-3px);
  }

  @media (max-width: 1200px) {
    .dogue-customize-container {
      padding: 0 20px;
    }

    .dogue-customize-title {
      font-size: 40px;
    }

    .dogue-route-preferences,
    .dogue-duration-options {
      flex-direction: column;
    }

    .dogue-route-map {
      margin-bottom: 30px;
    }

    .dogue-route-options,
    .dogue-duration-custom {
      max-width: 100%;
    }

    .dogue-duration-packages {
      grid-template-columns: 1fr;
    }

    .dogue-package-featured {
      transform: scale(1);
    }

    .dogue-package-featured:hover {
      transform: translateY(-5px);
    }

    .dogue-activities-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .dogue-summary-content {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .dogue-customize {
      padding: 80px 0 100px;
    }

    .dogue-customize-title {
      font-size: 36px;
    }

    .dogue-customize-intro {
      flex-direction: column;
      gap: 20px;
    }

    .dogue-customize-accent {
      align-items: center;
    }

    .dogue-tab-headers {
      overflow-x: auto;
      padding-bottom: 5px;
    }

    .dogue-tab-btn {
      flex: 0 0 auto;
      padding: 15px 20px;
      white-space: nowrap;
    }

    .dogue-tab-btn span {
      display: none;
    }

    .dogue-tab-btn i {
      font-size: 20px;
    }

    .dogue-filter-options {
      grid-template-columns: 1fr;
    }

    .dogue-form-checkboxes {
      grid-template-columns: 1fr;
    }

    .dogue-summary-actions {
      flex-direction: column;
    }

    .dogue-summary-book-btn,
    .dogue-summary-save-btn {
      width: 100%;
      justify-content: center;
    }
  }

  @media (max-width: 576px) {
    .dogue-customize-title {
      font-size: 30px;
    }

    .dogue-customize-subtitle {
      font-size: 16px;
    }

    .dogue-tab-content {
      padding: 20px;
    }

    .dogue-map-container {
      height: 300px;
    }

    .dogue-activities-grid {
      grid-template-columns: 1fr;
    }

    .dogue-customize-summary {
      padding: 20px;
    }
  }

  .dogue-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f5fa 0%, #fdfbff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 181, 242, 0.2) 0%, rgba(211, 181, 242, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(200px, -200px);
  }

  .dogue-services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 169, 230, 0.15) 0%, rgba(199, 169, 230, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(-150px, 150px);
  }

  .dogue-services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
  }

  .dogue-services-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-services-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-services-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px auto 0;
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-services-gallery-wrapper {
    position: relative;
    margin-bottom: 80px;
  }

  .dogue-services-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
  }

  .dogue-services-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #a37cc7;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 15px;
    box-shadow: 0 4px 15px rgba(167, 139, 199, 0.15);
    pointer-events: auto;
  }

  .dogue-services-arrow:hover {
    background: white;
    color: #9b7bb5;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(167, 139, 199, 0.2);
  }

  .dogue-services-arrow:active {
    transform: scale(0.98);
  }

  .dogue-services-prev-arrow {
    left: 10px;
  }

  .dogue-services-next-arrow {
    right: 10px;
  }

  .dogue-services-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    padding: 20px 0 40px;
  }

  .dogue-services-gallery::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .dogue-service-card {
    flex: 0 0 auto;
    width: calc(33.333% - 20px);
    min-width: 300px;
    height: 480px;
    margin: 0 10px;
    perspective: 1000px;
    scroll-snap-align: center;
  }

  .dogue-service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(167, 139, 199, 0.1);
    border-radius: 20px;
  }

  .dogue-service-card.flipped .dogue-service-card-inner {
    transform: rotateY(180deg);
  }

  .dogue-service-card-front,
  .dogue-service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
  }

  .dogue-service-card-front {
    background: white;
    color: #333;
    display: flex;
    flex-direction: column;
  }

  .dogue-service-card-back {
    background: white;
    color: #333;
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .dogue-service-image-container {
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .dogue-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .dogue-service-card:hover .dogue-service-image {
    transform: scale(1.05);
  }

  .dogue-service-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .dogue-service-name {
    font-family: 'CooperBlack', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 10px;
    letter-spacing: 0.03em;
  }

  .dogue-service-brief {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 20px;
    flex: 1;
  }

  .dogue-service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .dogue-service-feature {
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    color: #9b7bb5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }

  .dogue-service-explore-btn {
    background: transparent;
    color: #a37cc7;
    border: 1px solid #a37cc7;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
  }

  .dogue-service-explore-btn:hover {
    background: rgba(163, 124, 199, 0.1);
    transform: translateY(-2px);
  }

  .dogue-service-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #a37cc7;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
  }

  .dogue-service-close-btn:hover {
    background: rgba(163, 124, 199, 0.1);
    transform: rotate(90deg);
  }

  .dogue-service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
  }

  .dogue-service-details {
    margin: 20px 0;
    background: linear-gradient(135deg, #f7f5fa 0%, #f1ebf8 100%);
    padding: 20px;
    border-radius: 15px;
  }

  .dogue-service-detail {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
  }

  .dogue-service-detail:last-child {
    margin-bottom: 0;
  }

  .dogue-service-detail-icon {
    flex: 0 0 auto;
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .dogue-service-detail-label {
    flex: 0 0 auto;
    width: 80px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #555;
  }

  .dogue-service-detail-value {
    flex: 1;
    font-size: 0.85rem;
    color: #666;
  }

  .dogue-service-book-btn {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    letter-spacing: 0.05em;
  }

  .dogue-service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-service-book-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.3);
  }

  .dogue-services-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .dogue-services-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e8d7f7;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-services-indicator.active {
    background: #a37cc7;
    transform: scale(1.2);
  }

  .dogue-services-customization {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    text-align: center;
  }

  .dogue-services-customization-title {
    font-family: 'CooperBlack', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
  }

  .dogue-services-customization-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin: 0 auto 40px;
    max-width: 600px;
  }

  .dogue-services-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .dogue-services-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #fdfbff 0%, #f7f5fa 100%);
  }

  .dogue-services-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199, 169, 230, 0.1) 0%, rgba(211, 181, 242, 0.1) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dogue-services-option:hover::before {
    opacity: 1;
  }

  .dogue-services-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    border-radius: 50%;
    margin-bottom: 15px;
    color: #a37cc7;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
  }

  .dogue-services-option:hover .dogue-services-option-icon {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(167, 139, 199, 0.2);
  }

  .dogue-services-option-content {
    position: relative;
    z-index: 2;
  }

  .dogue-services-option-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
  }

  .dogue-services-option-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
  }

  .dogue-services-customize-btn {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    letter-spacing: 0.05em;
    display: inline-block;
  }

  .dogue-services-customize-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-services-customize-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.3);
  }

  /* Animation for cards appearing */
  .dogue-service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .dogue-service-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 1200px) {
    .dogue-service-card {
      width: calc(50% - 20px);
    }
  }

  @media (max-width: 992px) {
    .dogue-services-title {
      font-size: 2.5rem;
    }

    .dogue-services-subtitle {
      font-size: 1.1rem;
    }

    .dogue-services-customization-title {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    .dogue-services-section {
      padding: 80px 0;
    }

    .dogue-service-card {
      width: calc(100% - 20px);
    }

    .dogue-services-title {
      font-size: 2.2rem;
    }

    .dogue-services-subtitle {
      font-size: 1rem;
    }

    .dogue-services-customization {
      padding: 40px 25px;
    }

    .dogue-services-customization-title {
      font-size: 1.5rem;
    }

    .dogue-services-option-icon {
      width: 50px;
      height: 50px;
    }

    .dogue-services-options {
      gap: 20px;
    }

    .dogue-services-customize-btn {
      width: 100%;
      padding: 14px 20px;
    }
  }

  /* Special effects for hovered cards */
  .dogue-service-card:hover .dogue-service-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.15);
  }

  .dogue-service-card.flipped:hover .dogue-service-card-inner {
    transform: rotateY(180deg) translateY(-10px);
  }

  .dogue-boutique-section {
    padding: 120px 0 100px;
    background-color: #fbf9fe;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
  }

  .dogue-boutique-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-boutique-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
  }

  .dogue-boutique-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-boutique-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-boutique-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-boutique-carousel {
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
  }

  .dogue-boutique-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .dogue-testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .dogue-testimonial-slide.active {
    opacity: 1;
  }

  .dogue-testimonial-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    overflow: hidden;
    position: relative;
  }

  .dogue-testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-testimonial-quote {
    flex: 1;
    min-width: 300px;
    padding: 60px 50px;
    position: relative;
  }

  .dogue-testimonial-quote-icon {
    position: absolute;
    top: 30px;
    left: 50px;
    color: rgba(167, 139, 199, 0.1);
    transform: scale(1.5);
  }

  .dogue-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin: 0 0 30px;
    position: relative;
    padding-top: 30px;
    font-weight: 300;
  }

  .dogue-testimonial-author {
    margin-top: 20px;
  }

  .dogue-testimonial-author h4 {
    font-family: 'CooperBlack', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin: 0 0 5px;
    letter-spacing: 0.03em;
  }

  .dogue-testimonial-author p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    letter-spacing: 0.03em;
    font-style: italic;
  }

  .dogue-testimonial-image-container {
    flex: 0 0 350px;
    height: 500px;
    position: relative;
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
  }

  .dogue-testimonial-image-frame {
    width: 100%;
    height: 85%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(167, 139, 199, 0.2);
    border: 10px solid white;
  }

  .dogue-testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .dogue-testimonial-image-container:hover .dogue-testimonial-image {
    transform: scale(1.05);
  }

  .dogue-testimonial-image-caption {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a37cc7;
    font-family: 'CooperBlack', serif;
    letter-spacing: 0.05em;
  }

  .dogue-testimonial-image-edition {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .dogue-boutique-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  .dogue-boutique-nav-prev,
  .dogue-boutique-nav-next {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #a37cc7;
    transition: all 0.3s ease;
  }

  .dogue-boutique-nav-prev:hover,
  .dogue-boutique-nav-next:hover {
    color: #8259a3;
    transform: translateX(-3px);
  }

  .dogue-boutique-nav-next:hover {
    transform: translateX(3px);
  }

  .dogue-boutique-pagination {
    display: flex;
    margin: 0 20px;
  }

  .dogue-boutique-pagination-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: rgba(167, 139, 199, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-boutique-pagination-dot.active {
    background-color: #a37cc7;
    transform: scale(1.2);
  }

  .dogue-boutique-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 80px;
  }

  .dogue-boutique-feature {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(167, 139, 199, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .dogue-boutique-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.15);
  }

  .dogue-boutique-feature-number {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #a37cc7;
    display: block;
    margin-bottom: 10px;
  }

  .dogue-boutique-feature-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
  }

  .dogue-boutique-feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  .dogue-boutique-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }

  .dogue-boutique-bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-boutique-bg-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
  }

  .dogue-boutique-bg-2 {
    width: 800px;
    height: 800px;
    bottom: -400px;
    left: -300px;
  }

  /* Magazine-like corner elements */
  .dogue-testimonial-content::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-image: linear-gradient(45deg, transparent 48%, #f5eefc 48%, #f5eefc 52%, transparent 52%);
    opacity: 0.6;
  }

  /* Adding a magazine-like subtle texture */
  .dogue-boutique-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23a37cc7' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 5v1H5V0zm1 5v1H5L6 5z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
  }

  /* Media Queries */
  @media (max-width: 992px) {
    .dogue-boutique-section {
      padding: 100px 0 80px;
    }

    .dogue-boutique-title {
      font-size: 2.5rem;
    }

    .dogue-boutique-subtitle {
      font-size: 1.1rem;
    }

    .dogue-testimonial-text {
      font-size: 1rem;
    }

    .dogue-testimonial-image-container {
      flex: 0 0 300px;
      height: 450px;
    }
  }

  @media (max-width: 768px) {
    .dogue-boutique-section {
      padding: 80px 0 60px;
    }

    .dogue-boutique-title {
      font-size: 2.2rem;
    }

    .dogue-boutique-subtitle {
      font-size: 1rem;
    }

    .dogue-testimonial-content {
      flex-direction: column-reverse;
    }

    .dogue-testimonial-quote {
      padding: 40px 30px;
    }

    .dogue-testimonial-image-container {
      width: 100%;
      height: 350px;
      flex: 0 0 auto;
    }

    .dogue-testimonial-image-frame {
      height: 80%;
    }

    .dogue-boutique-feature-number {
      font-size: 2.5rem;
    }
  }

  @media (max-width: 576px) {
    .dogue-boutique-title {
      font-size: 2rem;
    }

    .dogue-testimonial-quote-icon {
      transform: scale(1.2);
      top: 20px;
      left: 30px;
    }

    .dogue-testimonial-text {
      padding-top: 20px;
      font-size: 0.95rem;
    }

    .dogue-testimonial-image-container {
      height: 300px;
    }

    .dogue-boutique-features {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  /* Animation classes */
  .dogue-testimonial-slide-in-left {
    animation: dogue-testimonial-slide-in-left 0.8s forwards;
  }

  .dogue-testimonial-slide-in-right {
    animation: dogue-testimonial-slide-in-right 0.8s forwards;
  }

  .dogue-testimonial-slide-out-left {
    animation: dogue-testimonial-slide-out-left 0.8s forwards;
  }

  .dogue-testimonial-slide-out-right {
    animation: dogue-testimonial-slide-out-right 0.8s forwards;
  }

  @keyframes dogue-testimonial-slide-in-left {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes dogue-testimonial-slide-in-right {
    from {
      transform: translateX(100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes dogue-testimonial-slide-out-left {
    from {
      transform: translateX(0);
      opacity: 1;
    }

    to {
      transform: translateX(-100%);
      opacity: 0;
    }
  }

  @keyframes dogue-testimonial-slide-out-right {
    from {
      transform: translateX(0);
      opacity: 1;
    }

    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }

  /* Vogue-inspired photo shadow effect */
  .dogue-testimonial-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
    pointer-events: none;
  }

  /* Subtle shine effect on hover */
  .dogue-testimonial-image-frame::before {
    content: '';
    position: absolute;
    top: -75%;
    left: -75%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    transition: transform 0.6s ease;
    z-index: 1;
    opacity: 0;
  }

  .dogue-testimonial-image-container:hover .dogue-testimonial-image-frame::before {
    transform: rotate(30deg) translateY(-30%);
    opacity: 1;
  }

  .dogue-booking-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f5fa 0%, #fdfbff 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-booking-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 181, 242, 0.15) 0%, rgba(211, 181, 242, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(300px, 300px);
  }

  .dogue-booking-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 169, 230, 0.1) 0%, rgba(199, 169, 230, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(-250px, -250px);
  }

  .dogue-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-booking-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .dogue-booking-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-booking-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-booking-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px auto 0;
    max-width: 600px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-booking-app {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    overflow: hidden;
  }

  .dogue-booking-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
  }

  .dogue-booking-calendar-container {
    flex: 1;
    min-width: 350px;
    padding: 40px;
    background: linear-gradient(135deg, #f5eefc 0%, #f1ebf8 100%);
    border-radius: 20px 0 0 20px;
  }

  .dogue-booking-form-container {
    flex: 1;
    min-width: 350px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dogue-booking-month-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .dogue-booking-month-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0;
    letter-spacing: 0.05em;
  }

  .dogue-booking-month-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #a37cc7;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.1);
  }

  .dogue-booking-month-arrow:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.15);
  }

  .dogue-booking-month-arrow:active {
    transform: scale(0.98);
  }

  .dogue-booking-calendar {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.1);
  }

  .dogue-booking-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 15px;
  }

  .dogue-booking-weekday {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #9b7bb5;
    padding: 10px 0;
    text-transform: uppercase;
  }

  .dogue-booking-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }

  .dogue-booking-day {
    position: relative;
    height: 0;
    padding-bottom: 100%;
    border-radius: 12px;
    background: #f7f5fa;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .dogue-booking-day-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
  }

  .dogue-booking-day-available {
    background: linear-gradient(135deg, #e8d7f7 0%, #f5eefc 100%);
  }

  .dogue-booking-day-limited {
    background: linear-gradient(135deg, #fcf5e5 0%, #fef9ed 100%);
  }

  .dogue-booking-day-unavailable {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  }

  .dogue-booking-day-disabled {
    opacity: 0.3;
    cursor: default;
  }

  .dogue-booking-day-today {
    box-shadow: 0 0 0 2px #a37cc7;
  }

  .dogue-booking-day-selected {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    z-index: 2;
  }

  .dogue-booking-day-selected .dogue-booking-day-number {
    color: white;
    font-weight: 600;
    transform: translate(-50%, -100%);
    top: 40%;
  }

  .dogue-booking-day:not(.dogue-booking-day-disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.15);
  }

  .dogue-booking-day-availability {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: #666;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .dogue-booking-day:hover .dogue-booking-day-availability,
  .dogue-booking-day-selected .dogue-booking-day-availability {
    opacity: 1;
  }

  .dogue-booking-day-selected .dogue-booking-day-availability {
    color: white;
    bottom: 15%;
  }

  .dogue-booking-legend {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .dogue-booking-legend-item {
    display: flex;
    align-items: center;
  }

  .dogue-booking-legend-indicator {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin-right: 6px;
  }

  .dogue-booking-legend-available {
    background: linear-gradient(135deg, #e8d7f7 0%, #f5eefc 100%);
  }

  .dogue-booking-legend-limited {
    background: linear-gradient(135deg, #fcf5e5 0%, #fef9ed 100%);
  }

  .dogue-booking-legend-unavailable {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
  }

  .dogue-booking-legend-text {
    font-size: 0.8rem;
    color: #666;
  }

  .dogue-booking-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .dogue-booking-form-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 30px;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .dogue-booking-service-selector {
    margin-bottom: 30px;
  }

  .dogue-booking-service-selector label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .dogue-booking-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0d5eb;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    background: #fdfbff;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-booking-input:focus {
    outline: none;
    border-color: #a37cc7;
    box-shadow: 0 0 0 3px rgba(163, 124, 199, 0.1);
  }

  .dogue-booking-input::placeholder {
    color: #bbb;
  }

  .dogue-booking-time-slots {
    margin-bottom: 30px;
  }

  .dogue-booking-time-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px;
  }

  .dogue-booking-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
  }

  .dogue-booking-time-slot {
    padding: 12px;
    text-align: center;
    background: #f7f5fa;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-booking-time-slot:hover {
    background: #efe8f6;
  }

  .dogue-booking-time-selected {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.2);
  }

  .dogue-booking-time-selected:hover {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-booking-details-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 10px;
  }

  .dogue-booking-details-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-booking-dog-details,
  .dogue-booking-contact-details {
    margin-bottom: 30px;
  }

  .dogue-booking-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }

  .dogue-booking-form-group {
    flex: 1;
    margin-bottom: 15px;
  }

  .dogue-booking-form-group label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
  }

  .dogue-booking-textarea {
    min-height: 100px;
    resize: vertical;
  }

  .dogue-booking-radio-group {
    display: flex;
    gap: 15px;
  }

  .dogue-booking-radio-label {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }

  .dogue-booking-radio-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .dogue-booking-radio-text {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    background: #f7f5fa;
    transition: all 0.3s ease;
  }

  .dogue-booking-radio-label input:checked+.dogue-booking-radio-text {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
  }

  .dogue-booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .dogue-booking-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #a37cc7;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px 0;
  }

  .dogue-booking-back-btn:hover {
    color: #9b7bb5;
    transform: translateX(-3px);
  }

  .dogue-booking-submit-btn {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    letter-spacing: 0.05em;
  }

  .dogue-booking-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-booking-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.3);
  }

  .dogue-booking-submit-btn:disabled {
    background: linear-gradient(135deg, #e0d5eb 0%, #d3c8e0 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .dogue-booking-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 30px;
  }

  .dogue-booking-illustration {
    margin-bottom: 20px;
    animation: dogue-booking-float 3s infinite ease-in-out;
  }

  @keyframes dogue-booking-float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .dogue-booking-placeholder-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 300px;
    line-height: 1.6;
  }

  .dogue-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
  }

  .dogue-booking-modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  }

  .dogue-booking-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    color: #a37cc7;
  }

  .dogue-booking-modal-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.03em;
  }

  .dogue-booking-modal-message {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
  }

  .dogue-booking-confirmation-details {
    background: linear-gradient(135deg, #f7f5fa 0%, #f1ebf8 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: left;
  }

  .dogue-booking-confirmation-item {
    display: flex;
    margin-bottom: 10px;
  }

  .dogue-booking-confirmation-item:last-child {
    margin-bottom: 0;
  }

  .dogue-booking-confirmation-label {
    flex: 0 0 auto;
    width: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
  }

  .dogue-booking-confirmation-value {
    flex: 1;
    font-size: 0.9rem;
    color: #666;
  }

  .dogue-booking-modal-close {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    letter-spacing: 0.05em;
  }

  .dogue-booking-modal-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  /* Vue Transitions */
  .dogue-booking-calendar-fade-enter-active,
  .dogue-booking-calendar-fade-leave-active {
    transition: all 0.3s ease;
  }

  .dogue-booking-calendar-fade-enter-from,
  .dogue-booking-calendar-fade-leave-to {
    opacity: 0;
    transform: translateY(10px);
  }

  .dogue-booking-form-slide-enter-active,
  .dogue-booking-form-slide-leave-active {
    transition: all 0.4s ease;
  }

  .dogue-booking-form-slide-enter-from,
  .dogue-booking-form-slide-leave-to {
    opacity: 0;
    transform: translateY(20px);
  }

  .dogue-booking-modal-enter-active,
  .dogue-booking-modal-leave-active {
    transition: all 0.3s ease;
  }

  .dogue-booking-modal-enter-from,
  .dogue-booking-modal-leave-to {
    opacity: 0;
  }

  @media (max-width: 992px) {
    .dogue-booking-title {
      font-size: 2.5rem;
    }

    .dogue-booking-subtitle {
      font-size: 1.1rem;
    }

    .dogue-booking-calendar-container,
    .dogue-booking-form-container {
      padding: 30px;
    }
  }

  @media (max-width: 768px) {
    .dogue-booking-section {
      padding: 80px 0;
    }

    .dogue-booking-title {
      font-size: 2.2rem;
    }

    .dogue-booking-subtitle {
      font-size: 1rem;
    }

    .dogue-booking-month-title {
      font-size: 1.5rem;
    }

    .dogue-booking-calendar-container,
    .dogue-booking-form-container {
      padding: 25px;
      border-radius: 20px;
    }

    .dogue-booking-calendar-container {
      border-radius: 20px 20px 0 0;
    }

    .dogue-booking-form-row {
      flex-direction: column;
      gap: 0;
    }

    .dogue-booking-radio-group {
      justify-content: space-between;
    }
  }

  .dogue-tarifs-section {
    padding: 120px 0 100px;
    background-color: #f9f7fd;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }
  .dogue-walkers-section {
    padding: 120px 0 100px;
    background-color: #f9f7fd;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-blog-section {
    padding: 120px 0 100px;
    background-color: #fdfbff;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-blog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
  }

  .dogue-blog-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-blog-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-blog-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px auto 0;
    max-width: 700px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
  }

  .dogue-blog-category {
    background: transparent;
    border: none;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .dogue-blog-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.5) 0%, rgba(245, 238, 252, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
  }

  .dogue-blog-category:hover::before {
    opacity: 1;
  }

  .dogue-blog-category.active {
    color: #fff;
  }

  .dogue-blog-category.active::before {
    opacity: 1;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-blog-featured {
    margin-bottom: 60px;
    position: relative;
  }

  .dogue-blog-featured::before {
    content: 'Featured';
    position: absolute;
    top: -12px;
    left: 30px;
    background: #a37cc7;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
  }

  .dogue-blog-featured-article {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    position: relative;
  }

  .dogue-blog-featured-image {
    flex: 1 1 400px;
    height: auto;
    position: relative;
    overflow: hidden;
  }

  .dogue-blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
  }

  .dogue-blog-featured-article:hover .dogue-blog-featured-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
  }

  .dogue-blog-featured-category {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 1;
  }

  .dogue-blog-featured-category[data-category="wellness"] {
    background: rgba(167, 200, 219, 0.15);
    color: #6a8c9e;
  }

  .dogue-blog-featured-category[data-category="lifestyle"] {
    background: rgba(199, 169, 230, 0.15);
    color: #9b7bb5;
  }

  .dogue-blog-featured-category[data-category="training"] {
    background: rgba(155, 123, 181, 0.15);
    color: #7b5d99;
  }

  .dogue-blog-featured-category[data-category="nutrition"] {
    background: rgba(230, 189, 185, 0.15);
    color: #b77f7a;
  }

  .dogue-blog-featured-content {
    flex: 1 1 400px;
    padding: 40px;
    display: flex;
    flex-direction: column;
  }

  .dogue-blog-featured-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.3;
  }

  .dogue-blog-featured-excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 30px;
    flex: 1;
  }

  .dogue-blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888;
  }

  .dogue-blog-featured-link {
    align-self: flex-start;
    font-size: 0.95rem;
    color: #a37cc7;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    cursor:pointer;
  }

  .dogue-blog-featured-link::after {
    content: '→';
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .dogue-blog-featured-link:hover {
    color: #9b7bb5;
  }

  .dogue-blog-featured-link:hover::after {
    transform: translateX(4px);
  }

  .dogue-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .dogue-blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(167, 139, 199, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .dogue-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.15);
  }

  .dogue-blog-card-image {
    height: 200px;
    position: relative;
    overflow: hidden;
  }

  .dogue-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .dogue-blog-card:hover .dogue-blog-card-image img {
    transform: scale(1.1);
  }

  .dogue-blog-card-category {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 1;
  }

  .dogue-blog-card-category[data-category="wellness"] {
    background: rgba(167, 200, 219, 0.2);
    color: #6a8c9e;
  }

  .dogue-blog-card-category[data-category="lifestyle"] {
    background: rgba(199, 169, 230, 0.2);
    color: #9b7bb5;
  }

  .dogue-blog-card-category[data-category="training"] {
    background: rgba(155, 123, 181, 0.2);
    color: #7b5d99;
  }

  .dogue-blog-card-category[data-category="nutrition"] {
    background: rgba(230, 189, 185, 0.2);
    color: #b77f7a;
  }

  .dogue-blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .dogue-blog-card-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.4;
  }

  .dogue-blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px;
    flex: 1;
  }

  .dogue-blog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #888;
  }

  .dogue-blog-card-link {
    align-self: flex-start;
    font-size: 0.9rem;
    color: #a37cc7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
  }

  .dogue-blog-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #a37cc7;
    transition: width 0.3s ease;
  }

  .dogue-blog-card-link:hover {
    color: #9b7bb5;
  }

  .dogue-blog-card-link:hover::after {
    width: 100%;
  }

  .dogue-blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 60px;
  }

  .dogue-blog-pagination-prev,
  .dogue-blog-pagination-next {
    background: transparent;
    border: none;
    color: #a37cc7;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 15px;
  }

  .dogue-blog-pagination-prev:disabled,
  .dogue-blog-pagination-next:disabled {
    color: #ccc;
    cursor: not-allowed;
  }

  .dogue-blog-pagination-prev:not(:disabled):hover {
    transform: translateX(-3px);
    color: #9b7bb5;
  }

  .dogue-blog-pagination-next:not(:disabled):hover {
    transform: translateX(3px);
    color: #9b7bb5;
  }

  .dogue-blog-pagination-pages {
    display: flex;
    gap: 8px;
  }

  .dogue-blog-pagination-page {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #e8d7f7;
    border-radius: 50%;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-blog-pagination-page:hover:not(.active) {
    background: #f5eefc;
    border-color: #c7a9e6;
    color: #a37cc7;
  }

  .dogue-blog-pagination-page.active {
    background: #a37cc7;
    color: white;
    border-color: #a37cc7;
  }

  .dogue-blog-newsletter {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .dogue-blog-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.3) 0%, rgba(211, 181, 242, 0.3) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
  }

  .dogue-blog-newsletter-content {
    flex: 1;
    position: relative;
    z-index: 2;
  }

  .dogue-blog-newsletter-title {
    font-family: 'CooperBlack', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.03em;
  }

  .dogue-blog-newsletter-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 30px;
    max-width: 500px;
  }

  .dogue-blog-newsletter-form {
    display: flex;
    max-width: 500px;
    margin-bottom: 15px;
  }

  .dogue-blog-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid #e0d5eb;
    border-radius: 30px 0 0 30px;
    font-size: 0.95rem;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
  }

  .dogue-blog-newsletter-input:focus {
    outline: none;
    border-color: #a37cc7;
    box-shadow: 0 0 0 3px rgba(163, 124, 199, 0.1);
  }

  .dogue-blog-newsletter-button {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 25px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-blog-newsletter-button:hover {
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-blog-newsletter-privacy {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }

  .dogue-blog-newsletter-decoration {
    flex: 0 0 auto;
    margin-left: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .dogue-blog-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .dogue-blog-bg-element {
    position: absolute;
  }

  .dogue-blog-bg-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.2) 0%, rgba(245, 238, 252, 0.2) 100%);
    top: -100px;
    right: -150px;
  }

  .dogue-blog-bg-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, #e8d7f7 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.3;
    bottom: 100px;
    left: 50px;
    transform: rotate(15deg);
  }

  .dogue-blog-bg-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c7a9e6, transparent);
    top: 60%;
    left: 10%;
    transform: rotate(-30deg);
  }

  /* Special magazine-inspired features */
  .dogue-blog-featured-article::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    background-image: linear-gradient(45deg, transparent 48%, #f5eefc 48%, #f5eefc 52%, transparent 52%);
    z-index: 1;
  }

  .dogue-blog-card:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    background-image: linear-gradient(45deg, transparent 48%, rgba(211, 181, 242, 0.3) 48%, rgba(211, 181, 242, 0.3) 52%, transparent 52%);
    z-index: 1;
  }

  /* First big letter effect for featured article */
  .dogue-blog-featured-excerpt::first-letter {
    font-family: 'CooperBlack', serif;
    font-size: 2.5em;
    line-height: 0.8;
    float: left;
    margin-right: 6px;
    color: #a37cc7;
  }

.dogue-blog-featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #a37cc7; /* your purple */
  color: white;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.25em 0.75em;
  border-radius: 0.25rem;
  z-index: 10;
}

  /* Responsive styles */
  @media (max-width: 992px) {
    .dogue-blog-section {
      padding: 100px 0 80px;
    }

    .dogue-blog-title {
      font-size: 2.5rem;
    }

    .dogue-blog-subtitle {
      font-size: 1.1rem;
    }

    .dogue-blog-featured-title {
      font-size: 1.6rem;
    }

    .dogue-blog-newsletter {
      padding: 40px;
      flex-direction: column;
    }

    .dogue-blog-newsletter-decoration {
      margin-left: 0;
      margin-top: 30px;
    }
  }

  @media (max-width: 768px) {
    .dogue-blog-section {
      padding: 80px 0 60px;
    }

    .dogue-blog-title {
      font-size: 2.2rem;
    }

    .dogue-blog-subtitle {
      font-size: 1rem;
    }

    .dogue-blog-featured-content {
      padding: 30px;
    }

    .dogue-blog-featured-title {
      font-size: 1.4rem;
    }

    .dogue-blog-featured-excerpt {
      font-size: 1rem;
    }

    .dogue-blog-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .dogue-blog-newsletter-title {
      font-size: 1.8rem;
    }

    .dogue-blog-newsletter-text {
      font-size: 1rem;
    }

    .dogue-blog-newsletter-form {
      flex-direction: column;
    }

    .dogue-blog-newsletter-input {
      border-radius: 30px;
      margin-bottom: 15px;
    }

    .dogue-blog-newsletter-button {
      border-radius: 30px;
      padding: 12px 0;
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .dogue-blog-grid {
      grid-template-columns: 1fr;
    }

    .dogue-blog-featured-image {
      height: 250px;
    }

    .dogue-blog-card-content {
      padding: 20px;
    }

    .dogue-blog-newsletter {
      padding: 30px 20px;
    }
  }

  /* Animation classes */
  .dogue-blog-card,
  .dogue-blog-featured-article {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .dogue-blog-card.visible,
  .dogue-blog-featured-article.visible {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 20px;
  }

  /* Fancy corner folds for cards */
  .dogue-blog-card {
    position: relative;
  }

  .dogue-blog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #f5eefc transparent;
    transition: all 0.3s ease;
  }

  .dogue-blog-card:hover::after {
    border-color: transparent transparent #e8d7f7 transparent;
  }

  /* Magazine-style pull quote effect */
  .dogue-blog-featured-excerpt {
    position: relative;
  }

  .dogue-blog-featured-excerpt::before {
    content: "" ";
 position: absolute;
    top: -10px;
    left: -15px;
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    color: rgba(163, 124, 199, 0.1);
    line-height: 1;
  }

  .dogue-reports-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfbff 0%, #f7f5fa 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-reports-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 181, 242, 0.15) 0%, rgba(211, 181, 242, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(200px, -200px);
  }

  .dogue-reports-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 169, 230, 0.1) 0%, rgba(199, 169, 230, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    transform: translate(-200px, 200px);
  }

  .dogue-reports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-reports-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .dogue-reports-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-reports-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-reports-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px auto 0;
    max-width: 700px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-reports-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
  }

  .dogue-reports-showcase-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .dogue-reports-showcase-tab {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(167, 139, 199, 0.1);
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .dogue-reports-showcase-tab.active {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(167, 139, 199, 0.2);
  }

  .dogue-reports-showcase-tab:hover:not(.active) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 139, 199, 0.15);
    background: #f7f5fa;
  }

  .dogue-reports-showcase-tab-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dogue-reports-device {
    position: relative;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }

  .dogue-reports-device-frame {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(167, 139, 199, 0.2);
    position: relative;
    padding: 20px 10px;
    width: 100%;
    transition: all 0.3s ease;
  }

  .dogue-reports-device-header {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }

  .dogue-reports-device-notch {
    width: 120px;
    height: 25px;
    background: #f0f0f0;
    border-radius: 0 0 15px 15px;
  }

  .dogue-reports-device-content {
    background: #f8f8f8;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 650px;
    overflow-y: auto;
  }

  .dogue-reports-device-content::-webkit-scrollbar {
    width: 5px;
  }

  .dogue-reports-device-content::-webkit-scrollbar-track {
    background: transparent;
  }

  .dogue-reports-device-content::-webkit-scrollbar-thumb {
    background: rgba(167, 139, 199, 0.3);
    border-radius: 10px;
  }

  .dogue-report-header {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .dogue-report-header-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #e8d7f7;
  }

  .dogue-report-dog-profile {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dogue-report-header-info {
    flex: 1;
  }

  .dogue-report-dog-name {
    font-family: 'CooperBlack', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin: 0 0 3px;
  }

  .dogue-report-date {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
  }

  .dogue-report-header-walker {
    font-size: 0.8rem;
    color: #666;
  }

  .dogue-report-content {
    padding: 20px 15px;
    display: none;
  }

  .dogue-report-content.active {
    display: block;
  }

  .dogue-report-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .dogue-report-section-title h4 {
    font-family: 'CooperBlack', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
    margin: 0;
  }

  .dogue-report-duration {
    font-size: 0.8rem;
    color: #a37cc7;
    font-weight: 500;
  }

  /* Route Map Report Styles */
  .dogue-report-map-container {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    background: #f1ebf8;
  }

  .dogue-report-map {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxkZWZzPgogICAgICAgIDxwYXR0ZXJuIGlkPSJncmlkIiB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiPgogICAgICAgICAgICA8cGF0aCBkPSJNIDUwIDAgTCAwIDAgMCA1MCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZTBlMGUwIiBzdHJva2Utd2lkdGg9IjEiLz4KICAgICAgICA8L3BhdHRlcm4+CiAgICA8L2RlZnM+CiAgICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIiAvPgo8L3N2Zz4=');
    position: relative;
  }

  .dogue-report-map svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .dogue-report-map-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 8px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .dogue-report-map-stats {
    display: flex;
    gap: 15px;
  }

  .dogue-report-map-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dogue-report-map-stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
  }

  .dogue-report-map-stat-label {
    font-size: 0.75rem;
    color: #888;
  }

  .dogue-report-highlights-title,
  .dogue-report-chart-title,
  .dogue-report-behaviors-title,
  .dogue-report-recommendations-title,
  .dogue-report-comparison-title {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 8px;
  }

  .dogue-report-highlights-title::after,
  .dogue-report-chart-title::after,
  .dogue-report-behaviors-title::after,
  .dogue-report-recommendations-title::after,
  .dogue-report-comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-report-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .dogue-report-highlight-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
  }

  .dogue-report-highlight-item::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 35px;
    width: 1px;
    height: calc(100% + 10px);
    background: #e8d7f7;
    z-index: 1;
  }

  .dogue-report-highlight-item:last-child::before {
    display: none;
  }

  .dogue-report-highlight-time {
    flex-shrink: 0;
    width: 70px;
    font-size: 0.75rem;
    color: #a37cc7;
    font-weight: 500;
    padding-top: 2px;
  }

  .dogue-report-highlight-content {
    flex: 1;
    position: relative;
  }

  .dogue-report-highlight-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0 0 5px;
  }

  .dogue-report-highlight-marker {
    width: 10px;
    height: 10px;
    background: #a37cc7;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: -22px;
    border: 2px solid white;
    z-index: 2;
  }

  /* Activity Metrics Report Styles */
  .dogue-report-metrics {
    margin-bottom: 25px;
  }

  .dogue-report-metrics-primary {
    margin-bottom: 20px;
  }

  .dogue-report-metric-large {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(167, 139, 199, 0.1);
  }

  .dogue-report-metric-chart {
    width: 80px;
    height: 80px;
    margin-right: 15px;
  }

  .dogue-report-metric-chart-text {
    font-family: 'CooperBlack', serif;
    fill: #333;
    font-size: 10px;
    text-anchor: middle;
    font-weight: 500;
  }

  .dogue-report-metric-info {
    flex: 1;
  }

  .dogue-report-metric-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
  }

  .dogue-report-metric-subtext {
    font-size: 0.8rem;
    color: #888;
  }

  .dogue-report-metrics-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .dogue-report-metric {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(167, 139, 199, 0.08);
  }

  .dogue-report-metric-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5eefc;
    border-radius: 10px;
    margin-right: 12px;
    color: #a37cc7;
  }

  .dogue-report-metric-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
  }

  .dogue-report-activity-chart {
    margin-bottom: 25px;
  }

  .dogue-report-chart-container {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(167, 139, 199, 0.1);
    height: 180px;
    position: relative;
  }

  .dogue-report-chart-placeholder {
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMDAgMTIwIj4KICA8cGF0aCBkPSJNMCwxMjAgTDUsOTggTDEwLDkzIEwyMCw5NiBMMzAsODUgTDQwLDg4IEw1MCw3MCBMNjAsNjUgTDcwLDYwIEw4MCw2OCBMOTAsNzUgTDEwMCw2MCBMMTEwLDUwIEwxMjAsNTUgTDEzMCw1OCBMMTQwLDYzIEwxNTAsNTggTDE2MCw2MCBMMTcwLDcwIEwxODAsODAgTDE5MCw4NSBMMjAwLDc1IEwyMTAsNjggTDIyMCw3NSBMMjMwLDgwIEwyNDAsODUgTDI1MCw4MCBMMjYwLDg1IEwyNzAsOTAgTDI4MCw5NSBMMjkwLDEwMCBMMzAwLDk1IEwzMDAsMTIwIFoiIGZpbGw9InJnYmEoMTYzLCAxMjQsIDE5OSwgMC4yKSIgc3Ryb2tlPSIjYTM3Y2M3IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgLz4KICA8cGF0aCBkPSJNMCwxMjAgTDUsMTEwIEwxMCwxMDggTDIwLDEwNSBMMzAsOTggTDQwLDEwMyBMNTAsOTUgTDYwLDEwMCBMNzAsOTUgTDgwLDEwMiBMOTAsMTA1IEwxMDAsOTAgTDExMCw4NSBMMTIwLDkwIEwxMzAsOTIgTDE0MCw5NSBMMTUwLDkwIEwxNjAsOTIgTDE3MCw5OCBMMTgwLDEwNSBMMTkwLDEwOCBMMjAwLDEwMCBMMjEwLDk1IEwyMjAsOTggTDIzMCwxMDIgTDI0MCwxMDUgTDI1MCwxMDIgTDI2MCwxMDUgTDI3MCwxMDggTDI4MCwxMTAgTDI5MCwxMTIgTDMwMCwxMDggTDMwMCwxMjAgWiIgZmlsbD0icmdiYSgyMTEsIDE4MSwgMjQyLCAwLjMpIiBzdHJva2U9IiNkM2I1ZjIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiAvPgo8L3N2Zz4=');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .dogue-report-chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .dogue-report-chart-legend-item {
    display: flex;
    align-items: center;
  }

  .dogue-report-chart-legend-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    margin-right: 6px;
  }

  .dogue-report-chart-legend-label {
    font-size: 0.8rem;
    color: #666;
  }

  .dogue-report-comparison-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .dogue-report-comparison-metric {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(167, 139, 199, 0.08);
  }

  .dogue-report-comparison-label {
    display: block;
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 8px;
  }

  .dogue-report-comparison-bar {
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 8px;
    position: relative;
  }

  .dogue-report-comparison-bar-previous {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: #d3b5f2;
    border-radius: 4px;
    z-index: 1;
    opacity: 0.7;
  }

  .dogue-report-comparison-bar-current {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: #a37cc7;
    border-radius: 4px;
    z-index: 2;
  }

  .dogue-report-comparison-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
  }

  .dogue-report-comparison-previous {
    color: #888;
  }

  .dogue-report-comparison-current {
    color: #444;
    font-weight: 500;
  }

  /* Behavioral Notes Report Styles */
  .dogue-report-mood {
    margin-bottom: 25px;
  }

  .dogue-report-mood-chart {
    background: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(167, 139, 199, 0.1);
    margin-bottom: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dogue-report-mood-label {
    font-size: 6px;
    fill: #666;
    text-anchor: middle;
    font-weight: 500;
  }

  .dogue-report-mood-summary {
    background: #f5eefc;
    border-radius: 12px;
    padding: 15px;
  }

  .dogue-report-mood-summary p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
  }

  .dogue-report-behaviors {
    margin-bottom: 25px;
  }

  .dogue-report-behavior-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .dogue-report-behavior-item {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 3px 10px rgba(167, 139, 199, 0.08);
  }

  .dogue-report-behavior-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5eefc;
    border-radius: 10px;
    margin-right: 12px;
    color: #a37cc7;
    flex-shrink: 0;
  }

  .dogue-report-behavior-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 4px;
  }

  .dogue-report-behavior-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
  }

  .dogue-report-recommendations-list {
    padding-left: 20px;
    margin: 0;
  }

  .dogue-report-recommendations-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
  }

  .dogue-report-recommendations-list li:last-child {
    margin-bottom: 0;
  }

  /* Photo Gallery Report Styles */
  .dogue-report-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
  }

  .dogue-report-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-report-gallery-item-large {
    grid-column: span 2;
    height: 160px;
  }

  .dogue-report-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .dogue-report-gallery-item:hover .dogue-report-gallery-image {
    transform: scale(1.05);
  }

  .dogue-report-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 15px 10px 8px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }

  .dogue-report-gallery-item:hover .dogue-report-gallery-caption {
    transform: translateY(0);
  }

  .dogue-report-gallery-caption p {
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 3px;
  }

  .dogue-report-gallery-caption span {
    font-size: 0.75rem;
    opacity: 0.8;
  }

  .dogue-report-gallery-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dogue-report-gallery-note {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 15px;
  }

  .dogue-report-gallery-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.2);
  }

  .dogue-report-gallery-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.3);
  }

  /* Report Footer Styles */
  .dogue-report-footer {
    padding: 20px 15px;
    background: white;
    border-top: 1px solid #f0f0f0;
  }

  .dogue-report-footer-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    margin: 0 0 10px;
  }

  .dogue-report-rating {
    display: flex;
    margin-bottom: 15px;
  }

  .dogue-report-rating-star {
    font-size: 1.5rem;
    background: transparent;
    border: none;
    color: #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .dogue-report-rating-star.active {
    color: #f5cb5c;
  }

  .dogue-report-footer-actions {
    display: flex;
    justify-content: space-between;
  }

  .dogue-report-share-btn,
  .dogue-report-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f7f5fa;
    color: #666;
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .dogue-report-share-btn:hover,
  .dogue-report-download-btn:hover {
    background: #f1ebf8;
    color: #a37cc7;
  }

  /* Features Section */
  .dogue-reports-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
  }

  .dogue-reports-feature {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(167, 139, 199, 0.1);
    transition: all 0.3s ease;
  }

  .dogue-reports-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.15);
  }

  .dogue-reports-feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #a37cc7;
  }

  .dogue-reports-feature-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
  }

  .dogue-reports-feature-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
  }

  /* Media Queries */
  @media (max-width: 992px) {
    .dogue-reports-title {
      font-size: 2.5rem;
    }

    .dogue-reports-subtitle {
      font-size: 1.1rem;
    }

    .dogue-reports-feature-title {
      font-size: 1.2rem;
    }
  }

  @media (max-width: 768px) {
    .dogue-reports-section {
      padding: 80px 0;
    }

    .dogue-reports-title {
      font-size: 2.2rem;
    }

    .dogue-reports-subtitle {
      font-size: 1rem;
    }

    .dogue-reports-feature {
      padding: 25px 20px;
    }

    .dogue-reports-feature-icon {
      width: 70px;
      height: 70px;
    }

    .dogue-reports-feature-title {
      font-size: 1.1rem;
    }

    .dogue-reports-feature-text {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .dogue-reports-showcase-tab {
      font-size: 0.85rem;
      padding: 8px 15px;
    }

    .dogue-report-dog-name {
      font-size: 1rem;
    }

    .dogue-report-header-icon {
      width: 40px;
      height: 40px;
    }

    .dogue-report-gallery-item,
    .dogue-report-gallery-item-large {
      height: 120px;
    }
  }

  .dogue-faq-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #fdfbff 0%, #f7f5fa 100%);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
  }

  .dogue-faq-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-faq-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-faq-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px auto 0;
    max-width: 700px;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-faq-search {
    margin-bottom: 30px;
  }

  .dogue-faq-search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
  }

  .dogue-faq-search-input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 50px;
    border: 1px solid #e0d5eb;
    border-radius: 30px;
    font-size: 1rem;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-faq-search-input:focus {
    outline: none;
    border-color: #a37cc7;
    box-shadow: 0 0 0 3px rgba(163, 124, 199, 0.1);
  }

  .dogue-faq-search-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #a37cc7;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .dogue-faq-search-button:hover {
    color: #9b7bb5;
  }

  .dogue-faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
  }

  .dogue-faq-category {
    background: transparent;
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .dogue-faq-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.5) 0%, rgba(245, 238, 252, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
  }

  .dogue-faq-category:hover::before {
    opacity: 1;
  }

  .dogue-faq-category.active {
    color: white;
  }

  .dogue-faq-category.active::before {
    opacity: 1;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-faq-accordion {
    margin-bottom: 50px;
  }

  .dogue-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(167, 139, 199, 0.07);
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: dogue-faq-item-reveal 0.5s forwards;
  }

  @keyframes dogue-faq-item-reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .dogue-faq-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .dogue-faq-item:nth-child(2) {
    animation-delay: 0.2s;
  }

  .dogue-faq-item:nth-child(3) {
    animation-delay: 0.3s;
  }

  .dogue-faq-item:nth-child(4) {
    animation-delay: 0.4s;
  }

  .dogue-faq-item:nth-child(5) {
    animation-delay: 0.5s;
  }

  .dogue-faq-item:nth-child(6) {
    animation-delay: 0.6s;
  }

  .dogue-faq-item:nth-child(7) {
    animation-delay: 0.7s;
  }

  .dogue-faq-item:nth-child(8) {
    animation-delay: 0.8s;
  }

  .dogue-faq-item:nth-child(9) {
    animation-delay: 0.9s;
  }

  .dogue-faq-item:nth-child(10) {
    animation-delay: 1s;
  }

  .dogue-faq-item:hover {
    box-shadow: 0 8px 25px rgba(167, 139, 199, 0.1);
  }

  .dogue-faq-item.active {
    box-shadow: 0 12px 30px rgba(167, 139, 199, 0.15);
  }

  .dogue-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
    position: relative;
  }

  .dogue-faq-question::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 215, 247, 0), rgba(232, 215, 247, 1), rgba(232, 215, 247, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .dogue-faq-item.active .dogue-faq-question::after {
    opacity: 1;
  }

  .dogue-faq-question:hover {
    color: #a37cc7;
  }

  .dogue-faq-item.active .dogue-faq-question {
    color: #a37cc7;
  }

  .dogue-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    margin-left: 15px;
    flex-shrink: 0;
  }

  .dogue-faq-icon-line {
    position: absolute;
    background-color: #a37cc7;
    transition: transform 0.3s ease;
  }

  .dogue-faq-icon-line:first-child {
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
  }

  .dogue-faq-icon-line:last-child {
    top: 0;
    left: 8px;
    width: 2px;
    height: 18px;
    transform-origin: center;
  }

  .dogue-faq-item.active .dogue-faq-icon-line:last-child {
    transform: rotate(90deg);
  }

  .dogue-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  }

  .dogue-faq-item.active .dogue-faq-answer {
    max-height: 2000px;
    transition: max-height 1s ease-in-out;
  }

  .dogue-faq-answer-inner {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s;
  }

  .dogue-faq-item.active .dogue-faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }

  .dogue-faq-answer-inner p {
    margin: 0 0 15px;
  }

  .dogue-faq-answer-inner p:last-child {
    margin-bottom: 0;
  }

  .dogue-faq-answer-inner ul {
    margin: 15px 0;
    padding-left: 20px;
  }

  .dogue-faq-answer-inner li {
    margin-bottom: 8px;
  }

  .dogue-faq-answer-inner li:last-child {
    margin-bottom: 0;
  }

  .dogue-faq-no-results {
    background: white;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(167, 139, 199, 0.1);
    margin-bottom: 50px;
  }

  .dogue-faq-no-results-content {
    max-width: 400px;
    margin: 0 auto;
  }

  .dogue-faq-no-results svg {
    color: #a37cc7;
    opacity: 0.5;
    margin-bottom: 20px;
  }

  .dogue-faq-no-results h3 {
    font-family: 'CooperBlack', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
  }

  .dogue-faq-no-results p {
    font-size: 1rem;
    color: #666;
    margin: 0 0 25px;
    line-height: 1.6;
  }

  .dogue-faq-reset-search {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    letter-spacing: 0.05em;
  }

  .dogue-faq-reset-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
  }

  .dogue-faq-contact {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    position: relative;
    overflow: hidden;
  }

  .dogue-faq-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f5eefc, #a37cc7, #f5eefc);
  }

  .dogue-faq-contact-content {
    flex: 1;
  }

  .dogue-faq-contact h3 {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 10px;
    letter-spacing: 0.03em;
  }

  .dogue-faq-contact p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 25px;
  }

  .dogue-faq-contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
  }

  .dogue-faq-contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
    background: linear-gradient(135deg, #d3b5f2 0%, #ad86d3 100%);
    color: white;
  }

  .dogue-faq-contact-decoration {
    flex: 0 0 auto;
    margin-left: 20px;
    opacity: 0.9;
    animation: dogue-faq-float 4s infinite ease-in-out;
  }

  @keyframes dogue-faq-float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .dogue-faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .dogue-faq-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-faq-bg-shape-1 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -100px;
  }

  .dogue-faq-bg-shape-2 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
  }

  /* Show/hide FAQ items based on filter */
  .dogue-faq-item.hidden {
    display: none;
  }

  /* Special expandable decorations */
  .dogue-faq-item {
    position: relative;
  }

  .dogue-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.3) 0%, rgba(245, 238, 252, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .dogue-faq-item.active::before {
    opacity: 1;
  }

  /* Pastel dividers between faq items */
  .dogue-faq-accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(232, 215, 247, 0), rgba(232, 215, 247, 1), rgba(232, 215, 247, 0));
  }

  /* Responsive styles */
  @media (max-width: 992px) {
    .dogue-faq-section {
      padding: 100px 0 80px;
    }

    .dogue-faq-title {
      font-size: 2.5rem;
    }

    .dogue-faq-subtitle {
      font-size: 1.1rem;
    }

    .dogue-faq-question {
      font-size: 1rem;
      padding: 18px 20px;
    }

    .dogue-faq-contact {
      padding: 30px;
    }

    .dogue-faq-contact h3 {
      font-size: 1.6rem;
    }

    .dogue-faq-contact p {
      font-size: 1rem;
    }
  }

  @media (max-width: 768px) {
    .dogue-faq-section {
      padding: 80px 0 60px;
    }

    .dogue-faq-title {
      font-size: 2.2rem;
    }

    .dogue-faq-subtitle {
      font-size: 1rem;
    }

    .dogue-faq-categories {
      flex-wrap: wrap;
    }

    .dogue-faq-contact {
      flex-direction: column;
      text-align: center;
    }

    .dogue-faq-contact-decoration {
      margin-left: 0;
      margin-top: 20px;
    }

    .dogue-faq-contact-button {
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .dogue-faq-question {
      font-size: 0.95rem;
      padding: 16px 18px;
    }

    .dogue-faq-question span {
      flex: 1;
      padding-right: 15px;
    }

    .dogue-faq-icon {
      width: 16px;
      height: 16px;
    }

    .dogue-faq-icon-line:first-child {
      width: 16px;
    }

    .dogue-faq-icon-line:last-child {
      height: 16px;
    }

    .dogue-faq-answer-inner {
      padding: 0 18px 18px;
      font-size: 0.9rem;
    }
  }

  .dogue-contact-section {
    padding: 120px 0 100px;
    background-color: #fbf9fe;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
  }

  .dogue-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
  }

  .dogue-contact-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
  }

  .dogue-contact-title {
    font-family: 'CooperBlack', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
  }

  .dogue-contact-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-contact-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 30px 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }

  .dogue-contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    position: relative;
  }

  .dogue-contact-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    position: relative;
    overflow: hidden;
    display:none;
  }

  .dogue-contact-info-content {
    position: relative;
    z-index: 2;
  }

  .dogue-contact-brand {
    margin-bottom: 40px;
    position: relative;
  }

  .dogue-contact-brand::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-contact-brand-name {
    font-family: 'CooperBlack', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 10px;
    letter-spacing: 0.1em;
  }

  .dogue-contact-brand-tagline {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    letter-spacing: 0.03em;
  }

  .dogue-contact-details {
    margin-bottom: 40px;
  }

  .dogue-contact-detail {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
  }

  .dogue-contact-detail:last-child {
    margin-bottom: 0;
  }

  .dogue-contact-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f5eefc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #a37cc7;
    transition: all 0.3s ease;
  }

  .dogue-contact-detail:hover .dogue-contact-detail-icon {
    background: #e8d7f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.1);
  }

  .dogue-contact-detail-label {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 5px;
  }

  .dogue-contact-detail-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
  }

  .dogue-contact-socials {
    position: relative;
  }

  .dogue-contact-socials::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-contact-socials-title {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    margin: 0 0 15px;
  }

  .dogue-contact-social-links {
    display: flex;
    gap: 15px;
  }

  .dogue-contact-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5eefc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a37cc7;
    transition: all 0.3s ease;
  }

  .dogue-contact-social-link:hover {
    background: #e8d7f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(167, 139, 199, 0.1);
    color: #8259a3;
  }

  .dogue-contact-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .dogue-contact-decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.5) 0%, rgba(211, 181, 242, 0.5) 100%);
    border-radius: 50%;
    opacity: 0.5;
  }

  .dogue-contact-decoration-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #a37cc7, transparent);
    opacity: 0.3;
  }

  .dogue-contact-form-container.visible {
    opacity:1 !important;
    transform: translateY(0) !important;
  }
  .dogue-contact-form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(167, 139, 199, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    max-width:600px;
    margin:auto;
  }

  .dogue-contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(232, 215, 247, 0.3) 0%, rgba(211, 181, 242, 0.3) 100%);
    border-radius: 0 20px 0 100px;
    z-index: 1;
  }

  .dogue-contact-form {
    position: relative;
    z-index: 2;
  }

  .dogue-contact-form-header {
    margin-bottom: 40px;
    position: relative;
  }

  .dogue-contact-form-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #a37cc7;
  }

  .dogue-contact-form-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
  }

  .dogue-contact-form-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
  }

  .dogue-contact-form-fields {
    margin-bottom: 30px;
  }

  .dogue-form-field {
    position: relative;
    margin-bottom: 25px;
  }

  .dogue-form-field-message {
    margin-bottom: 30px;
  }

  .dogue-form-input {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: #333;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 2;
  }

  .dogue-form-textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 15px;
  }

  .dogue-form-label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 1rem;
    color: #888;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
  }

  .dogue-form-input:focus+.dogue-form-label,
  .dogue-form-input:not(:placeholder-shown)+.dogue-form-label,
  .dogue-form-input:valid+.dogue-form-label,
  .dogue-form-select:valid+.dogue-form-label {
    top: -10px;
    font-size: 0.8rem;
    color: #a37cc7;
  }

  .dogue-form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    transition: all 0.3s ease;
  }

  .dogue-form-input:focus~.dogue-form-border,
  .dogue-form-input:valid~.dogue-form-border {
    height: 2px;
    background-color: #a37cc7;
  }

  .dogue-form-error {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 0.8rem;
    color: #ff6b6b;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
  }

  .dogue-form-field.error .dogue-form-error {
    opacity: 1;
    transform: translateY(0);
  }

  .dogue-form-field.error .dogue-form-border {
    background-color: #ff6b6b;
    height: 2px;
  }

  .dogue-form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }

  .dogue-form-select-arrow {
    position: absolute;
    top: 15px;
    right: 5px;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
  }

  .dogue-form-input:focus~.dogue-form-select-arrow {
    color: #a37cc7;
    transform: rotate(180deg);
  }

  .dogue-form-field-checkbox {
    margin-top: 35px;
  }

  .dogue-form-checkbox-container {
    /* display: flex; */
    display:none;
    align-items: flex-start;
  }

  .dogue-form-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .dogue-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
  }

  .dogue-form-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .dogue-form-checkbox-custom svg {
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  }

  .dogue-form-checkbox:checked+.dogue-form-checkbox-label .dogue-form-checkbox-custom {
    background-color: #a37cc7;
    border-color: #a37cc7;
  }

  .dogue-form-checkbox:checked+.dogue-form-checkbox-label .dogue-form-checkbox-custom svg {
    opacity: 1;
    transform: scale(1);
  }

  .dogue-form-checkbox-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-top: 1px;
  }

  .dogue-contact-form-submit {
    text-align: right;
  }

  .dogue-contact-submit-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
    position: relative;
    overflow: hidden;
  }

  .dogue-contact-submit-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 80%);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
  }

  .dogue-contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
  }

  .dogue-contact-submit-btn:hover::before {
    opacity: 1;
    transform: rotate(45deg);
  }

  .dogue-contact-submit-text {
    position: relative;
    z-index: 2;
  }

  .dogue-contact-submit-icon {
    margin-left: 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
  }

  .dogue-contact-submit-btn:hover .dogue-contact-submit-icon {
    transform: translateX(3px);
  }

  .dogue-contact-submit-btn:disabled {
    background: #e0e0e0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }

  .dogue-contact-submit-btn:disabled::before {
    display: none;
  }

  .dogue-contact-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .dogue-contact-success.active {
    opacity: 1;
    pointer-events: auto;
  }

  .dogue-contact-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5eefc 0%, #e8d7f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a37cc7;
    margin: 0 auto 25px;
  }

  .dogue-contact-success-title {
    font-family: 'CooperBlack', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    margin: 0 0 15px;
    letter-spacing: 0.05em;
  }

  .dogue-contact-success-text {
    font-size: 1rem;
    color: #666;
    margin: 0 0 30px;
    line-height: 1.6;
  }

  .dogue-contact-success-btn {
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(167, 139, 199, 0.2);
  }

  .dogue-contact-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(167, 139, 199, 0.3);
  }

  .dogue-contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .dogue-contact-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  }

  .dogue-contact-bg-shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
  }

  .dogue-contact-bg-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
  }

  .dogue-contact-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a37cc7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }

  /* Animation styles for form interactions */
  @keyframes dogue-form-shake {

    0%,
    100% {
      transform: translateX(0);
    }

    20%,
    60% {
      transform: translateX(-5px);
    }

    40%,
    80% {
      transform: translateX(5px);
    }
  }

  .dogue-form-field.error {
    animation: dogue-form-shake 0.6s;
  }

  @keyframes dogue-form-success {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }

    100% {
      transform: scale(1);
    }
  }

  .dogue-form-field.success .dogue-form-border {
    background-color: #6dca89;
    height: 2px;
    animation: dogue-form-success 0.6s;
  }

  /* Loading state for submit button */
  .dogue-contact-submit-btn.loading .dogue-contact-submit-text {
    visibility: hidden;
  }

  .dogue-contact-submit-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: dogue-spinner 0.8s linear infinite;
    z-index: 2;
  }

  @keyframes dogue-spinner {
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  /* Media Queries */
  @media (max-width: 992px) {
    .dogue-contact-section {
      padding: 100px 0 80px;
    }

    .dogue-contact-title {
      font-size: 2.5rem;
    }

    .dogue-contact-subtitle {
      font-size: 1.1rem;
    }

    .dogue-contact-info,
    .dogue-contact-form-container {
      padding: 30px;
    }

    .dogue-contact-brand-name {
      font-size: 2rem;
    }

    .dogue-contact-form-title {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 768px) {
    .dogue-contact-section {
      padding: 80px 0 60px;
    }

    .dogue-contact-title {
      font-size: 2.2rem;
    }

    .dogue-contact-subtitle {
      font-size: 1rem;
    }

    .dogue-contact-layout {
      gap: 30px;
    }

    .dogue-contact-brand-name {
      font-size: 1.8rem;
    }

    .dogue-contact-detail-icon {
      width: 36px;
      height: 36px;
    }

    .dogue-contact-form-title {
      font-size: 1.4rem;
    }

    .dogue-contact-submit-btn {
      width: 100%;
      justify-content: center;
    }

    .dogue-contact-success {
      padding: 30px 20px;
    }

    .dogue-contact-success-icon {
      width: 60px;
      height: 60px;
    }

    .dogue-contact-success-title {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .dogue-contact-social-links {
      flex-wrap: wrap;
    }

    .dogue-form-checkbox-text {
      font-size: 0.8rem;
    }
  }

  /* Special hover effects for inputs */
  .dogue-form-input:focus {
    animation: dogue-input-glow 1.5s ease-in-out infinite alternate;
  }

  @keyframes dogue-input-glow {
    from {
      box-shadow: 0 0 0 rgba(163, 124, 199, 0);
    }

    to {
      box-shadow: 0 5px 10px -5px rgba(163, 124, 199, 0.1);
    }
  }

  /* Elegant focus style for the entire field */
  .dogue-form-field:focus-within {
    transform: translateY(-1px);
  }

  /* Special animation for textarea resize handle */
  .dogue-form-textarea {
    background-image: linear-gradient(to right, transparent 8px, #f5eefc 8px, #f5eefc 10px, transparent 10px);
    background-position: right bottom;
    background-repeat: repeat-x;
    background-size: 20px 10px;
  }

  .dogue-form-textarea:focus {
    background-image: linear-gradient(to right, transparent 8px, #a37cc7 8px, #a37cc7 10px, transparent 10px);
  }

  /* Overlay for the form while submitting */
  .dogue-contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .dogue-contact-form-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .dogue-contact-form-overlay-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e8d7f7;
    border-top: 3px solid #a37cc7;
    border-radius: 50%;
    animation: dogue-spinner 1s linear infinite;
  }

.tarif-section {
  /* padding: 4rem 1rem;/ */
  /* background-color: #f9f9fc; */
}

.tarif-header, .walker-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tarif-title {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.tarif-subtitle {
  font-size: 1rem;
  color: #6b6b83;
}

.tarif-grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(490px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: auto;
}

.tarif-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 30px;
  padding-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 95%;
  margin: auto;
}

.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.card-icon {
  font-size: 1.8rem;
}

.card-title {
  flex: 1;
  margin: 0 13px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
}

.card-price {
  background: linear-gradient(135deg, #c7a9e6 0%, #a37cc7 100%);
  color: #fff;
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  width: 120px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(167, 139, 199, 0.2);
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
