@import url("https://cdn.boxicons.com/3.0.8/fonts/basic/boxicons.min.css");
@import url("https://cdn.boxicons.com/3.0.8/fonts/filled/boxicons-filled.min.css");
@import url("https://cdn.boxicons.com/3.0.8/fonts/brands/boxicons-brands.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap");
@import url("kontakt.css");
@import url("posao.css");
/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: #2154ad;
    border-radius: 50%;
    animation: loader-spin 0.7s linear infinite;
}
@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

:root {
--primary-color: #2154ad;
--secondary-color: #fff;
--text-color: #333;
--text-light: #666;
--hover-overlay: rgba(255, 255, 255, 0.1);
--hover-overlay-light: rgba(255, 255, 255, 0.05);
--border-color: #eee;
--background-light: #f8f9fa;
--shadow-color: rgba(0, 0, 0, 0.1);
--shadow-dark: rgba(0, 0, 0, 0.05);
--gradient-primary: linear-gradient(135deg, #2154ad 0%, #103275 100%);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "Open Sans", sans-serif;
line-height: 1.6;
color: var(--text-color);
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: "Montserrat", sans-serif;
}

.navbar {
background-color: var(--primary-color);
padding: 0;
box-shadow: 0 2px 10px var(--shadow-color);
z-index: 100;
position: sticky;
top: 0;
transition: all 0.3s ease;
}

.nav-container {
max-width: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
max-width: 1200px;
}

.nav-logo {
position: relative;
z-index: 101;
}

.nav-logo a {
color: var(--secondary-color);
text-decoration: none;
font-size: 24px;
font-weight: bold;
padding: 0;
display: flex;
}

.nav-logo a img {
height: 80px;
width: auto;
}

.nav-menu {
display: flex;
align-items: center;
gap: 0;
}

.nav-item {
position: relative;
}

.nav-link {
color: var(--secondary-color);
text-decoration: none;
padding: 20px 15px;
display: block;
transition: background-color 0.3s ease;
}

.nav-link:hover {
background-color: var(--hover-overlay);
}

.dropdown-toggle {
display: flex;
align-items: center;
gap: 5px;
}

.arrow {
font-size: 12px;
transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
transform: rotate(180deg);
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background-color: var(--secondary-color);
min-width: 200px;
box-shadow: 0 4px 6px var(--shadow-color);
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1000;
}

.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-item {
color: var(--primary-color);
text-decoration: none;
padding: 12px 15px;
display: block;
transition: background-color 0.3s ease;
position: relative;
}

.dropdown-item:hover {
background-color: var(--background-light);
}

.dropdown-submenu {
position: relative;
}

.arrow-right {
position: absolute;
right: 10px;
font-size: 10px;
transition: transform 0.3s ease;
}

.dropdown-submenu:hover .arrow-right {
transform: translateX(3px);
}

.submenu-content {
position: absolute;
top: 0;
left: 100%;
background-color: var(--secondary-color);
min-width: 180px;
box-shadow: 0 4px 6px var(--shadow-color);
opacity: 0;
visibility: hidden;
transform: translateX(-10px);
transition: all 0.3s ease;
}

.dropdown-submenu:hover .submenu-content {
opacity: 1;
visibility: visible;
transform: translateX(0);
}

.submenu-item {
color: var(--primary-color);
text-decoration: none;
padding: 10px 15px;
display: block;
transition: background-color 0.3s ease;
border-left: 3px solid transparent;
}

.submenu-item:hover {
background-color: var(--background-light);
border-left-color: var(--primary-color);
}

.simple-dropdown .dropdown-item {
border-bottom: 1px solid var(--border-color);
}

.simple-dropdown .dropdown-item:last-child {
border-bottom: none;
}

/* Cart icon in navbar */
.nav-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 18px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    margin-left: 4px;
}
.nav-cart:hover {
    background-color: var(--hover-overlay);
    color: var(--secondary-color);
}

.hamburger {
display: none;
cursor: pointer;
padding: 5px;
position: relative;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;
}

.hamburger-icon,
.close-icon {
font-size: 20px;
color: var(--secondary-color);
transition: opacity 0.3s ease;
position: absolute;
}

.close-icon {
opacity: 0;
}

.hamburger.active .hamburger-icon {
opacity: 0;
}

.hamburger.active .close-icon {
opacity: 1;
}

.bar {
display: none;
}

main {
padding: 0;
max-width: 100%;
margin: 0;
}

/* Swiper Styles */
.swiper {
width: 100%;
height: 85vh;
min-height: 500px;
}

.swiper-slide {
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}

.slide-image {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
position: absolute;
top: 0;
left: 0;
/* Creating a slight parallax/scale effect on load can be done with animation, 
   but for now we'll stick to clean display */
animation: panZoom 20s infinite alternate;
}

@keyframes panZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.slide-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: flex-start;
z-index: 1;
padding-left: 10%;
}

/* For mobile, center it back */
@media (max-width: 768px) {
    .slide-overlay {
        justify-content: center;
        padding-left: 0;
        background: rgba(0, 0, 0, 0.55);
    }
}

.slide-content {
text-align: left;
padding: 40px 20px;
max-width: 800px;
width: 100%;
color: var(--secondary-color);
position: relative; /* Ensure it sits on top */
z-index: 2;
}

@media (max-width: 768px) {
    .slide-content {
        text-align: center;
    }
}

.slide-content h2 {
font-size: clamp(2rem, 5vw, 4rem);
margin-bottom: 20px;
font-weight: 700;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
line-height: 1.2;
}

.slide-content p {
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
opacity: 0.95;
line-height: 1.6;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 30px;
font-weight: 300;
}

.swiper-pagination-bullet { /* Add if pagination exists */
    background: white;
    opacity: 0.5;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* Enhanced Responsive Swiper */
@media screen and (max-width: 1200px) {
.swiper {
height: 70vh;
}
}

@media screen and (max-width: 992px) {
.swiper {
height: 60vh;
}

.slide-content {
padding: 30px 15px;
max-width: 95%;
}
}

@media screen and (max-width: 768px) {
.swiper {
height: 500px; /* Fixed height for consistency on deeper mobile screens */
}

.slide-content {
padding: 25px 15px;
}

.slide-content h2 {
margin-bottom: 20px;
}
}

@media screen and (max-width: 576px) {
.swiper {
height: 100vh; /* Make full screen on very small if desired, or keep fixed */
min-height: 400px;
}

.slide-content {
padding: 20px 10px;
}

.slide-content h2 {
margin-bottom: 12px;
}
}

/* Remove small constraints from before */
/* 
@media screen and (max-width: 480px) ...
@media screen and (max-width: 360px) ...
*/

/* Container utility */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* About Section Styles */
.about-section {
padding: 100px 0;
background-color: #fff;
position: relative;
}

.about-content {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 80px;
align-items: center;
}

.about-text h2 {
font-size: 3rem;
color: var(--text-color);
margin-bottom: 30px;
font-weight: 800;
position: relative;
display: inline-block;
}

.about-text h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 60px;
height: 4px;
background: var(--primary-color);
border-radius: 2px;
}

.about-text .lead {
font-size: 1.2rem;
font-weight: 400;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
}

.about-text p {
font-size: 1rem;
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
}

.about-cta {
display: flex;
gap: 20px;
margin-top: 40px;
}

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
border-radius: 8px; /* Standardnije zaobljenje */
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: 2px solid transparent;
text-transform: uppercase;
letter-spacing: 1px;
font-size: 0.85rem;
cursor: pointer;
position: relative;
overflow: hidden;
z-index: 1;
}

.btn-primary {
background-color: var(--primary-color);
color: white;
box-shadow: 0 4px 15px rgba(33, 84, 173, 0.2);
}

.btn-primary:hover {
background-color: #153a7a;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(33, 84, 173, 0.3);
}

/* Specific style for slider buttons - Elegant Outline */
.slide-content .btn.btn-primary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    box-shadow: none;
    margin-top: 30px !important; /* Override inline style */
}

.slide-content .btn.btn-primary:hover {
    background-color: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline {
background: transparent;
color: var(--primary-color);
border-color: var(--primary-color);
}

.btn-outline:hover {
background: var(--primary-color);
color: white;
transform: translateY(-3px);
}

.about-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
background: transparent;
box-shadow: none;
padding: 0;
margin-top: 0;
}

.stat {
text-align: center;
background: var(--background-light);
padding: 30px 20px;
border-radius: 16px;
transition: transform 0.3s ease;
}

.stat:hover {
transform: translateY(-5px);
background: white;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary-color);
display: block;
margin-bottom: 5px;
}

.stat-text {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-light);
font-weight: 600;
}

/* Responsive About Section */
@media screen and (max-width: 992px) {
.about-section {
padding: 60px 0;
}

.about-content {
gap: 40px;
}

.about-text h2 {
font-size: 2.2rem;
}
}

@media screen and (max-width: 768px) {
.about-section {
padding: 50px 0;
}

.about-content {
grid-template-columns: 1fr;
gap: 30px;
text-align: center;
}

.about-text h2 {
font-size: 2rem;
}

.about-text .lead {
font-size: 1.1rem;
}

.about-cta {
justify-content: center;
}

.about-stats {
grid-template-columns: 1fr; /* Stack vertically on mobile */
padding: 0 20px;
}

.stat {
padding: 20px;
border-bottom: none; /* Remove old border if any */
background: white; /* Make sure it pops on mobile bg */
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat:last-child {
border-bottom: none;
}
}

@media screen and (max-width: 576px) {
.about-cta {
flex-direction: column;
align-items: center;
}

.btn {
width: 100%;
max-width: 280px;
}

.about-text h2 {
font-size: 1.8rem;
}
}

@media screen and (max-width: 768px) {
.hamburger {
display: flex;
z-index: 1001;
}

.nav-cart {
    margin-left: auto;
    font-size: 22px;
}

.nav-logo a img {
height: 80px;
}

main {
margin: 0;
}

.nav-menu {
position: fixed;
left: -100%;
top: 0;
width: 100%;
height: 100vh;
flex-direction: column;
background-color: var(--primary-color);
text-align: left;
transition: left 0.3s ease;
box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
z-index: 999;
padding: 120px 0 40px 0;
gap: 0;
overflow-y: auto;
}

.nav-menu.active {
left: 0;
}

.hamburger {
z-index: 1001;
}

.nav-item {
width: 100%;
border-bottom: 1px solid var(--hover-overlay);
}

.nav-link {
padding: 20px 30px;
width: 100%;
font-size: 1.1rem;
border-bottom: none;
}

.dropdown-toggle {
position: relative;
cursor: pointer;
}

.dropdown-toggle .arrow {
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
display: block;
}

.dropdown.active .dropdown-toggle .arrow {
transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background-color: var(--hover-overlay);
width: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.dropdown.active .dropdown-menu {
max-height: 500px;
}

.dropdown-item {
color: var(--secondary-color);
padding: 15px 60px;
border-bottom: 1px solid var(--hover-overlay-light);
position: relative;
cursor: pointer;
}

.dropdown-item .arrow-right {
position: absolute;
right: 30px;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s ease;
display: block;
cursor: pointer;
padding: 5px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
width: 25px;
height: 25px;
display: flex;
align-items: center;
justify-content: center;
}

.dropdown-submenu.active .dropdown-item .arrow-right {
transform: translateY(-50%) rotate(90deg);
}

.dropdown-item:hover {
background-color: var(--hover-overlay-light);
}

.submenu-content {
position: static;
opacity: 1;
visibility: visible;
transform: none;
box-shadow: none;
background-color: var(--hover-overlay-light);
width: 100%;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.dropdown-submenu.active .submenu-content {
max-height: 300px;
}

.submenu-item {
color: var(--secondary-color);
padding: 12px 90px;
border-left: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
font-size: 0.95rem;
}

.submenu-item:hover {
background-color: rgba(255, 255, 255, 0.1);
}

/* Prevent body scroll when menu is open */
body.nav-open {
overflow: hidden;
}
}

/* Features Section Styles */
.features-section {
padding: 80px 0;
background-color: var(--secondary-color);
}

.features-header {
text-align: center;
margin-bottom: 60px;
}

.features-header h2 {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 15px;
font-weight: 700;
}

.features-header p {
font-size: 1.1rem;
color: #666;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}

.feature-card {
background-color: var(--secondary-color);
padding: 50px 30px;
border-radius: 16px;
text-align: center;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 1px solid rgba(0,0,0,0.05);
box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;
}

.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--gradient-primary);
transform: scaleX(0);
transition: transform 0.4s ease;
transform-origin: left;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px -10px rgba(33, 84, 173, 0.2);
}

.feature-card:hover::before {
transform: scaleX(1);
}

.feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 80px;
height: 80px;
background: var(--background-light);
color: var(--primary-color);
border-radius: 20px; /* Softer shape */
margin-bottom: 25px;
box-shadow: none; /* Removed heavy shadow */
transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
background: var(--primary-color);
color: white;
transform: rotateY(180deg);
}

.feature-icon i {
font-size: 2rem;
transition: transform 0.3s;
}

.feature-card:hover .feature-icon i {
transform: rotateY(-180deg); /* Counter rotate icon so it stays readable if needed, or just let it flip */
}

.feature-card h3 {
font-size: 1.5rem;
color: var(--text-color);
margin-bottom: 15px;
font-weight: 700;
}

.feature-card p {
font-size: 1rem;
color: var(--text-light);
line-height: 1.7;
margin: 0;
}

/* Responsive Features Section */
@media screen and (max-width: 1200px) {
.features-section {
padding: 70px 0;
}

.features-header {
margin-bottom: 50px;
}

.features-header h2 {
font-size: 2.3rem;
}
}

@media screen and (max-width: 992px) {
.features-section {
padding: 60px 0;
}

.features-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}

.features-header h2 {
font-size: 2.1rem;
}

.feature-card {
padding: 35px 25px;
}
}

@media screen and (max-width: 768px) {
.features-section {
padding: 50px 0;
}

.features-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.features-header {
margin-bottom: 40px;
}

.features-header h2 {
font-size: 1.9rem;
}

.features-header p {
font-size: 1rem;
}

.feature-card {
padding: 30px 20px;
max-width: 400px;
margin: 0 auto;
}

.feature-icon {
width: 70px;
height: 70px;
margin-bottom: 20px;
}

.feature-icon i {
font-size: 1.8rem;
}

.feature-card h3 {
font-size: 1.3rem;
margin-bottom: 12px;
}
}

@media screen and (max-width: 576px) {
.features-section {
padding: 40px 0;
}

.features-header h2 {
font-size: 1.7rem;
margin-bottom: 12px;
}

.features-header p {
font-size: 0.95rem;
}

.feature-card {
padding: 25px 15px;
}

.feature-icon {
width: 60px;
height: 60px;
margin-bottom: 18px;
}

.feature-icon i {
font-size: 1.6rem;
}

.feature-card h3 {
font-size: 1.2rem;
margin-bottom: 10px;
}

.feature-card p {
font-size: 0.9rem;
}
}

@media screen and (max-width: 360px) {
.features-section {
padding: 35px 0;
}

.features-header h2 {
font-size: 1.5rem;
}

.feature-card {
padding: 20px 12px;
}

.feature-icon {
width: 55px;
height: 55px;
}

.feature-icon i {
font-size: 1.4rem;
}
}

/* Footer Styles */
.footer {
background-color: #1a1a1a;
color: #fff;
padding: 60px 0 0;
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 40px;
}

.footer-section h3,
.footer-section h4 {
color: var(--secondary-color);
margin-bottom: 20px;
font-weight: 600;
}

.footer-section h3 {
font-size: 1.5rem;
}

.footer-section h4 {
font-size: 1.2rem;
}

.footer-logo {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 20px;
}

.footer-logo img {
height: 50px;
width: auto;
}

.footer-section p {
color: #ccc;
line-height: 1.6;
margin-bottom: 25px;
}

.footer-social {
display: flex;
gap: 15px;
}

.footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: var(--primary-color);
border-radius: 50%;
color: var(--secondary-color);
text-decoration: none;
transition: all 0.3s ease;
}

.footer-social a:hover {
background-color: #1a4499;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(33, 84, 173, 0.4);
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 12px;
}

.footer-section ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
position: relative;
}

.footer-section ul li a:hover {
color: var(--primary-color);
}

.footer-section ul li a::before {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: var(--primary-color);
transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
width: 100%;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 15px;
}

.contact-item {
display: flex;
align-items: flex-start;
gap: 12px;
color: #ccc;
}

.contact-item i {
color: var(--primary-color);
font-size: 1.1rem;
margin-top: 3px;
min-width: 20px;
}

.footer-bottom {
border-top: 1px solid #333;
padding: 25px 0;
}

.footer-bottom-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.footer-bottom p {
color: #999;
margin: 0;
}

.footer-links {
display: flex;
gap: 25px;
}

.footer-links a {
color: #999;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--primary-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
.footer-content {
grid-template-columns: 2fr 1fr 1fr 1.3fr;
gap: 35px;
}
}

@media screen and (max-width: 992px) {
.footer {
padding: 50px 0 0;
}

.footer-content {
grid-template-columns: 1fr 1fr;
gap: 30px;
}
}

@media screen and (max-width: 768px) {
.footer {
padding: 40px 0 0;
}

.footer-content {
grid-template-columns: 1fr;
gap: 30px;
text-align: center;
}

.footer-logo {
justify-content: center;
}

.footer-social {
justify-content: center;
}

.contact-item {
justify-content: center;
}

.footer-bottom-content {
flex-direction: column;
text-align: center;
gap: 15px;
}

.footer-links {
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
}

@media screen and (max-width: 576px) {
.footer {
padding: 35px 0 0;
}

.footer-content {
gap: 25px;
}

.footer-section h3 {
font-size: 1.3rem;
}

.footer-section h4 {
font-size: 1.1rem;
margin-bottom: 15px;
}

.footer-logo {
flex-direction: column;
gap: 10px;
}

.footer-logo img {
height: 40px;
}

.footer-social a {
width: 35px;
height: 35px;
}

.contact-item {
flex-direction: column;
align-items: center;
text-align: center;
gap: 8px;
}

.footer-links {
gap: 15px;
}

.footer-links a {
font-size: 0.85rem;
}
}

@media screen and (max-width: 360px) {
.footer {
padding: 30px 0 0;
}

.footer-section h3 {
font-size: 1.2rem;
}

.footer-section h4 {
font-size: 1rem;
}

.footer-social {
gap: 10px;
}

.footer-social a {
width: 32px;
height: 32px;
font-size: 0.9rem;
}
}

/* Alert Styles */
.alert-container {
padding: 20px 0;
background-color: var(--background-light);
}

.alert {
display: flex;
align-items: center;
gap: 15px;
padding: 15px 20px;
border-radius: 8px;
margin-bottom: 0;
font-weight: 500;
}

.alert-success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}

.alert-error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}

.alert i {
font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
.alert {
flex-direction: column;
text-align: center;
gap: 10px;
}

.alert i {
font-size: 1.5rem;
}
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    z-index: 2;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.category-btn {
    display: inline-block;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-title {
    transform: translateY(-5px);
}

.category-card:hover .category-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 250px;
    }
}

