:root {
    --primary-color: #00A3E0;
    --secondary-color: #0088c2;
    --success-color: #198754;
    --text-color: #2C3E50;
    --light-bg: #F5F6FA;
    --dark-bg: #2C3E50;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    background-color: var(--light-bg);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* =========================
   NAVBAR STYLES
========================= */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.4rem;
    text-decoration: none !important;
    font-weight: 700;
}

.navbar-brand:hover .text-primary {
    color: var(--secondary-color) !important;
}

.nav-link {
    color: #495057 !important;
    transition: color 0.3s ease;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* =========================
   HERO SECTION STYLES
========================= */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #dee2e6;
}

.hero-section h1 {
    color: var(--text-color) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: #6c757d !important;
    font-size: 1.1rem;
}

.hero-section h5 {
    color: var(--text-color) !important;
    font-weight: 600;
}

.hero-section .fw-medium {
    color: var(--text-color) !important;
}

/* Hero Section - Animal Cards */
.animal-card-mini {
    cursor: pointer;
    transition: all 0.3s ease;
}

.animal-card-mini:hover {
    transform: translateY(-3px);
}

.animal-card-mini .card {
    transition: all 0.3s ease;
    border: none;
}

.animal-card-mini:hover .card {
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.15) !important;
}

.animal-card-mini .card-title {
    color: var(--text-color);
    font-weight: 600;
}

.animal-card-mini .text-muted {
    color: #6c757d !important;
}

/* Trust Badge */
.bg-white.rounded-pill {
    border: 1px solid #e9ecef;
}

.bg-white.rounded-pill .text-dark {
    color: var(--text-color) !important;
}

/* =========================
   PACKAGE CARD STYLES
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.package-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: var(--card-shadow);
    padding: 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.package-card.no-selection::after {
    content: 'Lütfen bir fiyat seçin';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #dc3545;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card.show-warning::after {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.package-card.selected {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.2);
    transform: translateY(-5px);
}

.package-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.package-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* =========================
   PRICE GRID STYLES
========================= */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-option {
    position: relative;
    width: 100%;
}

.price-option input[type="radio"] {
    display: none;
}

.price-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 110px;
}

.price-option label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 163, 224, 0.02);
    transform: translateY(-2px);
}

.price-option input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(0, 163, 224, 0.05);
    box-shadow: 0 5px 15px rgba(0, 163, 224, 0.1);
    transform: translateY(-2px);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.price-value span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.price-sb {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 20px;
}

/* =========================
   FEATURES STYLES
========================= */
.features {
    text-align: left;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.features p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #444;
}

.features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* =========================
   ANIMAL SECTION STYLES
========================= */
.animal-section {
    margin-bottom: 80px;
    padding: 40px 0;
}

.animal-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 20px;
    margin-bottom: 40px;
    position: relative;
}

.animal-header::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.animal-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 163, 224, 0.1);
}

.animal-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-weight: 300;
}

/* Animal specific borders */
.package-card[data-animal="Pferd"] {
    border-left: 4px solid #8B4513;
}

.package-card[data-animal="Hund"] {
    border-left: 4px solid #FF6B35;
}

.package-card[data-animal="Katze"] {
    border-left: 4px solid #9B59B6;
}

/* Hover effects */
.package-card[data-animal="Pferd"]:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.package-card[data-animal="Hund"]:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.package-card[data-animal="Katze"]:hover {
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.15);
}

/* Selected states */
.package-card.selected[data-animal="Pferd"] {
    border-left: 4px solid #8B4513;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.package-card.selected[data-animal="Hund"] {
    border-left: 4px solid #FF6B35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.package-card.selected[data-animal="Katze"] {
    border-left: 4px solid #9B59B6;
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.2);
}

/* Section separators */
.animal-section:not(:last-child) {
    border-bottom: 1px solid #eee;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

/* =========================
   BUTTON STYLES
========================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 163, 224, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* =========================
   UTILITY CLASSES
========================= */
.text-success {
    color: var(--success-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.badge {
    font-size: 0.75rem;
    font-weight: 500;
}

.bg-light.text-dark.border {
    background-color: #f8f9fa !important;
    color: var(--text-color) !important;
    border-color: #dee2e6 !important;
}

/* =========================
   WHY BARMENIA SECTION
========================= */
.why-barmenia {
    padding: 3rem 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.why-barmenia h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.verification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-icon i {
    font-size: 40px;
    color: white;
}

.why-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* =========================
   LOADING ANIMATION
========================= */
.package-card.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.package-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.package-card {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.package-card:nth-child(2) {
    animation-delay: 0.2s;
}

.package-card:nth-child(3) {
    animation-delay: 0.4s;
}

.price-option input[type="radio"]:checked + label .price-value {
    animation: pulse 0.5s ease;
}

/* =========================
   FOOTER STYLES
========================= */
footer {
    background: var(--primary-color) !important;
    color: white;
    padding: 2rem 0 1rem !important;
    margin-top: 3rem !important;
}

.footer-contact-card,
.footer-info,
.footer-about {
    padding: 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: auto;
}

.footer-contact-card h6,
.footer-info h6,
.footer-about h6 {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-person strong {
    font-size: 0.95rem;
    color: white;
}

.contact-person p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline !important;
}

.contact-info .fab.fa-whatsapp {
    color: #25D366;
    font-size: 0.9rem;
}

.contact-info .fas.fa-envelope {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-links {
    padding-left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    display: block;
    padding: 0.15rem 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.footer-links a:hover {
    color: white;
    text-decoration: none !important;
    transform: translateX(3px);
}

.footer-links .fas.fa-chevron-right {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-size: 0.7rem;
}

.footer-links a:hover .fas.fa-chevron-right {
    color: white;
}

.footer-about .text-light {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-about strong {
    font-size: 0.9rem;
    color: white;
}

.cta-footer .btn-light {
    background: white;
    border-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.cta-footer .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links-bottom a:hover {
    color: white;
    text-decoration: underline !important;
}

.border-light.opacity-25 {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Mobile Footer Styles */
@media (max-width: 767px) {
    footer {
        padding: 1.5rem 0 1rem !important;
        margin-top: 2rem !important;
    }

    .footer-contact-card,
    .footer-info,
    .footer-about {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .footer-contact-card h6,
    .footer-info h6,
    .footer-about h6 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .contact-person strong {
        font-size: 0.9rem;
    }

    .contact-person p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .contact-info {
        font-size: 0.8rem;
    }

    .footer-links {
        font-size: 0.8rem;
    }

    .footer-about p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .cta-footer .btn-light {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .footer-links-bottom {
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-links-bottom a {
        display: inline-block;
        margin: 0 0.5rem 0.5rem 0;
        font-size: 0.75rem;
    }

    .col-md-6.text-md-end {
        text-align: center !important;
    }

    .col-md-6.text-md-end small {
        font-size: 0.75rem;
    }
}

/* =========================
   MOBILE-FIRST RESPONSIVE DESIGN
========================= */

/* Mobile Base Styles (320px and up) */
@media (max-width: 767px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-brand img {
        height: 32px !important;
    }

    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
        background: white;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid #f1f1f1;
        margin: 0 !important;
        font-size: 1.1rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    /* Hero Section - Kompakt Tasarım */
    .hero-section {
        padding: 1.5rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .hero-section .container {
        padding: 0 1rem;
    }

    .hero-section .row {
        flex-direction: column;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        font-weight: 600;
        text-align: center;
    }

    .hero-section .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
        text-align: center;
    }

    /* Hero Section - Avantajlar TAMAMEN ORTALANMIŞ */
    .hero-section .mb-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-section h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
        text-align: center;
        width: 100%;
    }

    .hero-section .row.g-2 {
        margin-bottom: 1.5rem;
        gap: 0.5rem;
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        max-width: 400px;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-section .row.g-2 .col-sm-6 {
        flex: 0 0 45% !important;
        max-width: 45% !important;
        margin-bottom: 0.5rem;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-section .d-flex.align-items-center {
        justify-content: center !important;
        text-align: center !important;
        padding: 0.5rem 0.4rem !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 8px !important;
        border: 1px solid rgba(0, 163, 224, 0.15) !important;
        font-size: 0.8rem !important;
        width: 100% !important;
        max-width: 160px !important;
        min-height: 45px !important;
        box-shadow: 0 2px 8px rgba(0, 163, 224, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
    }

    .hero-section .fas.fa-check-circle {
        font-size: 0.9rem !important;
        margin-right: 0.4rem !important;
        flex-shrink: 0 !important;
        color: #198754 !important;
    }

    .hero-section .fw-medium {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        font-weight: 500 !important;
        text-align: center !important;
        color: #2C3E50 !important;
        margin: 0 !important;
    }

    /* Hero Section - CTA Area Kompakt */
    .hero-section .d-flex.gap-3 {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        display: flex !important;
    }

    .hero-section .btn-primary {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
    }

    /* Alternative: If the above doesn't work, add this more specific rule */
    .hero-section .col-lg-7 .d-flex.gap-3.align-items-center {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    .hero-section .col-lg-7 .btn-primary {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        text-align: center !important;
    }

    /* Make sure parent container is also centered */
    .hero-section .col-lg-7 {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Center all content in hero section on mobile */
    .hero-section .col-lg-7 > * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-section .d-flex.gap-2 {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
    }

    .hero-section .badge {
        font-size: 0.75rem !important;
        padding: 0.4rem 0.6rem !important;
        border-radius: 4px !important;
    }

    /* Hero Section - Animal Cards Gizle */
    .hero-section .col-lg-5 {
        display: none !important;
    }

    /* Trust Badge Gizle */
    .hero-section .bg-white.rounded-pill {
        display: none !important;
    }

    /* Package Cards - Mobil Optimizasyon */
    .animal-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .animal-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .package-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: 10px;
    }

    .package-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .package-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    /* Price Grid - 2x2 Layout Mobilde */
    .price-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        margin-bottom: 1.25rem;
    }

    .price-option label {
        min-height: 85px;
        padding: 0.6rem 0.4rem;
        border-radius: 8px;
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
        font-weight: 700;
    }

    .price-value span {
        font-size: 1.3rem;
    }

    .price-period {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        line-height: 1.1;
    }

    .price-sb {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
        border-radius: 3px;
        line-height: 1.1;
    }

    /* Features - Daha Kompakt */
    .features {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .features p {
        margin-bottom: 0.6rem;
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .features i {
        font-size: 0.95rem;
        margin-right: 0.5rem;
    }

    /* Animal Sections */
    .animal-section {
        margin-bottom: 2.5rem;
        padding: 1rem 0;
    }

    .animal-header {
        padding-bottom: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .animal-section:not(:last-child) {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Why Barmenia Section - Kompakt */
    .why-barmenia {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .why-barmenia h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .verification-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.5rem;
    }

    .verification-icon i {
        font-size: 24px;
    }

    .why-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    /* Buttons */
    .btn-lg {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        border-radius: 6px;
    }

    .btn-primary {
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    /* Container Padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Footer - Kompakt */
    footer {
        padding: 1.5rem 0 1rem;
        text-align: center;
    }

    footer h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    footer p, footer a {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .social-icons {
        margin-top: 1rem;
    }

    .social-icons a {
        font-size: 1.2rem;
        margin: 0 0.5rem;
    }
}

/* Tablet Styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .package-title {
        font-size: 2.2rem;
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .animal-title {
        font-size: 2.3rem;
    }
}

/* Large Mobile Styles (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.05rem;
    }

    .hero-section .row.g-2 .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .package-title {
        font-size: 2rem;
    }

    .animal-title {
        font-size: 2.2rem;
    }

    .animal-card-mini .row {
        justify-content: center;
    }

    .animal-card-mini .col-4 {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

/* =========================
   MOBILE OPTIMIZATION & ACCESSIBILITY
========================= */

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Improved touch targets */
.btn, .nav-link, .price-option label, .animal-card-mini {
    -webkit-tap-highlight-color: rgba(0, 163, 224, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Loading states for better UX */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Sticky CTA for mobile */
@media (max-width: 767px) {
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #dee2e6;
        padding: 1rem;
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .mobile-cta-bar .btn {
        width: 100%;
        font-weight: 700;
        font-size: 1.1rem;
        padding: 1rem;
        border-radius: 8px;
    }

    /* Add bottom padding to body when mobile CTA is present */
    body.has-mobile-cta {
        padding-bottom: 80px;
    }
}

/* Improved form styles for mobile */
@media (max-width: 767px) {
    .form-control, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem 1rem;
        border-radius: 8px;
    }

    .form-label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
}

/* Enhanced focus states for accessibility */
.btn:focus,
.nav-link:focus,
.price-option input[type="radio"]:focus + label,
.animal-card-mini:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.1);
}

/* Keyboard navigation improvements */
.price-option input[type="radio"]:focus + label {
    border-color: var(--primary-color);
    background: rgba(0, 163, 224, 0.05);
}

/* =========================
   PRINT STYLES
========================= */
@media print {
    .navbar,
    .mobile-cta-bar,
    .btn,
    .social-icons {
        display: none !important;
    }

    .hero-section,
    .package-card,
    .why-barmenia {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .package-card {
        border: 1px solid #000;
        margin-bottom: 1rem;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }

    .hero-section h1,
    .hero-section .lead,
    .hero-section h5 {
        color: black !important;
    }
}

/* =========================
   REDUCED MOTION PREFERENCES
========================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .package-card:hover,
    .btn:hover,
    .animal-card-mini:hover {
        transform: none;
    }
}

/* =========================
   HIGH CONTRAST MODE SUPPORT
========================= */
@media (prefers-contrast: high) {
    .package-card {
        border: 2px solid;
    }

    .price-option label {
        border-width: 2px;
    }

    .btn-primary {
        border: 2px solid;
    }
}

/* =========================
   DARK MODE SUPPORT (Future-proofing)
========================= */
@media (prefers-color-scheme: dark) {
    /* This will be implemented if dark mode is requested */
    /* Currently keeping light theme as default */
}