/* Reset and Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-left {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info-right {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    height: 24px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}

.contact-item i {
    font-size: 14px;
}

/* Navigation Bar */
.navbar {
    padding: 15px 0 !important;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.paw-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logo-small {
    color: #000;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-large {
    color: #FF6B35;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.nav-menu-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E7FFFF;/* #fff*//*ia*/
    border-radius: 40px;/* 25px*//*ia*/
    padding: 10px 30px; /* padding: 8px 20px; */ /*ia*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*//*ia*/
    gap: 20px;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1;
    margin: 0 !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    margin-left: auto;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF6B35;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.user-profile {
    cursor: pointer;
}

.user-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
}

/* Reset button styles for logged-in user icon */
button.user-icon-wrapper {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Hide Bootstrap dropdown caret arrow */
.user-icon-wrapper.dropdown-toggle::after {
    display: none;
}

/* Ensure consistent styling on hover/focus */
.user-icon-wrapper:hover,
.user-icon-wrapper:focus {
    color: #000;
    outline: none;
    box-shadow: none;
}

/* Main Dashboard Container */
.dashboard-container {
    background-color: #fff;
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.dashboard-header {
    margin-bottom: 30px;
}

.dashboard-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.dashboard-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    row-gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: none;
    padding-bottom: 0;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    margin-bottom: 0;
}

.tab-btn:hover {
    color: #48D1CC;
}

.tab-btn.active {
    color: #FF6B35;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #FF6B35;
}

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

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.metric-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.metric-icon.lost-pets {
    background-color: #dc3545;
}

.metric-icon.found-pets {
    background-color: #48D1CC;
}

.metric-icon.reunited {
    background-color: #28a745;
}

.metric-icon.active-users {
    background-color: #6f42c1;
}

.metric-icon.active-reports {
    background-color: #FF6B35;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: #666;
}

/* Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.chart-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chart-header {
    margin-bottom: 20px;
}

.chart-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.chart-subtitle {
    font-size: 14px;
    color: #666;
}

.chart-content {
    position: relative;
}

#pieChart,
#lineChart {
    max-width: 100%;
    height: auto;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: inline-block;
}

.chart-label {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #48D1CC;
    color: #fff;
    padding: 50px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 200px 200px, 180px 180px, 220px 220px, 190px 190px, 210px 210px, 200px 200px;
    background-position: 0 0, 50px 50px, 100px 100px, 150px 150px, 200px 200px, 250px 250px;
    pointer-events: none;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    z-index: 1;
}

.footer-section.footer-links {
    width: 33.33%;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    width: fit-content;
}

.footer-logo .paw-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.footer-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.footer-logo .logo-small {
    color: #333;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo .logo-large {
    color: #FF6B35;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-link-list {
    list-style: none;
    padding-left: 0 !important;
}

.footer-link-list li {
    margin-bottom: 10px;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link-list a:hover {
    color: #fff;
}

.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-icons img {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-title {
        font-size: 28px;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .search-page .pets-grid .pet-card .pet-image {
        width: 360px;
    }
}

/* Bootstrap 5 Integration - Custom styles override Bootstrap where needed */
/* Ensure our custom styles take precedence */
/* Prevent Bootstrap from overriding our navbar styles */

.navbar .container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Pet Reports Page Styles */
.reports-section {
    margin-top: 30px;
}

.filter-reports-heading {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.reports-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-bar-wrapper {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.search-input-filter {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
}

.search-input-filter:focus {
    outline: none;
    border-color: #48D1CC;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    min-width: 120px;
}

.btn-primary {
    padding: 10px 20px;
    background-color: #FF6B35;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

.reports-table-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.table-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
}

.reports-table thead {
    background-color: #f8f9fa;
}

.reports-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    border-bottom: 2px solid #e0e0e0;
}

.reports-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #666;
}

.reports-table tbody tr:hover {
    background-color: #f8f9fa;
}

.reports-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .admin-table thead {
        display: none;
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        margin-bottom: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 12px;
        background: #fff;
    }

    .admin-table td {
        padding: 6px 0;
        border: none;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        text-align: right;
    }

    .admin-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #333;
        text-align: left;
    }

    .admin-table td:last-child {
        padding-bottom: 0;
        justify-content: flex-end;
    }

    .admin-table td:last-child::before {
        content: none;
    }
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-lost {
    background-color: #333;
    color: #fff;
}

.badge-found {
    background-color: #333;
    color: #fff;
}

.badge-active {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.badge-admin {
    background-color: #fff3cd;
    color: #856404;
}

.badge-user {
    background-color: #d1ecf1;
    color: #0c5460;
}

.badge-moderator {
    background-color: #d4edda;
    color: #155724;
}

.badge-inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-reunited {
    background-color: #d4edda;
    color: #155724;
}

.badge-account-user {
    background-color: #e9ecef;
    color: #495057;
}

.badge-account-admin {
    background-color: #6c757d;
    color: #fff;
}

.badge-status-active {
    background-color: #6c757d;
    color: #fff;
}

/* Contact Us Status Badges */
.badge-warning {
    background-color: #ffc107;
    color: #000;
    font-weight: 600;
}

.badge-info {
    background-color: #17a2b8;
    color: #fff;
    font-weight: 600;
}

.badge-success {
    background-color: #28a745;
    color: #fff;
    font-weight: 600;
}

.badge-danger {
    background-color: #dc3545;
    color: #fff;
    font-weight: 600;
}

.badge-secondary {
    background-color: #6c757d;
    color: #fff;
    font-weight: 600;
}

.btn-icon {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
    margin: 0 3px;
}

.btn-view {
    color: #48D1CC;
}

.btn-view:hover {
    color: #3FC5B8;
}

.btn-delete {
    color: #dc3545;
}

.btn-delete:hover {
    color: #c82333;
}

.btn-edit {
    color: #FF6B35;
}

.btn-edit:hover {
    color: #e55a2b;
}

.btn-reunite {
    color: #28a745;
}

.btn-reunite:hover {
    color: #218838;
}

.btn-reunite:disabled {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-reunioned {
    color: #28a745;
}

.btn-reunioned:hover {
    color: #218838;
}

.btn-reunioned:disabled {
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-suspend {
    color: #6c757d;
}

.btn-suspend:hover {
    color: #5a6268;
}

/* Content Page Styles */
.content-header {
    margin-bottom: 30px;
}

.content-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.content-subtitle {
    font-size: 14px;
    color: #666;
}

.badge-published {
    background-color: #FF6B35;
    color: #fff;
}

.badge-featured {
    background-color: #48D1CC;
    color: #fff;
}

.btn-action {
    color: #6c757d;
}

.btn-action:hover {
    color: #5a6268;
}

.nav-links a.active {
    color: #FF6B35;
    font-weight: 600;
}

/* General Pages Styles - Home, Contact, About */

/* Hero Section */
.hero-section {
    background-color: #48D1CC;
    padding: 20px 0;
    color: #fff;
}

.hero-content {
    display: flex;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 49px;
    line-height: 59px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 5px;
    flex-wrap: wrap;
    min-width: 700px;
}

.btn-primary-hero {
    padding: 20px 30px;
    min-width: 200px;
    /*! height: 60px; */
    background: #EA6706;
    border-radius: 50px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-primary-hero:hover {
    background-color: #EA6706;
    color: #fff;
}

.btn-secondary-hero {
    /*! display: flex; */
    /*! flex-direction: row; */
    /*! justify-content: center; */
    /*! align-items: center; */
    padding: 19px 30px;
    gap: 10px;
    /*! min-width: 244px; */
    /*! height: 60px; */
    background: #000000;
    border-radius: 30px;
    /*! border: none; */
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    /*! line-height: 30px; */
    color: #FFFFFF;
    /*! text-decoration: none; */
    /*! transition: background-color 0.3s; */
}

.btn-secondary-hero:hover {
    background-color: #000;
    color: #fff;
}

.btn-teal {
    background-color: #48D1CC;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-teal:hover {
    background-color: #3FC5B8;
    color: #fff;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

/* Statistics Section */
.stats-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: 204px;
    background: #FF6B35;
}

.stats-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: calc(33.34% - 20px);
    filter: drop-shadow(0px 0px 18px rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    flex: none;
    order: 0;
    flex-grow: 0;
    background-color: #e7ffff;/*f0f8ff*//*ia*/
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}
.about-us-page .stat-card {
    background-color: #fff;
}
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-card-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 24px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    /*! gap: 8px; */
    flex: 1;
}

.stat-icon {
    font-size: 24px;
    color: #FF6B35;
    display: block;
    width: 100%;
    text-align: center;
    clear: both;
}

.stat-label {
    font-family: 'Poppins', sans-serif !important;
    font-style: normal;
    font-weight: 700;
    font-size: 20px !important;
    color: #000000 !important;
    /* text-align: justify; */
    display: block;
    width: 100%;
    clear: both;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
    color: #000000;
    /* text-align: justify; */
    display: block;
    width: 100%;
    clear: both;
    margin:10px 0
}

.stat-location {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.6);
}

.stat-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #FF6B35;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: auto;
}

.stat-arrow i {
    color: #fff;
    font-size: 14px;
}

.recent-pets-section {
    padding: 80px 0;
    background-color: #fff;
}

.recent-pets-section .container {
    max-width: 1350px !important;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background-color: #19D2DB;
    color: #fff;
    padding: 17px 40px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin: 0 auto;
    margin-top:26px;
}

.pets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.pet-card {
    position: relative;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pet-card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
}

/* Pet card specific sizing within recent-pets-section */
.recent-pets-section .pets-grid .pet-card {
    width: 408.03px;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}

.recent-pets-section .pets-grid .pet-card .pet-image {
    width: 407px;
    height: 304.56px;
    flex-shrink: 0;
    border-radius: 15px 15px 0px 0px;
}

.recent-pets-section .pets-grid .pet-card .pet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Pet name styling within recent-pets-section */
.recent-pets-section .pets-grid .pet-card .pet-name {
    width: 100%;
    max-width: 357px;
    /*height: 60px;*//*ia*/
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #5A5A5A;
    flex: none;
    flex-grow: 0;
}

.pet-image {
    position: relative;
    width: 407px;
    height: 304.56px;
    overflow: hidden;
    border-radius: 15px 15px 0px 0px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-image img {
    width: 100%;
    height: 100%;
    object-fit: unset;
    border-radius: 15px 15px 0px 0px;
}

/* Fallback styling for broken/missing images */
.pet-image img.image-error,
.pet-image img[src=""],
.pet-image img:not([src]) {
    display: none;
}

.pet-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999999'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.pet-image img:not(.image-error) {
    position: relative;
    z-index: 1;
}

/* Pet Card Carousel Navigation */
.pet-card-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.pet-image:hover .pet-card-carousel-nav {
    opacity: 1;
}

.pet-card-carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
}

.pet-card-carousel-prev {
    left: 8px;
}

.pet-card-carousel-next {
    right: 8px;
}

/* Pet Card Carousel Dots */
.pet-card-carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}

.pet-card-carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pet-card-carousel-dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.pet-card-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

.pet-info {
    padding: 20px;
}

.pet-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pet-status.lost {
    background-color: #fee;
    color: #dc3545;
}

.pet-status.found {
    background-color: #e0f7f5;
    color: #48D1CC;
}

.pet-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.pet-breed {
    width: 100%;
    max-width: 317px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #5A5A5A;
    flex: none;
    flex-grow: 0;
    margin-bottom: 10px;
}

.pet-description {
    width: 100%;
    max-width: 362px;
    height: 60px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #5A5A5A;
    flex: none;
    flex-grow: 0;
    margin-bottom: 15px;
    overflow: hidden;
}

.pet-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    width: 100%;
}

.pet-details span {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 366px;
    /* height: 30px; */
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #5A5A5A;
    flex: none;
    flex-grow: 0;
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    /* white-space: nowrap; */
}

.pet-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.action-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.action-btn:hover {
    color: #FF6B35;
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #fff;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-section .section-label {
    margin-bottom: 40px;
}

.features-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    flex: none;
    flex-grow: 0;
    margin: 0 auto 14px auto;
}

.features-section .section-subtitle {
    /*! height: 20px; */
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    flex: none;
    flex-grow: 0;
    /*! margin: 0 auto; */
}

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

.feature-card {
    background-color: #fff;
    padding: 32px 28px;
    border-radius: 15px;/*15px*//*ia*/
    text-align: left;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 52px;/*48px*//*ia*/
    height: 52px;/*48px*//*ia*/
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 22px;
}

/* Feature icon color variants */
.feature-icon.feature-blue {
    background-color: #eff6ff;/*#e8eef4;*//*ia*/
}
.feature-icon.feature-blue i {
    color: #417bf9;/*#4a5568;*//*ia*/
}

.feature-icon.feature-pink {
    background-color: #faf5ff;/*#fce8f3;*//*ia*/
}
.feature-icon.feature-pink i {
    color: #cf2ffb;/*#e91e8c;*//*ia*/
}

.feature-icon.feature-teal {
    background-color: #f0fdf4;/*#e0f7f7;*//*ia*/
}
.feature-icon.feature-teal i {
    color: #20bf55;/*#14b8a6;*//*ia*/
}

.feature-icon.feature-orange {
    background-color: #fff7ed;/*#fff0e6;*//*ia*/
}
.feature-icon.feature-orange i {
    color: #f65c18;/*#ff6b35;*//*ia*/
}

.feature-icon.feature-magenta {
    background-color: #fdf2f8;/*#fce8f3;*//*ia*/
}
.feature-icon.feature-magenta i {
    color: #e60378;/*#e91e8c;*//*ia*/
}

.feature-icon.feature-cyan {
    background-color: #fef2f2;/*#e0f7f7;*//*ia*/
}
.feature-icon.feature-cyan i {
    color: #19d2db;/*#14b8a6;*//*ia*/
}

/*//////////////////////*//*ia*/

/* Feature icon color variants */

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #14183E;
    margin-bottom: 10px;
}

.feature-card p {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #747582;
    margin: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    /* height: auto; */
}

.cta-section .container {
    width: 100%;
}

.cta-content {
    display: flex;
    justify-content: flex-end;
}

.cta-text {
    padding: 100px 0;
}

.cta-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #FD7E14;
    margin-bottom: 8px;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 16px;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 24px;
    max-width: 480px;
}

.cta-note {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: rgba(0, 0, 0, 0.53);
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-teal {
    background-color: #19D2DB;
    color: #fff;
    padding: 17px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    border: none;
    transition: background-color 0.2s ease;
}

.cta-buttons .btn-teal:hover {
    background-color: #2eb8b8;
}

.cta-buttons .btn-primary-hero {
    background-color: #EA6706;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    border: none;
    transition: background-color 0.2s ease;
}

.cta-buttons .btn-primary-hero:hover {
    background-color: #e55a2b;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background-color: #f5f9f9;
}

.success-stories-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-stories-section .section-label {
    display: inline-block;
    background-color: #19D2DB;
    color: #fff;
    padding: 17px 40px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.success-stories-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin-bottom: 16px;
}

.success-stories-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    max-width: 991px;
    margin: 0 auto;
}

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

.testimonial-card {
    background-color: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #48D1CC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    text-transform: capitalize;
    color: #343434;
    margin-bottom: 2px;
}

.author-info p {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    text-transform: capitalize;
    color: #6B6B6B;
}

.quote-icon {
    color: #19D2DB;
    font-size: 28px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 27px;
    color: #6B6B6B;
    margin: 0;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 0;
    background-color: #fbfbfb;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.form-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #48D1CC;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.info-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #48D1CC;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.contact-text small {
    font-size: 12px;
    color: #999;
}

.faq-block {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    background-color: #fff;
    padding: 80px 0 40px;
    text-align: center;
}

.about-title {
    font-size: 56px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.about-tagline {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-content-box {
    background-color: #48D1CC;
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.8;
}

.about-content-box p {
    margin-bottom: 20px;
}

.about-content-box p:last-child {
    margin-bottom: 0;
}

.about-stats-section {
    background-color: #fff;
}

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

.about-stat-card {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-stat-icon {
    font-size: 48px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.about-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.about-stat-label {
    font-size: 16px;
    color: #666;
}

.how-it-works-section {
    padding: 50px 0 100px;
    background-color: #fff;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.how-it-works-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #EA6706;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto 20px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    margin-right: auto;
    float: left;
}

.how-it-works-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.how-it-works-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Pet Services Pages Styles */

/* Report Page Styles */
.report-page {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.report-header {
    margin-bottom: 30px;
}

.report-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-title i {
    color: #FB2C36;
}

.report-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.info-note {
    background-color: #e0f7f5;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;    
}

.info-note.warning {
    background-color: #fff3cd;
    color: #856404;
}

.info-note i {
    color: #48D1CC;
}

.info-note.warning i {
    color: #ffc107;
}

/*.report-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
*/

.form-section {
    margin-bottom: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.form-section-header{
    /* margin-bottom: 20px; */
}
.form-section-header h4 {
    text-align: left;
    margin-bottom: 0px;
    font-size: 16px;
    font-weight: 500;
}

.form-section-header span {
    text-align: left;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.form-section:last-child {
    border-bottom: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
    margin-bottom: 8px;
}

.contact-info-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 20px;
    /*! margin-bottom: 20px; */
    row-gap: 0px;
}

.contact-info-row .info-group-left,
.contact-info-row .info-group-right {
    display: contents;
}

/*
.report-form .form-group {
    margin-bottom: 20px;
}
*/

.report-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.report-form .form-control {
    /*width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;*/
}

.report-form .form-control:focus {
    outline: none;
    border-color: #48D1CC;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.radio-label input[type="radio"] {
    cursor: pointer;
}

.char-count {
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

.upload-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-upload {
    background-color: #f8f9fa;
    border: 2px dashed #e0e0e0;
    padding: 15px 30px;
    border-radius: 8px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-upload:hover {
    background-color: #e9ecef;
    border-color: #48D1CC;
    color: #48D1CC;
}

.upload-status {
    font-size: 14px;
    color: #666;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-filters {
    background-color: #FF6B35;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Search Page Styles */
.search-page {
    padding: 60px 0;
    background-color: #fff;
}

/* Wider container for search page to fit 3 cards (408px × 3 + gaps) */
.search-page .container {
    max-width: 1350px !important;
}

/* Pet card specific sizing within search-page */
.search-page .pets-grid .pet-card {
    width: 408.03px;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
}

.search-page .pets-grid .pet-card .pet-image {
    width: 407px;
    height: 304.56px;
    flex-shrink: 0;
    border-radius: 15px 15px 0px 0px;
}

.search-page .pets-grid .pet-card .pet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Pet name styling within search-page */
.search-page .pets-grid .pet-card .pet-name {
    width: 100%;
    max-width: 317px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #5A5A5A;
    flex: none;
    flex-grow: 0;
}

.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.search-subtitle {
    font-size: 18px;
    color: #666;
}

.search-controls {
    margin-bottom: 40px;
}

.search-bar-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    position: relative;
}

.search-input {
    flex: 1;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.search-bar-container .search-icon-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
    pointer-events: none;
}

.search-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-dropdown label {
    font-size: 14px;
    color: #666;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
}

.pet-status-badge {
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
}

.pet-status-badge.lost {
    background-color: #FF6B35;
}

.pet-status-badge.found {
    background-color: #48D1CC;
}

.pet-status-badge.reunioned {
    background-color: #28a745;
}

.pet-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 10px;
    gap: 20px; /*15px*//*ia*/
    width: 362px;
    height: 33px;
    background: #F4F4F4;
    border-radius: 5px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
    margin-bottom: 10px;
}

.pet-icons img {
    width: 20px; /*16px*//*ia*/
    height: 20px; /*16px*//*ia*/
    flex: none;
    flex-grow: 0;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.pet-icons .pet-share-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.pet-icons .pet-share-icon-btn:hover {
    opacity: 0.7;
}

.pet-icons .pet-share-icon-btn img {
    pointer-events: auto;
    cursor: pointer;
}

.pet-icons i {
    cursor: pointer;
    transition: color 0.3s;
}

.pet-icons i:hover {
    color: #FF6B35;
}

/* Pet Details Page Styles - New Layout */
.pet-details-page {
    padding: 40px 0;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.pet-details-page .container {
    max-width: 1200px;
}

/* Top Row - Image and Contact Card */
.pet-details-top-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Image Carousel Section */
.pet-image-carousel-section {
    width: 100%;
}

.pet-image-carousel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    aspect-ratio: 16/10;
}

.pet-image-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.pet-image-carousel img.image-error {
    display: none;
}

/* Paw icon fallback for pet-image-carousel */
.pet-image-carousel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999999'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

/* Carousel Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #EA6706;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    color: #fff;
    font-size: 18px;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: #d55e05;
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.photo-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Contact information Card */
.contact-info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.reporter-section {
    margin-bottom: 15px;
}

.reporter-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 5px;
}

.reporter-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.card-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.contact-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-btn-primary {
    background-color: #EA6706;
    color: #fff;
    border: none;
}

.contact-btn-primary:hover {
    background-color: #d55e05;
    color: #fff;
}

.contact-btn-outline {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.contact-btn-outline:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.report-meta-info {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.meta-label {
    color: #888;
}

.meta-value {
    color: #333;
    font-weight: 500;
}

/* Pet Info Card */
.pet-info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    width: 66.66% !important;
    position: relative;
    overflow: visible;
}

.pet-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    position: relative;
    overflow: visible;
}

.pet-title-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pet-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pet-badges {
    display: flex;
    gap: 8px;
}

.badge-reunioned {
    background-color: #4caf50;
    color: #fff;
}

.pet-actions-icons {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.action-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.action-icon-btn:hover {
    background-color: #f5f5f5;
    color: #EA6706;
}

/* Share Dropdown Styles */
.share-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    z-index: 9999;
    padding: 8px 0;
    animation: fadeInDown 0.2s ease-out;
    overflow: visible;
    white-space: nowrap;
    visibility: visible;
    opacity: 1;
    display: block;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-dropdown-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: left;
    font-size: 14px;
    color: #333;
}

.share-dropdown-item:hover {
    background-color: #f5f5f5;
}

.share-dropdown-item img {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.share-dropdown-item span {
    font-weight: 500;
}

.pet-breed-type {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
}

/* Pet Attributes Grid */
.pet-attributes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.attribute-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.attribute-label {
    font-size: 13px;
    color: #888;
}

.attribute-value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Pet description Section */
.pet-description-section {
    padding-top: 20px;
}

.section-label-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.description-content {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Additional Info Section */
.additional-info-section {
    margin-top: 25px;
}

.info-alert {
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-alert i {
    color: #4A90E2;
    font-size: 20px;
    margin-top: 2px;
}

.info-alert strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.info-alert p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Location Info Card */
.location-info-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 66.66% !important;
}

.location-details {
    margin-bottom: 25px;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.location-row i {
    color: #888;
    width: 20px;
    text-align: center;
}

.location-row .location-text {
    font-weight: 600;
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #e9ecef;
}

.map-container iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 25px;
    border-radius: 8px;
    pointer-events: none;
}

.map-overlay i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.map-overlay-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.map-overlay-text span {
    font-size: 14px;
}

.map-overlay-text small {
    font-size: 12px;
    opacity: 0.8;
}

/* Reunited Card */
.reunioned-card {
    background-color: #e8f5e9;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #4caf50;
}

.reunioned-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.reunioned-content i {
    color: #4caf50;
    font-size: 24px;
}

.reunioned-content strong {
    display: block;
    color: #2e7d32;
    margin-bottom: 5px;
    font-size: 16px;
}

.reunioned-content p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

/* Legacy styles kept for backward compatibility */
.pet-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pet-image-section {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.pet-main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.pet-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #333;
}

.image-nav:hover {
    background-color: #fff;
}

.image-nav.prev {
    left: 15px;
}

.image-nav.next {
    right: 15px;
}

.pet-info-section {
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
}

.pet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.pet-name-large {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pet-status-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-status {
    background-color: #FF6B35;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pet-card-stats span {
    width: 33.33%;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.info-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.description-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.additional-info-box {
    background-color: #d1ecf1;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #0c5460;
}

.additional-info-box i {
    font-size: 18px;
    margin-top: 2px;
}

.additional-info-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.reporter-info {
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-buttons .btn {
    width: 100%;
    justify-content: center;
}

.report-meta {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.report-meta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.report-meta p:last-child {
    margin-bottom: 0;
}

.location-info {
    margin-top: 15px;
}

.location-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.map-placeholder {
    background-color: #e9ecef;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    color: #999;
}

.map-placeholder i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #999;
}

.map-placeholder p {
    font-size: 14px;
    margin-bottom: 5px;
}

.map-placeholder small {
    font-size: 12px;
    color: #999;
}

/* Responsive Styles for Pet Services */
@media (max-width: 992px) {
    .pet-details-top-row {
        grid-template-columns: 1fr;
    }
    
    .pet-image-carousel {
        aspect-ratio: 16/9;
    }
    
    .contact-info-card {
        margin-top: 0;
    }
}

/* ============================================================================
    PET COMMENTS SECTION STYLES - MODERN DESIGN
    ============================================================================ */

/* Main content row for pet details and comments side-by-side */
.pet-details-content-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    align-items: flex-start;
    width: 100%;
}

/* Pet Info Card - 66.66% width when comments are present */
.pet-details-content-row .pet-info-card {
    width: 66.66% !important;
    flex-shrink: 0;
    min-width: 0;
}

/* Pet Comments Card - 33.33% width - Modern Design */
.pet-comments-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: calc(33.33% - 10px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    max-height: 670px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.pet-comments-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Modern Header with Gradient - Matching contact-btn-primary */
.comments-header {
    background: linear-gradient(135deg, #EA6706 0%, #d55e05 100%);
    padding: 15px 0px 50px 10px;
    position: relative;
    overflow: hidden;
}

.comments-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.comments-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.comments-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comments-header-text {
    flex: 1;
}

.comments-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.comments-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Comments Loading State */
.comments-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: #6b7280;
}

.comments-loading i {
    font-size: 40px;
    color: #EA6706;
    margin-bottom: 16px;
    animation: spin 1s linear infinite;
}

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

.comments-loading p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

/* Comments Error */
.comments-error {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffe9a6 100%);
    border: none;
    border-left: 4px solid #ffc107;
    border-radius: 12px;
    color: #856404;
    font-size: 14px;
    margin: 16px 24px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
}

.comments-error i {
    color: #ffc107;
    font-size: 18px;
}

/* Load More Button (at top) */
.comments-load-more-top {
    padding: 16px 24px 0;
}

.btn-load-more {
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    color: #495057;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-load-more:hover:not(:disabled) {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-load-more:active:not(:disabled) {
    transform: translateY(0);
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Comments List Container */
.comments-list {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    min-height: 300px;
    max-height: 520px;
    background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 20%);
}

/* Modern Scrollbar for comments list */
.comments-list::-webkit-scrollbar {
    width: 8px;
}

.comments-list::-webkit-scrollbar-track {
    background: transparent;
    margin: 8px 0;
}

.comments-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #cbd5e0 0%, #a0aec0 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.comments-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a0aec0 0%, #718096 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

/* Comments Empty State - Modern */
.comments-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.comments-empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #EA6706 0%, #d55e05 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(234, 103, 6, 0.3);
}

.comments-empty-icon i {
    font-size: 36px;
    color: #ffffff;
}

.comments-empty h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.comments-empty p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Individual Comment Item - Modern Chat Style */
.comment-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #f3f4f6;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item:hover {
    background-color: rgba(234, 103, 6, 0.02);
    margin: 0 -8px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 12px;
}

/* Comment Avatar */
.comment-avatar-wrapper {
    flex-shrink: 0;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #48D1CC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(234, 103, 6, 0.3);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

/* Comment Content */
.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.comment-author-name {
    font-weight: 700;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.2;
}

.comment-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.comment-date i {
    font-size: 11px;
}

/* Comment Body */
.comment-body {
    margin: 0;
}

.comment-body p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Comment Form Wrapper - Modern Design */
.comment-form-wrapper {
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 20px 24px 24px;
    margin-top: auto;
}

.comment-form {
    margin: 0;
}

.comment-input-container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.comment-user-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.comment-user-avatar img,
.comment-user-avatar .comment-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comment-user-avatar .comment-avatar-placeholder {
    background: linear-gradient(135deg, #EA6706 0%, #d55e05 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
}

.comment-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    color: #1f2937;
    resize: none;
    min-height: 90px;
    max-height: 150px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
}

.comment-input:focus {
    outline: none;
    border-color: #EA6706;
    box-shadow: 0 0 0 4px rgba(234, 103, 6, 0.1);
    background: #ffffff;
}

.comment-input::placeholder {
    color: #9ca3af;
}

.comment-input:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Comment Input Footer */
.comment-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.comment-char-count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.comment-word-count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    transition: color 0.2s ease;
}

.comment-word-count.word-count-error {
    color: #dc3545;
    font-weight: 700;
}

.btn-send-comment {
    padding: 10px 24px;
    background: linear-gradient(135deg, #EA6706 0%, #d55e05 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(234, 103, 6, 0.3);
    letter-spacing: 0.3px;
}

.btn-send-comment:hover:not(:disabled) {
    background: linear-gradient(135deg, #d55e05 0%, #c05304 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 103, 6, 0.4);
}

.btn-send-comment:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(234, 103, 6, 0.3);
}

.btn-send-comment:disabled {
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.btn-send-comment span {
    line-height: 1;
}

/* Comment Login Prompt - Modern */
.comment-login-prompt {
    border-top: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 40px 24px;
    text-align: center;
    margin-top: auto;
}

.login-prompt-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #EA6706 0%, #d55e05 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(234, 103, 6, 0.3);
}

.login-prompt-icon i {
    font-size: 26px;
    color: #ffffff;
}

.comment-login-prompt h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.comment-login-prompt p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.login-link {
    color: #EA6706;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
    padding-bottom: 1px;
    border-bottom: 2px solid transparent;
}

.login-link:hover {
    color: #d55e05;
    border-bottom-color: #d55e05;
}

/* ============================================================================
    RESPONSIVE STYLES FOR COMMENTS
    ============================================================================ */

/* Large Desktop - Maintain side by side with proper widths */
@media (min-width: 1201px) {
    .pet-details-content-row {
        display: flex;
        flex-direction: row;
    }
    
    .pet-details-content-row .pet-info-card {
        width: 66.66% !important;
    }
    
    .pet-comments-card {
        width: calc(33.33% - 10px);
    }
}

/* Tablet and below - Stack comments below pet info */
@media (max-width: 1200px) {
    .pet-details-content-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .pet-details-content-row .pet-info-card {
        width: 100% !important;
    }
    
    .pet-comments-card {
        width: 100% !important;
        max-width: 100%;
        max-height: 700px;
    }
}

/* Tablet - Adjust comments card styling */
@media (max-width: 768px) {
    .pet-details-content-row {
        gap: 20px;
    }
    
    .pet-details-content-row .pet-info-card {
        width: 100% !important;
    }
    
    .pet-comments-card {
        width: 100% !important;
        border-radius: 12px;
        max-height: 600px;
    }
    
    .comments-header {
        padding: 20px;
    }
    
    .comments-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .comments-title {
        font-size: 18px;
    }
    
    .comments-count {
        font-size: 12px;
    }
    
    .comments-list {
        padding: 16px;
        max-height: 400px;
    }
    
    .comment-item {
        padding: 12px 0;
        gap: 10px;
    }
    
    .comment-avatar,
    .comment-avatar-placeholder {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .comment-author-name {
        font-size: 13px;
    }
    
    .comment-date {
        font-size: 11px;
    }
    
    .comment-body p {
        font-size: 13px;
    }
    
    .comment-form-wrapper {
        padding: 16px;
    }
    
    .comment-input-container {
        gap: 10px;
    }
    
    .comment-user-avatar,
    .comment-user-avatar img,
    .comment-user-avatar .comment-avatar-placeholder {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .comment-input {
        padding: 12px 14px;
        min-height: 80px;
        font-size: 13px;
    }
    
    .btn-send-comment {
        padding: 8px 20px;
        font-size: 13px;
    }
    .location-info-card {
        width: 100% !important;
    }
}

/* Mobile - Further adjustments */
@media (max-width: 480px) {
    .pet-details-content-row {
        gap: 16px;
    }
    
    .pet-details-content-row .pet-info-card {
        width: 100% !important;
    }
    
    .pet-comments-card {
        width: 100% !important;
    }
    
    .comments-header {
        padding: 16px;
    }
    
    .comments-header-content {
        gap: 12px;
    }
    
    .comments-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .comments-title {
        font-size: 16px;
    }
    
    .comments-list {
        padding: 12px;
    }
    
    .comment-item {
        gap: 8px;
    }
    
    .comment-form-wrapper {
        padding: 12px;
    }
    
    .comment-input-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-send-comment {
        width: 100%;
        justify-content: center;
    }
    
    .comment-char-count {
        order: 2;
        text-align: center;
        margin-top: 8px;
    }
}

/* Kiosk Page Styles */
.kiosk-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    /* max-width: 1158px; */
    min-height: 870px;
    border-radius: 0px;
    flex: none;
    order: 1;
    flex-grow: 0;
    /* margin: 0 auto; */
}

.kiosk-page-wrapper.kiosk-page-wrapper--landscape {
    min-height: 870px;
}

.kiosk-page-wrapper.kiosk-page-wrapper--portrait {
    min-height: 1400px;
}

.kiosk-header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    /* max-width: 1126px; */
    min-height: 56px;
    border-radius: 0px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.kiosk-header-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 100%;
    min-height: 24px;
    border-radius: 0px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.kiosk-logo-icon-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 0px;
    flex: none;
    order: 0;
    flex-grow: 0;
    position: relative;
}

.kiosk-logo-icon {
    width: 24px;
    height: 24px;
}

.kiosk-heading {
    height: 24px;
    border-radius: 0px;
    flex: none;
    order: 1;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #0A0A0A;
    margin: 0;
}

.kiosk-paragraph {
    width: 100%;
    max-width: 559px;
    min-height: 24px;
    border-radius: 0px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #717182;
    margin: 0;
}

.kiosk-main-container {
    width: 100%;
    /* max-width: 1118px; */
    min-height: 707px;
    border-radius: 0px;
    flex: none;
    order: 1;
    flex-grow: 0;
    position: relative;
}

.kiosk-left-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    position: absolute;
    width: 549px;
    min-height: 707.2px;
    left: 0px;
    top: 0px;
    border-radius: 0px;
}

.kiosk-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    width: 549px;
    background: #FFFFFF;
    border: 0.8px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.kiosk-card:first-child {
    min-height: 373.6px;
}

.kiosk-card:last-child {
    min-height: 309.6px;
}

.kiosk-card-header {
    width: 100%;
    min-height: 70px;
    border-radius: 0px;
    flex: none;
    order: 0;
    flex-grow: 0;
    padding: 24px;
    box-sizing: border-box;
}

.kiosk-card-title {
    width: 100%;
    max-width: 494.4px;
    min-height: 16px;
    border-radius: 0px;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #0A0A0A;
    margin: 0 0 6px 0;
}

.kiosk-card-description {
    width: 100%;
    max-width: 494.4px;
    min-height: 24px;
    border-radius: 0px;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #717182;
    margin: 0;
}

.kiosk-card-content {
    width: 100%;
    border-radius: 0px;
    flex: none;
    order: 1;
    flex-grow: 1;
    padding: 0 24px 24px 24px;
    box-sizing: border-box;
}

.kiosk-form-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    max-width: 494.4px;
    border-radius: 0px;
    margin-bottom: 16px;
    position: relative;
}

.kiosk-form-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 100%;
    min-height: 14px;
    border-radius: 0px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: #0A0A0A;
    margin-bottom: 8px;
}

.kiosk-select-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 12px;
    gap: 8px;
    width: 100%;
    max-width: 494.4px;
    height: 36px;
    background: #F3F3F5;
    border-radius: 8px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    position: relative;
}

.kiosk-select-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6px;
}

.kiosk-select-result-item {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Arial', sans-serif;
    color: #0A0A0A;
}

.kiosk-select-result-item:hover {
    background: #F3F4F6;
}

.kiosk-select-result-item--status {
    cursor: default;
    color: #717182;
}

.kiosk-select-result-name {
    font-size: 14px;
    font-weight: 600;
}

.kiosk-select-result-meta {
    font-size: 12px;
    color: #717182;
}

.kiosk-select-element {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: 100%;
    height: 20px;
    border-radius: 0px;
    flex: none;
    order: 0;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #717182;
    background: transparent;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: calc(100% - 24px);
}

.kiosk-select-arrow {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    border-radius: 0px;
    flex: none;
    order: 1;
    flex-grow: 0;
    pointer-events: none;
}

.kiosk-form-section .kiosk-divider {
    position: absolute;
    width: 100%;
    max-width: 494.4px;
    height: 1px;
    left: 0px;
    top: 66px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0px;
}

.kiosk-card-content .kiosk-divider {
    width: 100%;
    max-width: 494.4px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    margin: 16px 0;
}

.kiosk-dimensions-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 30px 0px 0px 0px;
    gap: 16px;
    width: 100%;
    max-width: 494.4px;
    min-height: 50px;
    border-radius: 0px;
    margin-bottom: 16px;
}

.kiosk-dimension-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 239.2px;
    min-height: 50px;
    border-radius: 0px;
    flex: 1;
}

.kiosk-dimension-input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 12px;
    width: 239.2px;
    height: 36px;
    background: #F3F3F5;
    border-radius: 8px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #717182;
    border: none;
    outline: none;
}

.kiosk-presets-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
    width: 100%;
    max-width: 494.4px;
    min-height: 32px;
    border-radius: 0px;
    margin-bottom: 16px;
}

.kiosk-preset-button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 12px;
    gap: 6px;
    height: 32px;
    background: #FFFFFF;
    border: 0.8px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex: none;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0A0A0A;
    cursor: pointer;
    width: 50%;
}

.kiosk-preset-button.active {
    background: #EA6706;
    color: #FFFFFF;
    border-color: #EA6706;
}

.kiosk-generate-button {
    position: relative;
    width: 100%;
    max-width: 494.4px;
    height: 40px;
    background: #EA6706;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
}

.kiosk-generate-icon {
    width: 16px;
    height: 16px;
    border-radius: 0px;
}

.kiosk-distribution-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 24px;
    gap: 16px;
    width: 100%;
    border-radius: 0px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.kiosk-email-input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 12px;
    width: 100%;
    max-width: 494.4px;
    height: 36px;
    background: #F3F3F5;
    border-radius: 8px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #717182;
    border: none;
    outline: none;
}

.kiosk-action-buttons-container {
    width: 100%;
    max-width: 494.4px;
    min-height: 124px;
    border-radius: 0px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.kiosk-action-button {
    box-sizing: border-box;
    width: 100%;
    max-width: 494.4px;
    height: 36px;
    background: #FFFFFF;
    opacity: 0.5;
    border: 0.8px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0A0A0A;
}

.kiosk-action-icon {
    width: 16px;
    height: 16px;
    border-radius: 0px;
}

.kiosk-preview-card {
    box-sizing: border-box;
    position: absolute;
    width: 700px;
    min-height: 397.7px;
    left: 575px;
    top: 0px;
    background: #FFFFFF;
    border: 0.8px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.kiosk-preview-card .kiosk-card-header {
    width: 100%;
    min-height: 70px;
    border-radius: 0px;
    padding: 24px;
    box-sizing: border-box;
}

.kiosk-preview-area-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    width: 100%;
    max-width: 660px;
    height: auto;
    min-height: 400px;
    margin: 24px auto;
    background: #F3F4F6;
    border-radius: 10px;
    position: relative;
}

.kiosk-preview-placeholder {
    width: 100%;
    max-width: 374.69px;
    min-height: 104px;
    border-radius: 0px;
    flex: none;
    order: 0;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
}

.kiosk-preview-qr-icon {
    width: 64px;
    height: 64px;
    opacity: 0.2;
    border-radius: 0px;
    margin-bottom: 16px;
}

.kiosk-preview-placeholder-text {
    width: 100%;
    max-width: 374.69px;
    min-height: 24px;
    border-radius: 0px;
    font-family: 'Arial', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #717182;
    margin: 16px 0 0 0;
}

.kiosk-preview-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive Styles for Kiosk Page */
@media (max-width: 1024px) {
    .kiosk-page-wrapper {
        width: 100%;
        max-width: 1158px;
    }
    
    .kiosk-main-container {
        width: 100%;
        height: auto;
    }
    
    .kiosk-left-column {
        position: relative;
        width: 100%;
    }
    
    .kiosk-preview-card {
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 24px;
    }
}

/* Authentication Pages Styles */
.auth-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.auth-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* Left Visual Section */
.auth-visual-section {
    flex: 1;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1551717743-49959800b1f6?w=800');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(72, 209, 204, 0.85);
    z-index: 1;
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.auth-visual-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.auth-visual-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

/* Right Form Section */
.auth-form-section {
    flex: 1;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* .auth-form-wrapper {
    width: 100%;
    max-width: 450px;
} *//*ia*/

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.auth-logo-find {
    color: #FF6B35 !important;
    font-size: 48px;
    font-weight: 700;
}

.auth-paw {
    color: #48D1CC;
    font-size: 32px;
}

.auth-instruction {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.auth-heading {
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Social Login Buttons */
.social-login-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-social {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-social:hover {
    border-color: #48D1CC;
    background-color: #f8f9fa;
}

.btn-social i {
    font-size: 18px;
}

.btn-social .fa-google {
    color: #4285F4;
}

.btn-social .fa-facebook-f {
    color: #1877F2;
}

/* Auth Form */
.auth-form {
    margin-bottom: 20px;
}

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

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: lowercase;
}

.auth-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: transparent;
}

.auth-form .form-control:focus {
    outline: none;
    border-bottom-color: #FF6B35;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-control {
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    font-size: 16px;
}

.password-toggle:hover {
    color: #333;
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.form-actions-signin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 7px;
    gap: 5px;
    width: 326px;
    height: 23px;
    flex: none;
    flex-grow: 0;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: 21.52px;
    height: 22px;
    flex: none;
    flex-grow: 0;
    cursor: pointer;
    accent-color: #FF6B35;
}

.forgot-password-link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password-link:hover {
    text-decoration: underline;
}

.btn-primary-auth {
    width: 100%;
    max-width: 35%;
    padding: 14px 20px;
    background: #EA6706;
    color: #fff;
    border: none;
    border-radius: 56px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    margin-left: auto;
    float: right;
}

.btn-primary-auth:hover {
    background-color: #d55e05;
    color: #fff;
}

.btn-signin {
    margin-top: 10px;
    background: #EA6706;
    border-radius: 56px;
}

/* Auth Link Text */
.auth-link-text {
    clear: both;
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}

.auth-link-text a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

.auth-link-text a:hover {
    text-decoration: underline;
}

/* User Dashboard Styles */
.user-dashboard-container {
    background-color: #f8f9fa;
    min-height: calc(100vh - 400px);
    padding: 40px 0;
}

.user-dashboard-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.user-dashboard-header i {
    font-size: 40px;
    color: #48D1CC;
}

.user-dashboard-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.user-dashboard-subtitle {
    font-size: 16px;
    color: #666;
    margin: 5px 0 0 0;
}

.user-dashboard-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sidebar Styles */
.user-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 10px;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #666;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.sidebar-item a:hover {
    background-color: #f8f9fa;
    color: #333;
}

.sidebar-item.active a {
    background-color: #FF6B35;
    color: #fff;
}

.badge-count {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.sidebar-item:not(.active) .badge-count {
    background-color: #FF6B35;
    color: #fff;
}

/* User Content Area */
.user-content-area {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Pet Cards Grid */
.pet-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.active {
    background-color: #FF6B35;
    color: #fff;
}

.pet-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback styling for broken/missing images in pet-card-image */
.pet-card-image img.image-error {
    display: none;
}

.pet-card-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23999999'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5s.3-86.2 32.6-96.8s70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7 .9 78.5 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7c-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2C84.9 480 64 459.1 64 433.3v-1.6c0-10.4 1.6-20.8 5.2-30.5zM421.8 282.7c-24.5-14-29.1-51.7-10.2-84.1s54-47.3 78.5-33.3s29.1 51.7 10.2 84.1s-54 47.3-78.5 33.3zM310.1 189.7c-32.3-10.6-46.9-53.9-32.6-96.8s52.1-69.1 84.4-58.5s46.9 53.9 32.6 96.8s-52.1 69.1-84.4 58.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.pet-card-image img:not(.image-error) {
    position: relative;
    z-index: 1;
}

.pet-card-content {
    padding: 20px;
}

.pet-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.pet-card-breed {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.pet-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.pet-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-card-action {
    flex: 1;
    min-width: 100px;
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-card-action:hover {
    background-color: #f8f9fa;
    border-color: #48D1CC;
    color: #48D1CC;
}

.btn-card-action:disabled {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-card-action:disabled:hover {
    background-color: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
}

.btn-card-action.btn-delete:hover {
    background-color: #fee;
    border-color: #dc3545;
    color: #dc3545;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-report-found {
    padding: 12px 30px;
    background-color: #FF6B35;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.btn-report-found:hover {
    background-color: #e55a2b;
}

/* Profile Settings Styles */
.profile-settings-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
}

.profile-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.profile-section-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    /*display: flex;
    flex-direction: column;
    gap: 8px;*/
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-control {
    /*padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fff;
    color: #333;*/
    margin-bottom: 10px;
}

.form-control:read-only {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-edit-profile {
    align-self: flex-start;
    padding: 10px 20px;
    background-color: #FF6B35;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-edit-profile:hover {
    background-color: #e55a2b;
}

/* Notification Settings */
.notification-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.notification-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notification-info label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.notification-info span {
    font-size: 12px;
    color: #666;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: #48D1CC;
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(24px);
}

/* Account Details */
.account-details {
    background-color: #fff;
}

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

.account-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.account-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.badge-account-type {
    background-color: #FF6B35;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

/* ============================================
    ABOUT US PAGE STYLES
    ============================================ */

.about-us-page {
    background-color: #fff;
    min-height: calc(100vh - 200px);
    padding: 25px 0;
}
.about-us-card{
    text-align: center;
}
.about-us-page section {
    padding: 25px 0;
}

/* Story Section */
.story-section {
    padding: 80px 0 50px;
    background-color: #fff;
}

.story-card {
    background-color: #e6f4f7;
    border-radius: 20px;
    padding: 60px 80px;
    margin: 0 auto;
}

.story-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.story-text:last-child {
    margin-bottom: 0;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    display: inline-block;
}

/* How It Works Section */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto;
}

.step-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid #e5e5e5;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    clear: both;
}

.step-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive Styles for About Us Page */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .story-card {
        padding: 40px 35px;
    }
    
    .mission-card {
        padding: 50px 35px;
    }
}

@media (max-width: 1400px) {
    .stats-section .stats-grid {
        width: 100%;
        max-width: 1296px;
    }
}

@media (max-width: 576px) {
    .stats-section .stats-grid {
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: stretch;
    }
    
    .stats-section .stat-card {
        width: 100%;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .story-text {
        font-size: 14px;
    }
    
    .mission-text {
        font-size: 14px;
    }
    
    .story-card {
        padding: 30px 25px;
    }
    
    .mission-card {
        padding: 40px 25px;
    }
}

/* Reset and Base Styles */

/* Header Styles */

/* Top Bar */

/* Navigation Bar */

/* Reset button styles for logged-in user icon */

/* Hide Bootstrap dropdown caret arrow */

/* Ensure consistent styling on hover/focus */

/* Main Dashboard Container */

/* Dashboard Tabs */

/* Metrics Grid */

/* Charts Grid */

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dashboard-title {
        font-size: 28px;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Bootstrap 5 Integration - Custom styles override Bootstrap where needed */
/* Ensure our custom styles take precedence */

/* Prevent Bootstrap from overriding our navbar styles */

/* Pet Reports Page Styles */

/* Contact Us Status Badges */

/* Content Page Styles */

/* General Pages Styles - Home, Contact, About */

/* Hero Section */

/* Recent Pets Section */

/* Wider container for recent pets to fit 3 cards (408px × 3 + gaps) */

/* Pet card specific sizing within recent-pets-section */

/* Fallback styling for broken/missing images */

/* Features Section */

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */

/* Success Stories Section */

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Contact Page Styles */

/* About Page Styles */

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background-color: #fff;
}

.mission-card {
    background-color: #f9ece4;
    border-radius: 20px;
    padding: 70px 100px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.mission-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.mission-box {
    background-color: #FFE5D9;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

/* Pet Services Pages Styles */

/* Report Page Styles */

/* Search Page Styles */

/* Wider container for search page to fit 3 cards (408px × 3 + gaps) */

/* Pet card specific sizing within search-page */

/* Pet name styling within search-page */

/* Pet Details Page Styles - New Layout */

/* Top Row - Image and Contact Card */

/* Image Carousel Section */

/* Paw icon fallback for pet-image-carousel */

/* Carousel Navigation Arrows */

/* Contact information Card */

/* Pet Info Card */

/* Pet Attributes Grid */

/* Pet description Section */

/* Additional Info Section */

/* Location Info Card */

/* Map Container */

/* Reunited Card */

/* Legacy styles kept for backward compatibility */

/* Responsive Styles for Pet Services */
@media (max-width: 992px) {
    .pet-details-top-row {
        grid-template-columns: 1fr;
    }
    
    .pet-image-carousel {
        aspect-ratio: 16/9;
    }
    
    .contact-info-card {
        margin-top: 0;
    }
}

/* Kiosk Page Styles */

/* Authentication Pages Styles */

/* Left Visual Section */

/* Right Form Section */

/* .auth-form-wrapper {
    width: 100%;
    max-width: 450px;
} *//*ia*/

/* Social Login Buttons */

/* Auth Form */

/* Form Actions */

/* Auth Link Text */

/* User Dashboard Styles */

/* Sidebar Styles */

/* User Content Area */

/* Pet Cards Grid */

/* Fallback styling for broken/missing images in pet-card-image */

/* Empty State */

/* Profile Settings Styles */

/* Notification Settings */

/* Toggle Switch */

/* Account Details */

/* ============================================
    ABOUT US PAGE STYLES
    ============================================ */

/* How It Works Section */

@media (max-width: 768px) {
    .dashboard-tabs {
        flex-wrap: wrap;
        row-gap: 10px;
        justify-content: space-between;
    }

    .tab-btn {
        flex: 0 1 auto;
        padding: 10px 14px;
        font-size: 14px;
    }

    .about-stats-section .stat-card {
        width: calc(100% - 24px) !important;
    }
    .features-section .section-title{
        line-height: 1.2;
    }

    .stat-card {
        width: calc(100% - 20px)
    }
    .stats-grid {
        flex-direction: column;
    }

    .features-section .section-subtitle {
        line-height: 1.2;
    }

    .cta-buttons a.btn-teal{
        width: 100%;
    }
    .cta-buttons a.btn-primary-hero{
        width: 100%;
    }
    
    .success-stories-section .section-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-section .hero-subtitle{
        line-height: 1.1;
    }

    .story-section {
        padding: 50px 0 30px;
    }
    
    .about-stats-section {
        padding: 25px 0;
    }
    
    .mission-section {
        padding: 30px 0;
    }
    
    .how-it-works-section {
        padding: 30px 0 60px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }

    .hero-buttons {
        width: 100%;
        min-width: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn-primary-hero,
    .hero-buttons .btn-secondary-hero {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        justify-content: center;
    }
    
    .cta-text {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 30px;
        border-radius: 12px;
    }
    
    .pets-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .recent-pets-section .pets-grid .pet-card {
        width: 100%;
        max-width: 408.03px;
        height: auto;
        min-height: 500px;
    }
    
    .pet-details-page {
        padding: 20px 0;
    }
    
    .pet-info-card,
    .location-info-card,
    .contact-info-card {
        padding: 20px;
    }
    
    .pet-attributes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pet-header-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pet-title {
        font-size: 20px;
    }

    
    .pet-details-top-row {
        gap: 20px;
    }
    
    .pet-details-content {
        grid-template-columns: 1fr;
    }
    
    .pet-info-card,
    .location-info-card,
    .contact-info-card {
        padding: 20px;
    }
    
    .pet-attributes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pet-header-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .pet-title {
        font-size: 20px;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
    }

    .contact-info-section .info-group-left {
        display: flex;
        flex-direction: column;
    }

    .contact-name-group {
        order: 1;
    }

    .contact-method-group {
        order: 2;
    }

    .contact-email-group {
        order: 3;
    }

    .contact-phone-group {
        order: 4;
    }

    .pet-info-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .pet-info-section .form-row {
        display: contents;
    }

    .pet-info-section .pet-type-group {
        order: 1;
    }

    .pet-info-section .breed-group {
        order: 2;
    }

    .pet-info-section .pet-name-group {
        order: 3;
    }

    .pet-info-section .age-group {
        order: 4;
    }

    .pet-info-section .color-group {
        order: 5;
    }

    .pet-info-section .size-group {
        order: 6;
    }

    .pet-info-section .gender-group {
        order: 7;
    }

    .pet-info-section .chip-group {
        order: 8;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .search-bar-container {
        flex-direction: column;
    }

    .filters-buttons-container {
        justify-content: flex-start;
        align-self: flex-start;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    /* Search page responsive - stack cards on mobile */
    .search-page .pets-grid .pet-card {
        width: 100%;
        max-width: 408.03px;
        height: auto;
        min-height: 500px;
    }
    .auth-container {
        flex-direction: column;
    }

    .auth-visual-section {
        min-height: 300px;
    }

    .auth-visual-title {
        font-size: 28px;
    }

    .auth-visual-subtitle {
        font-size: 16px;
    }

    .social-login-buttons {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-actions-signin {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .user-dashboard-content {
        flex-direction: column;
    }

    .user-sidebar {
        width: 100%;
    }

    .pet-cards-grid {
        grid-template-columns: 1fr;
    }

    .account-info-grid {
        grid-template-columns: 1fr;
    }
    
    
    .how-it-works-section {
        padding: 30px 0 60px;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .nav-menu-bar {
        order: 2;
        width: 100%;
        margin: 15px 0;
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    /* Show mobile menu toggle button on mobile */
    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
    }

    /* Hide nav-links by default on mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        background-color: #E7FFFF;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        margin: 0;
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        gap: 15px;
        z-index: 1000;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    /* Show nav-links when mobile menu is open */
    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 16px;
    }

    /* Adjust user profile position on mobile */
    .user-profile {
        order: 3;
        margin-left: 10px;
    }

    /* Adjust logo on mobile */
    .nav-menu-bar .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .dashboard-title {
        font-size: 36px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-left,
    .contact-info-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    
    
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .search-bar-container {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
    }
    
    /* Search page responsive - stack cards on mobile */
    .search-page .pets-grid .pet-card {
        width: 100%;
        max-width: 408.03px;
        height: auto;
        min-height: 500px;
    }
    .auth-container {
        flex-direction: column;
    }

    

    .user-dashboard-content {
        flex-direction: column;
    }

    .user-sidebar {
        width: 100%;
    }

    .pet-cards-grid {
        grid-template-columns: 1fr;
    }

    .account-info-grid {
        grid-template-columns: 1fr;
    }
    .pet-details span {
        height: auto;
        text-overflow: none;
        white-space: normal;
        overflow: visible;
        text-wrap: wrap;
    }

    .search-icon-left {
        display: none;
    }

    .section-title {
        line-height: 1.2;
    }

    .section-subtitle {
        line-height: 1.2;
    }
    
}

/* Responsive Styles for About Us Page */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .story-card {
        padding: 40px 35px;
    }
    
    .mission-card {
        padding: 50px 35px;
    }
}

@media (max-width: 1400px) {
    .stats-section .stats-grid {
        width: 100%;
        max-width: 1296px;
    }
}

@media (max-width: 576px) {
    .stats-section .stats-grid {
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: stretch;
    }
    
    .stats-section .stat-card {
        width: 100%;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .story-text {
        font-size: 14px;
    }
    
    .mission-text {
        font-size: 14px;
    }
    
    .story-card {
        padding: 30px 25px;
    }
    
    .mission-card {
        padding: 40px 25px;
    }
}

/*added by imran akram*/
.logo-text-container .logo-image{
    max-width: 115px;
    height: 57px;
}

.user-profile .user-icon-wrapper .fa-user:before,
.user-profile .user-icon-wrapper .fa-envelope:before {
    font-size: 24px;
}

.pet-details span .fa-phone:before,
.pet-details span .fa-calendar:before,
.pet-details span .fa-map-marker-alt:before {
    font-size: 24px;
}
/*end imran*/

/*Start Login/sign-up Page */
.auth-form-wrapper{
    width: 100%;
    max-width: 600px;
}

.auth-form-wrapper .logo-text-container .logo-image{
    width:210px;
    max-width: 210px;
    height: 104px;
}

.auth-form-wrapper .auth-heading {
    font-family: 'Poppins';
    text-align: center;
    color: #242424;
    font-size: 30px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 30px;
}

.auth-form-wrapper .btn-social {
    flex: 1;
    padding: 12px 13px;
    border: 1px solid #eeeeee;
    background-color: #FAFAFA;
    border-radius: 76px;
    font-size: 20px;
    font-weight: 500;
    color: #616161;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    width: 170px!important;
}

.auth-form-wrapper .form-group label {
    font-size: 16px;
    font-weight: 400;
    color: #757575;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.auth-form-wrapper .forgot-password-link {
    background: none;
    border: none;
    padding: 0px;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins';
    color: #EA6706;
}
.auth-form-wrapper .checkbox-label span {
    color: #757575;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    padding: 10px;
}

.auth-form-wrapper label.checkbox-label {
    display: flex;
}

.auth-form-wrapper .auth-link-text {
    clear: both;
    font-family: 'Poppins';
    font-weight: 400;
    text-align: center;
    color: #424242;
    font-size: 16px;
    margin-top: 20px;
}

.auth-form-wrapper p.auth-link-text a {
    color: #121212!important;
    font-family: 'Poppins';
    font-size: 16px;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight:700;
    letter-spacing: 1px;
}

/*end login sign-up*/

/*start contact us page*/

.contact-page .page-title {
    font-size: 40px;/* was 48px ia*/
    font-family: 'Poppins', sans-serif;/*was missing ia*/
    font-weight: 600;/*was 700px ia*/
    color: #000;/*ia #333*/
    margin-bottom: 15px;
}

.contact-page .page-subtitle {
    font-size: 18px;
    color: #000;
    font-family: 'Poppins', sans-serif;
    line-height: 20px;
    font-weight: 400;
}

.contact-page .contact-form-section {
    background-color: #fff; /*updated ia*/
    padding: 30px;
    border-radius: 15px;/*updated ia*/
    border: 1px solid #00000010; /*added ia*/
}

.contact-page .info-block {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00000010;
}

.contact-page .faq-block {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00000010;
}

.contact-page .form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #0A0A0A;
    margin-bottom: 10px;
}

.contact-page .form-description {
    font-size: 16px;
    color: #717182;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Poppins', sans-serif;
}

.contact-page .form-group label {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: #0A0A0A;
    font-family: 'Poppins', sans-serif;
}

.contact-page .contact-form .form-control {
    width: 100%;
    background-color: #F3F3F5;
    padding: 12px 15px;
    border: 0.8px solid #00000000;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.contact-page .contact-form .btn-primary-hero {
    padding: 5px 15px;
    min-width: 156px;
    height: 40px;
    background: #EA6706;
    border-radius: 8px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s;
}

.contact-page .contact-form .fa-paper-plane:before {
    content: "\f1d8";
    font-size: 16px;
}

.contact-page .contact-info-section .info-block .info-title {
    font-size: 16px;
    line-height: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #0A0A0A;
    margin-bottom: 10px;
}

.contact-page .contact-info-section .info-block .info-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #717182;
}

.contact-page .info-block .contact-detail .contact-icon {
    background-color: #EA6706;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-page .info-block .contact-detail .contact-icon .fas {
    font-weight: 900;
    font-size: 20px;
}

.contact-page .contact-text strong {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #0A0A0A;
    margin-bottom: 5px;
    line-height: 24px;
}

.contact-page .contact-text p {
    color: #717182;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;

}

.contact-page .contact-text small {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #717182;
}

.contact-page .faq-block .info-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #0A0A0A;
    margin-bottom: 20px;

}

.contact-page .faq-block .faq-item{

}

.contact-page .faq-block .faq-item .faq-question {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #0A0A0A;
}

.contact-page .faq-block .faq-item .faq-answer {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color:#717182;
}
/*end contact us page*/

/*start search page*/
.search-page .search-header{
    text-align: left;
    margin-bottom: 40px;
}

.search-page .search-header .search-title {
    font-family: 'Poppins';
    font-size: 24px;
    font-weight: 400;
    color: #0A0A0A;
    margin-bottom: 10px;
    line-height: 36px;
}

.search-page .search-header .search-subtitle {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    color: #717182;
    margin-bottom: 10px;
    line-height: 24px;
}

.search-page .search-input {
    flex: 1;
    padding: 6px 15px 6px 40px;
    border: 1px solid #F3F3F5;
    border-radius: 8px;
    font-size: 14px;
    background-color: #F3F3F5;
    font-family: 'Poppins';
    font-weight: 400;
    color: #0A0A0A!important;
    letter-spacing: 1px;
}

.search-page .btn-filters {
    background-color: #e55a2b;
    color: #fff;
    font-weight: 400;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 14px;
}

.search-page .sort-select {
    padding: 8px 15px;
    border: 1px solid #f3f3f5;
    border-radius: 8px;
    font-size: 14px;
    background-color: #f3f3f5;
    cursor: pointer;
}

.search-page .pets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: space-between;
}

.search-page .search-page .btn-filters {
    background-color: #e55a2b;
    color: #fff;
    font-weight: 400;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 14px;
    padding-left: 10px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 36px!important;
}

.search-page .search-input:focus-visible {
    outline: none;
}

.about-stats-section .stat-card{
    width: calc(25% - 24px);
}

.fa-whatsapp
{
    font-weight: 1000 !important;
    font-size: 26px !important;
}
.fa-envelope
{
    font-weight: 1000 !important;
    font-size: 24px !important;
}
.fa-phone
{
    font-weight: 1000 !important;
    font-size: 24px !important;
}
.fa-sms
{
    font-weight: 1000 !important;
    font-size: 24px !important;
}

@media (max-width: 426px) {
    .pet-card,
    .recent-pets-section .pets-grid .pet-card,
    .search-page .pets-grid .pet-card {
        width: 100% !important;
    }

    .pet-card .pet-icons,
    .recent-pets-section .pets-grid .pet-card .pet-icons,
    .search-page .pets-grid .pet-card .pet-icons {
        width: 100% !important;
    }

    .pet-card .pet-image,
    .recent-pets-section .pets-grid .pet-card .pet-image,
    .search-page .pets-grid .pet-card .pet-image {
        width: 100% !important;
    }

    .pet-card .pet-image img,
    .recent-pets-section .pets-grid .pet-card .pet-image img,
    .search-page .pets-grid .pet-card .pet-image img {
        width: 100% !important;
        object-fit: unset !important;
    }

}

/*end search page*/
