/* HACI İş Kıyafetleri - Premium CSS */

:root {
    --primary: #208B8C;
    --primary-dark: #1A6B6C;
    --secondary: #607D8B;
    --success: #4CAF50;
    --danger: #F44336;
    --warning: #FF9800;
    --info: #2196F3;
    --light: #FAFAFA;
    --dark: #212121;
    --white: #ffffff;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #208B8C, #1A6B6C);
    --gradient-secondary: linear-gradient(135deg, #2196F3, #3F51B5);
    --gradient-success: linear-gradient(135deg, #4CAF50, #8BC34A);
    --gradient-warning: linear-gradient(135deg, #FF9800, #FFC107);
    --gradient-info: linear-gradient(135deg, #2196F3, #00BCD4);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
    
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Yatay scroll'u engelle */
}

html {
    overflow-x: hidden; /* Yatay scroll'u engelle */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* Header Styles */
.header {
    position: relative;
    z-index: 1000;
}

/* Top bar removed - no longer needed */

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.75rem;
    text-decoration: none;
    transition: var(--transition);
}

/* Navbar logo sizing */
.brand-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-right: 1rem;
}

.modern-navbar.scrolled .brand-logo {
    height: 45px;
}

@media (max-width: 991.98px) {
    .brand-logo {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .brand-logo {
        height: 38px;
    }
}

/* Brand Text Styling */
.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(32, 139, 140, 0.1);
}

.navbar-brand:hover .brand-text {
    transform: scale(1.02);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-navbar.scrolled .brand-text {
    font-size: 1.5rem;
}

@media (max-width: 991.98px) {
    .brand-text {
        font-size: 1.4rem;
    }
    
    .brand-logo {
        margin-right: 0.75rem;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        margin-right: 0.5rem;
    }
}

@media (max-width: 576px) {
    .brand-text {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .brand-logo {
        margin-right: 0.5rem;
    }
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Shrink header on scroll */
.navbar.is-shrunk {
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
}

.navbar.is-shrunk .navbar-brand {
    font-size: 1.5rem;
}

/* Modern Navbar Styles */
.modern-navbar {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    max-width: none;
    backdrop-filter: none;
}

.modern-navbar .navbar-nav .nav-link {
    font-weight: 500;
    padding: 12px 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 25px;
    margin: 0 4px;
    color: #333 !important;
    font-size: 0.95rem;
}

.modern-navbar .navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(32, 139, 140, 0.1), rgba(26, 107, 108, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 139, 140, 0.2);
}

.modern-navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.modern-navbar .navbar-nav .nav-link:hover::before {
    width: 70%;
}

/* Brand Icon Styling */
.modern-navbar .brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(32, 139, 140, 0.3);
    transition: all 0.3s ease;
    margin-right: 0.75rem;
}

.modern-navbar .navbar-brand:hover .brand-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(32, 139, 140, 0.4);
}

/* Brand Text Styling */
.modern-navbar .brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.modern-navbar .navbar-brand:hover .brand-text {
    transform: scale(1.02);
}

/* Navbar Toggler */
.modern-navbar .navbar-toggler {
    border: 2px solid rgba(32, 139, 140, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.modern-navbar .navbar-toggler:hover {
    background: rgba(32, 139, 140, 0.1);
    border-color: var(--primary);
    transform: scale(1.05);
}

.modern-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(32, 139, 140, 0.25);
}

/* Modern Dropdown Menu */
.modern-dropdown {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(32, 139, 140, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 12px;
    padding: 1.5rem 0;
    min-width: 300px;
    animation: dropdownSlideIn 0.3s ease-out;
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modern-dropdown .dropdown-item {
    padding: 14px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
    margin: 6px 16px;
    border-radius: 12px;
    font-size: 0.95rem;
}

.modern-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: width 0.3s ease;
    border-radius: 0 12px 12px 0;
}

.modern-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(32, 139, 140, 0.08), transparent);
    color: var(--primary);
    padding-left: 3rem;
    transform: translateX(10px);
}

.modern-dropdown .dropdown-item:hover::before {
    width: 4px;
}

.modern-dropdown .dropdown-item i {
    margin-right: 14px;
    width: 22px;
    text-align: center;
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modern-dropdown .dropdown-item:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.modern-dropdown .dropdown-header {
    padding: 16px 24px 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-bottom: 2px solid rgba(32, 139, 140, 0.1);
    margin-bottom: 12px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-dropdown .dropdown-divider {
    margin: 12px 24px;
    border-color: rgba(32, 139, 140, 0.1);
    border-width: 1px;
}

/* WhatsApp Button Styling */
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .modern-navbar {
        margin: 0;
        border-radius: 0;
        max-width: none;
        padding: 0.75rem 0;
    }
    
    .modern-navbar .navbar-brand {
        font-size: 1.5rem;
        margin-right: 0;
    }
    
    .modern-navbar .navbar-toggler {
        border: 2px solid var(--primary);
        padding: 0.5rem;
        border-radius: 8px;
        background: rgba(32, 139, 140, 0.05);
    }
    
    .modern-navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(32, 139, 140, 0.25);
    }
    
    .modern-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 2rem 1.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .modern-navbar .navbar-collapse::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 16px 16px 0 0;
    }
    
    .modern-navbar .navbar-nav {
        margin-top: 1rem;
    }
    
    .modern-navbar .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
        border-radius: 12px;
        padding: 0.875rem 1.25rem;
        font-weight: 600;
        background: rgba(32, 139, 140, 0.05);
        border: 1px solid rgba(32, 139, 140, 0.1);
        transition: all 0.3s ease;
    }
    
    .modern-navbar .navbar-nav .nav-link:hover {
        background: var(--gradient-primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(32, 139, 140, 0.3);
    }
    
    .modern-dropdown {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(32, 139, 140, 0.2);
        margin-top: 8px;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .modern-dropdown .dropdown-item {
        color: #333;
        margin: 4px 8px;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        font-weight: 500;
    }
    
    .modern-dropdown .dropdown-item:hover {
        background: rgba(32, 139, 140, 0.1);
        color: var(--primary);
        transform: translateX(5px);
    }
}

/* Navbar Scroll Effect */
.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    margin: 0;
    border-radius: 0;
}

.modern-navbar.scrolled .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.modern-navbar.scrolled .brand-text {
    font-size: 1.6rem;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 1rem 0;
    margin-top: 0.75rem;
    min-width: 280px;
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: dropdownFadeIn 0.3s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    padding: 0.875rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 87, 34, 0.1), transparent);
    color: var(--primary);
    padding-left: 2.5rem;
    transform: translateX(5px);
}

.dropdown-item:hover::before {
    width: 4px;
}

.dropdown-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    color: var(--primary);
    transition: var(--transition);
}

.dropdown-item:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.08);
}

/* Dropdown Header */
.dropdown-header {
    padding: 0.75rem 1.5rem 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #208B8C);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 139, 140, 0.3);
}

.btn-success {
    background: var(--gradient-success);
    border: none;
    color: var(--white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #388E3C, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-warning {
    background: var(--gradient-warning);
    border: none;
    color: var(--white);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #F57C00, #FF9800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

.btn-info {
    background: var(--gradient-info);
    border: none;
    color: var(--white);
}

.btn-info:hover {
    background: linear-gradient(135deg, #1976D2, #2196F3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Sabit yükseklik */
    max-height: 100vh;
    width: 100vw; /* Tam genişlik */
    margin-left: calc(-50vw + 50%); /* Container'dan taşma */
    margin-right: calc(-50vw + 50%); /* Container'dan taşma */
}

.hero-slide {
    height: 100vh; /* Sabit yükseklik - min-height yerine height */
    width: 100vw; /* Tam genişlik */
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; /* Taşan içeriği gizle */
}

/* Swiper container sabit boyut */
.main-slider-style1 {
    height: 100vh !important;
    max-height: 100vh !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

.main-slider-style1 .swiper-wrapper {
    height: 100vh !important;
}

.main-slider-style1 .swiper-slide {
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero image sabit boyut */
.hero-image {
    max-height: 400px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Hero slide içerik alanı sabit boyut */
.hero-slide .container {
    height: 100%;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}

.hero-slide .row {
    height: 100%;
    width: 100%;
    align-items: center;
    margin: 0;
}

/* Responsive hero image boyutları */
@media (max-width: 768px) {
    .hero-image {
        max-height: 250px !important;
        margin-top: 1rem;
    }
    
    .hero-slide {
        height: 100vh;
        width: 100vw;
        padding: 2rem 0;
    }
    
    .hero-slider {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .main-slider-style1 {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
}

@media (max-width: 576px) {
    .hero-image {
        max-height: 200px !important;
        margin-top: 1rem;
    }
    
    .hero-slide {
        width: 100vw;
    }
    
    .hero-slider {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .main-slider-style1 {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
    }
}

/* Swiper Navigation Controls */
.swiper-button-next,
.swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: rgba(32, 139, 140, 0.2) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(32, 139, 140, 0.3) !important;
    color: white !important;
    font-size: 20px !important;
    z-index: 10 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(32, 139, 140, 0.4) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
    z-index: 10 !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: rgba(32, 139, 140, 0.3) !important;
    opacity: 1 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: rgba(32, 139, 140, 0.8) !important;
    transform: scale(1.2) !important;
}

/* Carousel Controls (Bootstrap fallback) */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(32, 139, 140, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(32, 139, 140, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 3;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators button {
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: rgba(32, 139, 140, 0.3);
    border: none;
    margin: 0;
    padding: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #208B8C, rgba(32, 139, 140, 0.8));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicators button.active {
    background: rgba(32, 139, 140, 0.5);
    opacity: 1;
    transform: scaleY(1.2);
    box-shadow: 0 0 15px rgba(32, 139, 140, 0.3);
}

.carousel-indicators button.active::before {
    width: 100%;
}

.carousel-indicators button:hover {
    background: rgba(32, 139, 140, 0.4);
    transform: scaleY(1.1);
    opacity: 1;
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Floating Animation */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* WhatsApp Button Consistency */
.btn-success.w-100 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success.w-100:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Product Card WhatsApp Button */
.product-card .btn-success {
    margin-top: auto;
}

/* Blog Card WhatsApp Button */
.blog-card .btn-success {
    margin-top: auto;
}

/* Ensure consistent button heights in cards */
.product-card,
.blog-card {
    display: flex;
    flex-direction: column;
}

.product-content,
.blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content .btn,
.blog-content .btn {
    margin-top: auto;
}

/* Product Card Button Improvements */
.product-content .d-flex.gap-2 {
    margin-top: auto;
    gap: 0.75rem !important;
}

.product-content .btn {
    min-height: 44px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    padding: 0.75rem 1rem;
}

.product-content .btn-primary {
    background: linear-gradient(135deg, #208B8C, #1A6B6C);
    color: white;
    box-shadow: 0 4px 15px rgba(32, 139, 140, 0.2);
}

.product-content .btn-primary:hover {
    background: linear-gradient(135deg, #1A6B6C, #145555);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 139, 140, 0.3);
    color: white;
}

.product-content .btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.product-content .btn-success:hover {
    background: linear-gradient(135deg, #128C7E, #0F6B5F);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.product-content .btn i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Responsive button adjustments */
@media (max-width: 768px) {
    .product-content .btn {
        min-height: 48px;
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    
    .product-content .d-flex.gap-2 {
        gap: 0.5rem !important;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    display: none;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-category {
    margin-bottom: 0.5rem;
}

.product-category .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: white !important;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--light);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

/* About Section */
.about-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.about-section .container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 139, 140, 0.05), rgba(26, 107, 108, 0.03));
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 10;
    padding: 2rem 4rem;
    max-width: 100%;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(32, 139, 140, 0.15);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(32, 139, 140, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon-large {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(32, 139, 140, 0.4);
}

/* Feature Item Content */
.feature-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--secondary);
    line-height: 1.5;
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(32, 139, 140, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    animation: float 8s ease-in-out infinite;
    opacity: 0.5;
    z-index: 0;
    box-shadow: 0 4px 15px rgba(32, 139, 140, 0.2);
    border: 2px solid rgba(32, 139, 140, 0.1);
}

.floating-icon.icon-1 {
    top: 12%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 12%;
    right: 10%;
    animation-delay: 1s;
}

.floating-icon.icon-3 {
    top: 80%;
    left: 0%;
    animation-delay: 2s;
}

.floating-icon.icon-4 {
    top: 70%;
    right: 0%;
    animation-delay: 3s;
}

.floating-icon.icon-5 {
    top: 55%;
    left: 15%;
    animation-delay: 4s;
}

.floating-icon.icon-6 {
    top: 55%;
    right: 15%;
    animation-delay: 5s;
}

.floating-icon.icon-7 {
    top: 80%;
    left: 6%;
    animation-delay: 1.5s;
}

.floating-icon.icon-8 {
    top: 80%;
    right: 6%;
    animation-delay: 3.5s;
}

.floating-icon.icon-9 {
    top: 90%;
    left: 18%;
    animation-delay: 2.5s;
}

.floating-icon.icon-10 {
    top: 90%;
    right: 18%;
    animation-delay: 4.5s;
}

.floating-icon.icon-11 {
    top: 95%;
    left: 4%;
    animation-delay: 0.8s;
}

.floating-icon.icon-12 {
    top: 95%;
    right: 4%;
    animation-delay: 2.8s;
}

/* About Text Styling */
.about-text {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 10;
}

.about-text p {
    text-align: justify;
    hyphens: auto;
    word-spacing: 0.1em;
}

/* Enhanced floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

/* Stats */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: var(--border-radius-lg);
}

.stats .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats .row {
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light);
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(32, 139, 140, 0.05), rgba(26, 107, 108, 0.02));
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(32, 139, 140, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: 1;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(32, 139, 140, 0.2);
    border-color: var(--primary);
}

.contact-item:hover::before {
    width: 4px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(32, 139, 140, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(32, 139, 140, 0.4);
}

.contact-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-content h6 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

.working-hours {
    margin-top: 0.5rem;
}

.working-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.working-day .day {
    font-weight: 500;
    color: var(--dark);
}

.working-day .time {
    font-weight: 600;
    color: var(--success);
}

.working-day .time.closed {
    color: var(--danger);
}

/* Product Filter Styles */
.product-filters {
    padding: 1rem 0;
}

.filter-buttons .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.filter-buttons .btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 139, 140, 0.3);
}

.filter-buttons .btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(32, 139, 140, 0.3);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-lg);
    padding: 1rem;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.product-overlay .btn:hover {
    background: linear-gradient(135deg, #128C7E, #0F6B5F);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Product Gallery */
.product-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Product Info */
.product-rating .stars {
    font-size: 1.1rem;
}

.product-price .current-price {
    font-size: 2.5rem;
}

.discount-badge {
    font-size: 0.875rem;
    font-weight: 600;
}

.size-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-btn:hover,
.size-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.quantity-controls input {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.quantity-controls .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Tabs */
.nav-tabs .nav-link {
    border: none;
    color: var(--dark);
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: var(--primary);
}

.nav-tabs .nav-link.active {
    background: transparent;
    border: none;
    color: var(--primary);
}

.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Review Styles */
.rating-score h2 {
    font-size: 3rem;
}

.rating-bars .progress {
    background: rgba(0, 0, 0, 0.1);
}

.review-item {
    padding: 1rem 0;
}

/* Contact Form Styles */
.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.form-label i {
    color: var(--primary);
    width: 20px;
}

.form-control,
.form-select {
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(32, 139, 140, 0.15);
    outline: none;
}

.form-control-lg,
.form-select-lg {
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.25rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(32, 139, 140, 0.15);
}

.privacy-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn i {
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--dark);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 95px;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.6));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.3));
    }
}

/* Map Section Styles */
.map-section {
    background: var(--light);
}

.map-container-clean {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container-clean iframe {
    border: none;
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
}

/* Mini Map Styles (for footer) */
.mini-map {
    margin-top: 1.5rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 150px;
    border-radius: var(--border-radius);
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-btn {
        width: 70px;
        height: 70px;
    }
    
    .whatsapp-btn i {
        font-size: 3rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    }
    
    .mini-map {
        margin-top: 1rem;
    }
    
    .map-container iframe {
        height: 120px;
    }
    
    /* Map Section Mobile */
    .map-container-clean iframe {
        height: 200px;
    }
    
    .map-section {
        padding: 2rem 0;
    }
    
    /* About Section Mobile */
    .about-content {
        padding: 1rem 2rem;
    }
    
    .about-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-text p {
        text-align: left;
        font-size: 1rem;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        opacity: 0.4;
    }
    
    .floating-icon.icon-5,
    .floating-icon.icon-6,
    .floating-icon.icon-7,
    .floating-icon.icon-8,
    .floating-icon.icon-9,
    .floating-icon.icon-10,
    .floating-icon.icon-11,
    .floating-icon.icon-12 {
        display: none;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Slider Dots Mobile */
    .carousel-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        background: rgba(32, 139, 140, 0.3);
    }
    
    .carousel-indicators button.active {
        background: rgba(32, 139, 140, 0.6);
        box-shadow: 0 0 10px rgba(32, 139, 140, 0.4);
    }
    
    .carousel-indicators button.active::before {
        width: 4px;
        height: 4px;
        background: #208B8C;
    }

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-collapse {
    border-radius: var(--border-radius);
    margin-top: 1rem;
    padding: 1rem;
}

.navbar-nav .nav-item {
    margin-bottom: 0.5rem;
}

.navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: var(--light);
    color: var(--primary);
}

/* Mobile Dropdown */
.navbar-nav .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0.5rem;
    background: var(--light);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: none;
    padding: 0.5rem 0;
}

.navbar-nav .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    border-radius: 0;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
}

.navbar-nav .dropdown-header {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.navbar-nav .dropdown-divider {
    margin: 0.5rem 1rem;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Desktop Dropdown Fix */
.navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-nav .dropdown-toggle .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, rgba(32, 139, 140, 0.1), rgba(26, 107, 108, 0.05));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23208B8C" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231A6B6C" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23208B8C" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%231A6B6C" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23208B8C" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: var(--dark) !important;
}

.footer-brand h4 {
    margin-bottom: 1rem;
}

.footer .social-links .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer .social-links .btn:hover {
    transform: translateY(-3px);
}

/* Back to Top Button */
#backToTop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    transition: var(--transition);
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slide {
        height: 100vh; /* Sabit yükseklik korunur */
        padding: 2rem 0;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .col-md-6:first-child {
        margin-bottom: 1rem;
    }
    
    .stats {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        background: rgba(32, 139, 140, 0.3);
        border: 2px solid rgba(32, 139, 140, 0.4);
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .dropdown-menu {
        min-width: 250px;
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1.25rem;
    }
    
    .dropdown-item:hover {
        padding-left: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        height: 100vh; /* Sabit yükseklik korunur */
    }
    
    .hero-slide h1 {
        font-size: 1.75rem;
    }
    
    .hero-slide p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-content,
    .blog-content {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        background: rgba(32, 139, 140, 0.4);
        border: 2px solid rgba(32, 139, 140, 0.5);
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .hero-slide {
        min-height: 70vh;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-right: 1rem;
    }
    
    .about-badge {
        padding: 1rem;
        top: 10px;
        right: 10px;
    }
    
    .badge-content h4 {
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.1);
}

.border-radius-custom {
    border-radius: var(--border-radius-lg);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
    box-shadow: 0 0 0 0.2rem rgba(32, 139, 140, 0.25);
    outline: none;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    #backToTop {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        width: 100%;
    }
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(32, 139, 140, 0.1), rgba(26, 107, 108, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.blog-title:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* WhatsApp Button Mobile Optimizations */
@media (max-width: 768px) {
    .btn-success {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
        border-radius: 8px !important;
    }
    
    .btn-lg {
        font-size: 0.9rem !important;
        padding: 0.8rem 1.5rem !important;
    }
    
    /* CTA Section Mobile */
    .cta-section .btn,
    .py-5.bg-light .btn {
        width: 100% !important;
        margin-top: 1rem !important;
        font-size: 0.9rem !important;
        padding: 0.8rem 1.5rem !important;
    }
    
    /* Contact Page WhatsApp Button */
    .contact-info .btn-success {
        font-size: 0.85rem !important;
        padding: 0.7rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .btn-success {
        font-size: 0.8rem !important;
        padding: 0.6rem 1rem !important;
    }
    
    .btn-lg {
        font-size: 0.8rem !important;
        padding: 0.7rem 1.2rem !important;
    }
    
    /* CTA Section Extra Small Mobile */
    .cta-section .btn,
    .py-5.bg-light .btn {
        font-size: 0.8rem !important;
        padding: 0.7rem 1rem !important;
    }
    
    /* Contact Page WhatsApp Button Extra Small */
    .contact-info .btn-success {
        font-size: 0.75rem !important;
        padding: 0.6rem 0.8rem !important;
    }
}

.mobile-contact-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(32, 139, 140, 0.1);
}

.mobile-detail-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(32, 139, 140, 0.1);
}

.mobile-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-detail-item h6 {
    color: var(--primary);
    font-size: 0.95rem;
}

.mobile-detail-item p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Contact Page Mobile Optimizations */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        margin-bottom: 1rem;
    }
    
    .contact-content h6 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-content p {
        font-size: 0.9rem;
    }
    
    .working-hours {
        text-align: center;
    }
    
    .working-day {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0.5rem;
    }
    
    .working-day .day {
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .contact-form-card {
        margin-bottom: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .contact-content h6 {
        font-size: 0.9rem;
    }
    
    .contact-content p {
        font-size: 0.85rem;
    }
    
    .mobile-contact-card {
        padding: 0.75rem;
    }
    
    .mobile-contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .mobile-contact-title {
        font-size: 0.75rem;
    }
    
    .mobile-contact-details {
        padding: 1rem;
    }
    
    .mobile-detail-item h6 {
        font-size: 0.9rem;
    }
    
    .mobile-detail-item p {
        font-size: 0.85rem;
    }
}

/* Mobile Navbar Optimizations */
@media (max-width: 991.98px) {
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }
    
    .navbar-brand .brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        padding: 1rem;
        position: relative;
        z-index: 1000;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(32, 139, 140, 0.1);
        color: var(--primary);
    }
    
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(32, 139, 140, 0.05);
        margin-top: 0.5rem;
        border-radius: 6px;
        display: none;
        width: 100%;
    }
    
    .dropdown-menu.show {
        display: block !important;
        animation: slideDown 0.3s ease;
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent navbar collapse on dropdown interactions */
    .navbar-nav .dropdown-toggle:focus {
        box-shadow: none;
    }
    
    .navbar-nav .dropdown-menu {
        pointer-events: auto;
    }
    
    /* Ensure dropdown stays open on mobile */
    .navbar-nav .dropdown-menu.show {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
    
    /* Completely override Bootstrap dropdown behavior on mobile */
    @media (max-width: 991.98px) {
        .navbar-nav .dropdown-toggle[data-bs-toggle="dropdown"] {
            pointer-events: auto;
        }
        
        .navbar-nav .dropdown-menu {
            position: static !important;
            transform: none !important;
            will-change: auto !important;
            display: none !important;
        }
        
        .navbar-nav .dropdown-menu.show {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            pointer-events: auto !important;
        }
        
        /* Prevent Bootstrap from hiding dropdown */
        .navbar-nav .dropdown-menu:not(.show) {
            display: none !important;
        }
        
        /* Force dropdown to be visible when show class is present */
        .navbar-nav .dropdown-menu.show {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            transform: none !important;
            position: static !important;
        }
        
        /* Prevent navbar collapse when dropdown is open */
        .navbar-collapse.show .dropdown-menu.show {
            display: block !important;
        }
        
        /* Ensure navbar stays open when dropdown is active */
        .navbar-collapse:has(.dropdown-menu.show) {
            display: block !important;
        }
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        border-radius: 4px;
        margin-bottom: 0.25rem;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background-color: rgba(32, 139, 140, 0.1);
        transform: translateX(5px);
    }
    
    .dropdown-header {
        color: var(--primary);
        font-weight: 600;
        padding: 0.5rem 1rem;
        margin-bottom: 0.5rem;
    }
    
    .dropdown-divider {
        margin: 0.5rem 0;
        border-color: rgba(32, 139, 140, 0.2);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 576px) {
    .navbar-brand .brand-text {
        font-size: 1rem;
    }
    
    .navbar-brand .brand-logo {
        width: 30px;
        height: 30px;
    }
    
    .navbar-toggler {
        padding: 0.2rem 0.4rem;
        font-size: 0.9rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .hero-slide {
        height: 100vh; /* Sabit yükseklik */
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-image {
        max-height: 300px;
        margin-top: 2rem;
    }
    
    /* Button adjustments */
    .hero-content .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
/* Mobile Features */
.mobile-features {
    margin: 2rem 0;
}

.mobile-feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(32, 139, 140, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(32, 139, 140, 0.2);
}

.mobile-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #1A6B6C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(32, 139, 140, 0.3);
}

.mobile-feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* About Section Mobile Optimizations */
@media (max-width: 768px) {
    .about-section {
        position: relative;
        overflow: hidden;
    }
    
    .about-content {
        position: relative;
        z-index: 2;
    }
    
    .decorative-elements {
        display: none !important;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content .lead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .about-content .btn {
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
    }
    
    /* Stats Mobile */
    .stats {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .stats .row {
        justify-content: center;
        align-items: center;
    }
    
    .stat-item {
        margin-bottom: 2rem;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-content .lead {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .about-content .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }
    
    .mobile-feature-item {
        padding: 1rem 0.5rem;
    }
    
    .mobile-feature-icon {
        display: none !important;
    }
    
    .mobile-feature-title {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    /* Stats Extra Small Mobile */
    .stats {
        margin: 1.5rem 0;
        padding: 1.5rem 0;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
        padding: 0.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.9rem;
        text-align: center;
    }
}
    
    /* Features Mobile */
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    /* Products Mobile */
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-content .btn {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    /* Blog Cards Mobile */
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 0.95rem;
    }
    
    /* Stats Mobile */
    .stat-item {
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* CTA Mobile */
    .cta-section .btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    /* General Mobile Adjustments */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .mb-5 {
        margin-bottom: 3rem !important;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .product-card .btn {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    .blog-card .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

/* Error Page Styles */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.error-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.error-icon {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

.error-code {
    font-size: 8rem;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.error-title {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.error-message {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.error-actions {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.error-links {
    animation: fadeInUp 1s ease-out 0.8s both;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error Page Responsive Design */
@media (max-width: 768px) {
    .error-page {
        padding: 2rem 0;
    }
    
    .error-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
    
    .error-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .error-actions .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-icon {
        font-size: 2.5rem;
    }
    
    .error-content {
        padding: 1.5rem 1rem;
    }
}