/* Core CSS Reset and Variables */
:root {
    --primary-color: #00CED1;
    --primary-dark: #008B8B;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --premium-gold: #ecaf05;
    --premium-gold-dark: #B8860B;
    --premium-gradient: linear-gradient(135deg, var(--premium-gold), var(--premium-gold-dark));
    --family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --family-monospace: monospace;
    --render-mode: optimizeLegibility;
    --size-1: 3rem;
    --size-2: 2.5rem;
    --size-3: 2rem;
    --size-4: 1.5rem;
    --size-5: 1.25rem;
    --size-6: 1rem;
    --size-7: 0.75rem;
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
}

/* Base Styles */
html {
    background-color: white;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: var(--render-mode);
}

body {
    color: #4a4a4a;
    font-size: 1em;
    font-weight: var(--weight-normal);
    line-height: 1.5;
    font-family: var(--family-sans-serif);
}

.has-text-dark{
    color:#3a4848;
}

/* Grid System */
.container {
    flex-grow: 1;
    margin: 0 auto;
    position: relative;
    width: auto;
    padding: 0 0.50rem;
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (min-width: 1216px) {
    .container {
        max-width: 1152px;
    }
}

@media screen and (min-width: 1408px) {
    .container {
        max-width: 1344px;
    }
}

.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    margin-top: -0.75rem;
}

.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 0.75rem;
}

/* Typography */
.title {
    color: #363636;
    font-size: 2rem;
    font-weight: var(--weight-semibold);
    line-height: 1.125;
}

.border-das {
    background-image: url("img/dual-underline2.svg") ;
    background-size: contain; /* or cover, depending on the desired effect */
    background-repeat: no-repeat;
    background-position: bottom;
    background-repeat: no-repeat;
    font-size: inherit;
    }

.subtitle {
    color: #4a4a4a;
    font-size: 2rem;
    font-weight: var(--weight-normal);
    line-height: 1.25;
}

/* Navigation */
.navbar {
    background: white !important;
    min-height: 3.25rem;
    position: relative;
    z-index: 30;
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    width: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    min-height: 3.25rem;
}

.navbar.is-fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}

.navbar-brand {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    min-height: 3.25rem;
}

.navbar-menu {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
}

.navbar-end {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.navbar-item {
    color: #4a4a4a !important;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    position: relative;
}

.navbar-item:hover {
    color: var(--primary-color) !important;
    background-color: transparent !important;
}

.navbar-burger {
    display: none;
    cursor: pointer;
    height: 3.25rem;
    width: 3.25rem;
    margin-left: auto;
    padding: 0;
    position: relative;
}

.navbar-burger span {
    background-color: #4a4a4a;
    display: block;
    height: 2px;
    width: 16px;
    left: calc(50% - 8px);
    position: absolute;
    transform-origin: center;
    transition-duration: 86ms;
    transition-property: background-color, opacity, transform;
    transition-timing-function: ease-out;
}

.navbar-burger span:nth-child(1) {
    top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
    top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
    top: calc(50% + 4px);
}

.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

@media screen and (max-width: 1023px) {
    .navbar > .container {
        display: flex;
        padding: 0 1rem;
    }

    .navbar-brand {
        flex: 1;
    }

    .navbar-burger {
        display: block;
    }

    .navbar-menu {
        display: none;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        padding: 0;
        margin: 0;
    }

    .navbar-menu.is-active {
        display: block;
    }

    .navbar-end {
        display: block;
        padding: 0.5rem 0;
    }

    .navbar-item {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #4a4a4a !important;
        width: 100%;
        text-align: center;
    }

    .navbar-item:hover {
        background-color: #f5f5f5 !important;
    }

    .navbar-item .button {
        width: 100%;
        margin: 0.5rem 0;
        justify-content: center;
    }

    .navbar-item .button.is-primary.is-outlined {
        color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
    }

    .navbar-item .button.is-primary.is-outlined:hover {
        background-color: var(--primary-color) !important;
        color: white !important;
    }
}

.navbar-item .button {
    height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
}

/* Buttons */
.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    display: inline-flex;
    font-size: 1rem;
    height: 2.5em;
    justify-content: flex-start;
    line-height: 1.5;
    padding-bottom: calc(0.5em - 1px);
    padding-left: calc(0.75em - 1px);
    padding-right: calc(0.75em - 1px);
    padding-top: calc(0.5em - 1px);
    position: relative;
    vertical-align: top;
    cursor: pointer;
}

.button.is-white {
    background-color: white;
    border-color: transparent;
    color: #0a0a0a;
}

.button.is-outlined {
    background-color: transparent;
    border-color: currentColor;
}

/* Hero Section */


.hero.is-medium {
    min-height: 14rem;
}

.hero-body {
    flex-grow: 1;
    flex-shrink: 0;
    padding: 3rem 1.5rem;
}

/* Cards */
.card {
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    color: #4a4a4a;
    max-width: 100%;
    position: relative;
}

.card-content {
    padding: 1.5rem;
}

/* Sections */
.section {
    padding: 1rem 1.5rem;
}

/* Utilities */
.has-text-centered {
    text-align: center !important;
}

.has-text-white {
    color: white !important;
}
.has-text-dark-red {
    color:rgb(202, 3, 3) !important;
}

.has-background-white {
    background-color: white !important;
}

.has-background-light {
    background-color: #f5f5f5 !important;
}

.is-vcentered {
    align-items: center !important;
}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mt-6 { margin-top: 3rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 0.75rem !important; }
.ml-4 { margin-left: 1rem !important; }
.ml-5 { margin-left: 1.5rem !important; }
.ml-6 { margin-left: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-5 { padding-top: 1.5rem !important; }
.pt-6 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 0.75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.5rem !important; }
.pb-6 { padding-bottom: 3rem !important; }

/* Override Bulma's primary color */
.is-primary {
    background-color: var(--primary-color) !important;
}

.has-text-primary {
    color: var(--primary-dark) !important;
}

.has-background-primary {
    background-color: var(--primary-color) !important;
}

.has-background-primary-light {
    background-color: rgba(0, 206, 209, 0.1) !important;
}

.has-background-primary-dark {
    background-color: var(--primary-dark) !important;
}

/* Button overrides */
.button.is-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.button.is-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.button.is-primary.is-outlined {
    background-color: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.button.is-primary.is-outlined:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Navigation Styles */
.navbar {
    background: var(--gradient);
}

.navbar-item {
    color: white !important;
}

.navbar-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Hero Section */

.hero {
    background: #3adfe8;
    background: linear-gradient(180deg,rgba(162, 226, 235, 1) 0%, rgba(240, 252, 255, 0.44) 100%) !important; 
    align-items: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 3.25rem;
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Cards */
.team-card {
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Contact Cards */
.contact-card {
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Demo Cards */
.demo-card {
    transition: transform 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-content {
    position: relative;
    width: calc(50% - 2rem);
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 1rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -2rem;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -2rem;
}

/* Main Content Spacing */
.main-content {
    padding: 2rem 0;
}

/* Responsive Images */
.image img {
    max-width: 70%;
    height: auto;
}
.image slider-image {
    max-width: 30% !important;
    height: calc(width * 0.3) !important;
}

/* Default footer styles */
footer {
    padding: 2rem 4rem;
    /* ...other styles... */
  }
  
  /* Responsive adjustment for mobile devices */
  @media (max-width: 600px) {
    footer {
      padding: 1.5rem 1rem;
      text-align: center;
    }
    footer .columns {
      flex-direction: column;
      gap: 1.5rem;
    }
    footer .column {
      width: 100%;
      margin-bottom: 1rem;
    }
  }

/* Utility Classes */
.has-gradient-background {
    background: var(--gradient);
}

.has-rounded-corners {
    border-radius: 8px;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Button Styles */
.cta-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .timeline::before {
        left: 0;
    }

    .timeline-content {
        width: calc(100% - 2rem);
        margin-left: 2rem !important;
    }

    .timeline-content::before {
        left: -2rem !important;
        right: auto !important;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Section Spacing */
.section {
    padding: 2rem 1.5rem;
}

/* Text Colors */
.has-text-primary {
    color: var(--primary-color) !important;
}

/* Background Colors */
.has-background-primary-light {
    background-color: rgba(0, 206, 209, 0.1) !important;
}

/* Border Colors */
.has-border-primary {
    border-color: var(--primary-color) !important;
}

/* Icon Styles */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon.is-large {
    font-size: 2rem;
}

/* Notification Styles */
.notification {
    border-radius: 8px;
    padding: 1.5rem;
}

.notification.is-success {
    background-color: #48c78e;
    color: rgb(1, 14, 3);
}
.notification.is-danger {
    background-color: #f1885e;
    color: rgb(46, 1, 1);
}



/* Box Styles */
.box {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Table Styles */
.table {
    width: 100%;
    margin-bottom: 1rem;
}

.table th {
    background-color: var(--primary-color);
    color: white;
}

/* List Styles */
.list {
    list-style: none;
    padding: 0;
}

.list-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
}

/* Link Styles */
a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* Input Styles */
.input:focus, .textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.125em rgba(0, 206, 209, 0.25);
}

/* Select Styles */
.select:not(.is-multiple):not(.is-loading)::after {
    border-color: var(--primary-color);
}

/* Checkbox Styles */
.checkbox:hover {
    color: var(--primary-color);
}

/* Radio Styles */
.radio:hover {
    color: var(--primary-color);
}

/* Progress Bar Styles */
.progress::-webkit-progress-value {
    background-color: var(--primary-color);
}

/* Tag Styles */
.tag {
    background-color: var(--primary-color);
    color: white;
}

/* Breadcrumb Styles */
.breadcrumb li + li::before {
    color: var(--primary-color);
}

/* Pagination Styles */
.pagination-link.is-current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Tabs Styles */
.tabs.is-boxed li.is-active a {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Modal Styles */
.modal-card-head {
    background-color: var(--primary-color);
    color: white;
}

/* Dropdown Styles */
.dropdown-item.is-active {
    background-color: var(--primary-color);
    color: white;
}

/* Message Styles */
.message-header {
    background-color: var(--primary-color);
    color: white;
}

/* Panel Styles */
.panel-heading {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section Responsive Fixes */


@media screen and (max-width: 768px) {
    .hero-body {
        padding-top: 4rem !important;
    }

    .title.is-1 {
        font-size: 2rem;
        /* margin-top: 1rem; */
    }
}

@media screen and (min-width: 769px) {
    .hero-body {
        padding-top: 2rem !important;
    }

    .title.is-1 {
        margin-top: 0;
    }
}

/* Feature Section Fixes */

 .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
  }
  .dot.active {
    background-color: #3273dc; /* Bulma's primary color */
  }
  .feature-list {
    list-style: none !important; /* Remove default list styling */
    padding-left: 1.5em; /* Add some left padding for the checkmark */
    position: relative; /* Position the checkmark absolutely */
}

.feature-list li::before {
    content: '✓'; /* Unicode checkmark character */
    position: absolute;
    left: 0; /* Position checkmark to the left */
    color: var(--primary-color); /* Use primary color */
  }
/* Preview boxes styling */
.google-search-preview,
.google-business-preview {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 1rem auto;
    max-width: 90%;
}

.search-bar {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.search-result h4 {
    color: #1a0dab;
    margin-bottom: 0.5rem;
}

.search-result .url {
    color: #006621;
    font-size: 0.9em;
    margin-bottom: 0.5rem;
}

.business-header {
    margin-bottom: 1rem;
}

.rating {
    color: rgb(247, 176, 23);
    margin: 0.5rem 0;
}

.business-stats {
    margin-top: 1rem;
}

.business-stats div {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

/* Premium Pricing Styles */
.pricing-card.premium {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(184, 134, 11, 0.15));
    transform: scale(1.05);
    z-index: 1;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.pricing-card.premium:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.pricing-card.premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--premium-gradient);
    z-index: -1;
    border-radius: 8px;
    opacity: 0.15;
    filter: blur(8px);
}

.pricing-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%,
        rgba(255, 215, 0, 0) 50%,
        rgba(184, 134, 11, 0.1) 100%);
    border-radius: 6px;
    pointer-events: none;
}

.pricing-card.premium .pricing-header {
    background: var(--premium-gradient);
    color: white;
    padding: 1.5rem;
    margin: -1.5rem -1.5rem 1.5rem -1.5rem;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.pricing-card.premium .price {
    color: var(--premium-gold);
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
    margin: 1.5rem 0;
}

.pricing-card.premium .feature-list {
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.pricing-card.premium .feature-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card.premium .feature-list li::before {
    content: '✓';
    color: var(--premium-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
}

.pricing-card.premium .button {
    background: var(--premium-gradient);
    border: none;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.pricing-card.premium .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--premium-gold-dark), var(--premium-gold));
}

.premium-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--premium-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    z-index: 2;
}

/* Remove default arrow from <details> */
details > summary {
  list-style: none;           /* Remove default list style */
  cursor: pointer;
}

details > summary::-webkit-details-marker {
  display: none;              /* Chrome, Safari, Edge */
}

details > summary::marker {
  display: none;              /* Firefox */
} 

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff3860;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8em;
    margin-right: 10px;
}

.card, .pricing-card {
    position: relative;
}

/* Make sure the discount badge doesn't overlap with premium badge */
.pricing-card.premium .discount-badge {
    top: 50px;
}

/* Adjust old price color for white text */
.has-text-white .old-price {
    color: rgba(255, 255, 255, 0.7);
}

.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline;
}

.htmx-request .htmx-default {
    display: none;
}

.notification {
    margin-top: 1rem;
}

/* Add animation for the spinner */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Disable form during submission */
form.htmx-request .input,
form.htmx-request .textarea,
form.htmx-request button {
    opacity: 0.7;
    pointer-events: none;
}

/* Success notification fade out */
.notification.is-success {
    animation: fadeOut 5s forwards;
    animation-delay: 3s;
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    .navbar-burger {
        display: block;
        cursor: pointer;
        height: 3.25rem;
        width: 3.25rem;
        margin-left: auto;
        position: relative;
    }

    .navbar-burger span {
        background-color: currentColor;
        display: block;
        height: 1px;
        left: calc(50% - 8px);
        position: absolute;
        transform-origin: center;
        transition-duration: 86ms;
        transition-property: background-color, opacity, transform;
        transition-timing-function: ease-out;
        width: 16px;
        font-weight: bold;
    }

    .navbar-burger span:nth-child(1) {
        top: calc(50% - 6px);
    }

    .navbar-burger span:nth-child(2) {
        top: calc(50% - 1px);
    }

    .navbar-burger span:nth-child(3) {
        top: calc(50% + 4px);
    }

    .navbar-burger.is-active span:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .navbar-burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-burger.is-active span:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Google Maps and Photos Styling */
.maps-photos-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.google-maps-snippet {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    background:url('img/gmap-placholder.png') no-repeat ;
    padding: 1rem;
    text-align: center;
    position: relative;
    min-height: 100px;
}

.map-pin {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.map-address {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.map-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.map-actions .button {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    height: auto;
    min-height: 2rem;
}

.practice-photos {
    flex: 1;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.5rem;
    height: 120px;
}

.photo-item {
    background: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease;
}

.photo-item:hover {
    transform: scale(1.02);
}

.photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 0.8rem;
    text-align: center;
    padding: 0.5rem;
}

.photo-placeholder i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.more-photos .photo-placeholder {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.more-photos .photo-placeholder span {
    font-size: 1.2rem;
}

/* Responsive adjustments for mobile */
@media screen and (max-width: 768px) {
    .maps-photos-container {
        gap: 0.75rem;
    }
    
    .map-placeholder {
        min-height: 80px;
        padding: 0.75rem;
    }
    
    .map-actions {
        gap: 0.25rem;
    }
    
    .map-actions .button {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    .photo-grid {
        height: 100px;
        gap: 0.25rem;
    }
    
    .photo-placeholder {
        font-size: 0.7rem;
        padding: 0.25rem;
    }
    
    .photo-placeholder i {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
}
