@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
         url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: optional;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
         url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
}

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8659;
    --dark-color: #0d3023;
    --light-color: #f8f9fa;
    --green-light: #4a9d6f;
    --green-dark: #0a2818;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --bs-dropdown-link-active-bg: #1a5f3f;
    --bs-primary: #1a5f3f;
    --bs-primary-rgb: 26, 95, 63;
    --bs-link-color: #1a5f3f;
    --bs-link-color-rgb: 26, 95, 63;
    --bs-link-hover-color: #2d8659;
    --bs-link-hover-color-rgb: 45, 134, 89;
}

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

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

/* Global link styles */
a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

a:hover {
    color: var(--bs-link-hover-color);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
    z-index: 1000;
}

/* Ensure single line navigation */
.navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.navbar-collapse {
    flex-grow: 0;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-backdrop.show {
    display: block;
    opacity: 1;
}

/* Mobile navigation layout */
@media (max-width: 1199px) {
    .navbar .container {
        justify-content: space-between;
        position: relative;
    }
    
    .navbar-brand {
        flex-shrink: 0;
        position: relative;
        z-index: 1001;
    }
    
    
    .navbar-toggler {
        flex-shrink: 0;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }
    
    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }
}

.navbar-brand {
    padding: 0;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-brand:focus,
.navbar-brand:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

/* Opening Hours */
.opening-hours {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.875rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.opening-hours svg {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.opening-hours span {
    font-weight: 500;
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 0.3rem;
    padding: 0.5rem 0.4rem;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Icon-only dropdown toggle - no underline */
.navbar-nav .dropdown-toggle.p-2 {
    text-decoration: none !important;
}

.navbar-nav .dropdown-toggle.p-2::after {
    display: none !important;
}

.navbar-nav .dropdown > a.p-2::after {
    display: none !important;
}

.navbar-nav .dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle:hover svg {
    transform: scale(1.1);
}


/* Navbar Toggler */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 4px 12px;
    position: relative;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background-color: rgba(26, 95, 63, 0.1);
    border-radius: 8px;
}

/* Hide default toggler icon */
.navbar-toggler-icon {
    display: none;
}

/* Custom hamburger lines */
.navbar-toggler span {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
    left: 8px;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    top: 12px;
}

.navbar-toggler span:nth-child(2) {
    top: 19px;
}

.navbar-toggler span:nth-child(3) {
    top: 26px;
}

/* Animated X when menu is open */
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    top: 19px;
    transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    top: 19px;
    transform: rotate(-135deg);
}

/* Hero Section */
.hero-section {
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(13, 48, 35, 0.3) 0%, 
        rgba(13, 48, 35, 0.5) 50%, 
        rgba(13, 48, 35, 0.7) 100%);
    display: flex;
    align-items: center;
    z-index: 1;
    padding-top: 90px;
}

.hero-section h1,
.hero-section p,
.hero-section .text-white {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
    padding: 0.625rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 95, 63, 0.3);
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary.focus,
.btn-primary.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 63, 0.25) !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
    opacity: 0.65;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 95, 63, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 95, 63, 0.15);
}

.feature-icon {
    color: var(--primary-color);
}

/* Product Categories */
.product-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.product-category:hover {
    box-shadow: 0 5px 20px rgba(26, 95, 63, 0.1);
    border-color: var(--primary-color);
}

.product-category h4 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

/* Contact Info */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.contact-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Form Styling */
.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 63, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Form Validation Styles */
.form-control.is-valid {
    border-color: #198754;
    background-image: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.form-control.is-valid:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Captcha Styles */
.captcha-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.captcha-section h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.captcha-method {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
}

#math-captcha .d-flex {
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#math-question {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    min-width: 120px;
    font-size: 1.2rem;
}

#math-answer {
    width: 80px !important;
    background-image: none !important;
    min-width: 60px;
}

.captcha-status {
    font-size: 1.2rem;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.captcha-status.valid {
    color: #198754;
    background-color: rgba(25, 135, 84, 0.1);
}

.captcha-status.valid::before {
    content: "✓";
}

.captcha-status.invalid {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.captcha-status.invalid::before {
    content: "✗";
}

#slider-captcha .mb-2 {
    margin-bottom: 0.75rem !important;
    text-align: center;
}

#slider-target {
    color: var(--primary-color);
    font-size: 1.3rem !important;
}

.form-range {
    width: 100%;
    margin: 1rem 0;
}

#slider-captcha > div {
    text-align: center;
}

.form-range.is-valid {
    background-color: rgba(25, 135, 84, 0.1);
}

.form-range.is-invalid {
    background-color: rgba(220, 53, 69, 0.1);
}

#checkbox-captcha .form-check {
    padding: 0.8rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
}

#checkbox-captcha .form-check:hover {
    border-color: var(--primary-color);
}

#checkbox-captcha .form-check-input {
    position: relative;
    margin-right: 0.5rem;
}

#checkbox-captcha .form-check-input.is-valid {
    border-color: #198754;
    background-color: #198754;
}

#checkbox-captcha .form-check-input.is-invalid {
    border-color: #dc3545;
}

#checkbox-captcha .form-check-label {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    font-size: 0.95rem;
}

#captcha-error {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 3px solid #dc3545;
    border-radius: 0.25rem;
}

/* Mobile responsive captcha improvements */
@media (max-width: 768px) {
    .captcha-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .captcha-section h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .captcha-method {
        padding: 0.75rem;
    }
    
    #math-captcha .d-flex {
        gap: 0.5rem;
        flex-direction: column;
    }
    
    #math-question {
        min-width: auto;
        font-size: 1.1rem;
        text-align: center;
    }
    
    #math-answer {
        width: 70px !important;
        margin: 0.25rem 0;
    }
    
    .captcha-status {
        font-size: 1rem;
        width: 24px;
        height: 24px;
        margin-top: 0.25rem;
    }
    
    #slider-target {
        font-size: 1.2rem !important;
    }
    
    #checkbox-captcha .form-check {
        padding: 0.6rem;
        max-width: 280px;
    }
    
    #checkbox-captcha .form-check-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .captcha-section {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .captcha-section h5 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .captcha-method {
        padding: 0.5rem;
    }
    
    #math-question {
        font-size: 1rem;
    }
    
    #math-answer {
        width: 60px !important;
    }
    
    .captcha-status {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
    }
    
    #slider-target {
        font-size: 1.1rem !important;
    }
    
    #checkbox-captcha .form-check {
        padding: 0.5rem;
        max-width: 260px;
    }
    
    #checkbox-captcha .form-check-label {
        font-size: 0.85rem;
    }
    
    #captcha-error {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
}

/* Alert Styles */
.alert {
    border-radius: 0.375rem;
    margin: 1rem 0;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Button Loading State */
.btn .spinner-border-sm {
    width: 0.875rem;
    height: 0.875rem;
}

/* Select Validation */
select.form-control.is-valid {
    background-image: none;
}

select.form-control.is-invalid {
    background-image: none;
}

/* Card */
.card {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card-body {
    padding: 2rem;
}

/* Map Container */
.map-container {
    min-height: 400px;
    background: #f0f4f0;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(26, 95, 63, 0.1);
}

.map-container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Placeholder Content */
.placeholder-content,
.image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
    font-weight: 500;
}

.placeholder-content span {
    opacity: 0.5;
}

/* Section Padding */
section {
    position: relative;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

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

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

.text-muted {
    color: #6c757d !important;
}

/* Lists */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled li {
    padding: 0.25rem 0;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer a {
    transition: all 0.3s ease;
    text-decoration: none !important;
}

footer a:hover {
    color: var(--green-light) !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.5rem;
        margin: 0 0.2rem;
    }
    
    .opening-hours {
        font-size: 0.8rem;
        margin-left: 0.5rem;
    }
}

/* Mobile navigation styles */
@media (max-width: 1199px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    
    /* Override Bootstrap's collapse transition */
    .navbar-collapse.collapsing {
        transition: height 0.3s ease;
    }
    
    /* Mobile navigation items */
    .navbar-nav {
        align-items: center;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    /* Mobile Contact Info - more compact */
    .navbar-nav .nav-item.d-lg-none .nav-link {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .navbar-nav .nav-item.d-lg-none svg {
        width: 14px;
        height: 14px;
        margin-right: 0.25rem;
    }
    
    /* HR styles in mobile menu */
    .navbar-nav hr {
        border: 0;
        border-top: 1px solid rgba(26, 95, 63, 0.2);
        margin: 0.5rem 0;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Override desktop nav-link styles for mobile */
    .navbar-nav .nav-link {
        position: relative;
        display: inline-block !important;
        padding: 0.5rem 0;
        margin: 0;
        text-align: center;
        font-size: 1rem;
        white-space: normal;
    }
    
    /* Reset desktop ::after positioning */
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }
    
    .navbar-nav .nav-link svg {
        color: var(--primary-color);
    }
    
    .navbar-nav hr {
        border-color: rgba(26, 95, 63, 0.2);
        margin: 0.5rem 0;
        width: 80%;
    }
    
    /* Style dropdown headers as section headers in mobile */
    .navbar-nav li.dropdown > .dropdown-toggle {
        pointer-events: none;
        cursor: default;
        font-weight: 700;
        color: var(--primary-color) !important;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 1rem;
        padding: 0.25rem 0;
        border-bottom: 1px solid rgba(26, 95, 63, 0.2);
    }
    
    /* Remove all dropdown toggle indicators and underlines */
    .navbar-nav li.dropdown > .dropdown-toggle::after {
        display: none !important;
    }
    
    /* Remove underline effect from dropdown headers */
    .navbar-nav li.dropdown > .dropdown-toggle::before {
        display: none !important;
    }
    
    /* Show dropdown menus always open on mobile */
    .navbar-nav .dropdown .dropdown-menu {
        display: block !important;
        position: static !important;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        text-align: center;
    }
    
    /* Style dropdown items to look like normal nav links */
    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--dark-color) !important;
        font-weight: 500;
        background-color: transparent !important;
        border: none;
        text-align: center;
        padding: 0.5rem 0;
        width: auto;
        position: relative;
    }
    
    /* Add underline effect to dropdown items same as nav-links */
    .navbar-nav .dropdown-menu .dropdown-item::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: transparent !important;
        color: var(--primary-color) !important;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover::after,
    .navbar-nav .dropdown-menu .dropdown-item.active::after {
        width: 100%;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-overlay {
        padding-top: 80px;
    }
    
    .navbar-brand img {
        height: 60px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 50px;
    }
    
    /* Hide opening hours text on mobile, show only icon */
    .opening-hours {
        margin: 1rem 0 0 0;
        justify-content: center;
        color: var(--primary-color);
        font-size: 0.9rem;
    }
    
    .opening-hours svg {
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .service-card,
    .feature-card,
    .product-category {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 50px;
    }
    
    .opening-hours span {
        display: none;
    }
    
    .opening-hours {
        margin: 0;
        padding: 0.5rem 0;
    }
    
    .opening-hours svg {
        margin: 0;
        width: 20px;
        height: 20px;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove focus outline for navigation links */
.navbar-nav .nav-link:focus,
.navbar-nav .dropdown-toggle:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Print Styles */
@media print {
    .navbar,
    #cta,
    footer {
        display: none;
    }
    
    .hero-section {
        height: auto;
        padding: 2rem 0;
        background: white !important;
    }
    
    .hero-overlay {
        background: transparent !important;
        position: static;
    }
    
    .text-white {
        color: black !important;
    }
    
    .btn {
        display: none;
    }
}