/*

Theme Name: ramazanalkan.com
Version: 0.1
Description: This theme designed by from Ramazan Alkan 15.09.2019 for elephantglazing.net
Author: Ramazan Alkan
Author URI: https://www.ramazanalkan.com

*/


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
	--ramazanContainerFull: 60%;
    --ramazanContainerSize: 80%;
    --ramazanLinkColor: #fff;
    --ramazanNavbarColor: rgb(36, 151, 155);
    --ramazanOrangeColor: rgb(255, 120, 0);
    
    /* Modern Design Variables */
    --primary-gradient: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, #1e3a8a 100%);
    --secondary-gradient: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #dc2626 100%);
    --accent-color: var(--ramazanNavbarColor);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dark-accent: #1a202c;
}

.bg-ramo {
    background: var(--ramazanNavbarColor);
}

* {
    box-sizing: border-box;
}

body {
    background: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* Bootstrap container-fluid kullanılıyor, custom genişlik kaldırıldı */

.ramazanColor {
    color: var(--ramazanNavbarColor);
}

/* Modern Header Styles */

#modernHeader {
    z-index: 1000;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-20px);
}

#modernHeader.loaded,
#modernHeader.initialized {
    opacity: 1;
    transform: translateY(0);
}

.modern-navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu {
    transition: all 0.2s ease-in-out;
}

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(135deg, var(--dark-accent) 0%, var(--ramazanNavbarColor) 100%);
    color: var(--ramazanLinkColor);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.top-info-bar .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
}

.contact-info .info-item {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info .info-item i {
    color: var(--ramazanOrangeColor);
    font-size: 12px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.social-link:hover {
    background: var(--ramazanOrangeColor);
    color: var(--ramazanLinkColor);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Main Navigation */
.modern-navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--ramazanOrangeColor);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(36, 151, 155, 0.1);
    position: relative;
}

.modern-navbar .container-fluid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
    position: relative;
}

.modern-navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
    padding: 10px 0;
    box-shadow: 0 4px 25px rgba(36, 151, 155, 0.15);
    border-bottom: 2px solid var(--ramazanOrangeColor);
}

.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.modern-navbar.scrolled .brand-logo {
    height: 40px;
}

/* Mobile Toggle - Modernized */
.modern-toggler {
    border: none;
    padding: 12px;
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.1) 0%, rgba(255, 128, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.modern-toggler:hover::before {
    left: 100%;
}

.modern-toggler:hover {
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.15) 0%, rgba(255, 128, 0, 0.15) 100%);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(36, 151, 155, 0.2);
}

.toggler-line {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, var(--ramazanOrangeColor) 100%);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
}

.modern-toggler:focus {
    box-shadow: 0 0 0 3px rgba(36, 151, 155, 0.2);
    outline: none;
}

.modern-toggler[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.2) 0%, rgba(36, 151, 155, 0.2) 100%);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--ramazanOrangeColor);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--ramazanOrangeColor);
}

/* Navigation Links */
.modern-nav {
    align-items: center;
    gap: 10px;
}

.modern-nav-link {
    position: relative;
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 12px 20px !important;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-text {
    position: relative;
    z-index: 2;
}

.nav-underline {
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--ramazanOrangeColor);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 1px;
}

.modern-nav-link:hover {
    color: var(--ramazanNavbarColor) !important;
    text-decoration: none;
}

.modern-nav-link:hover .nav-underline {
    transform: scaleX(1);
}

/* CTA Button */
.cta-button {
    background: #ff8000;
    color: var(--ramazanLinkColor) !important;
    border-radius: 5px;
    padding: 10px 20px !important;
    margin-left: 15px;
    font-weight: 600;
}

.cta-button:hover {
    color: var(--ramazanLinkColor) !important;
    box-shadow: 0 6px 10px rgba(255, 120, 0, 0.4);
}

.cta-button .nav-underline {
    display: none;
}

/* Desktop Mega Menu Styles */
@media (min-width: 992px) {
    .mega-dropdown {
        position: static;
    }
    
    .mega-dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 10px;
        background: transparent;
        z-index: 1049;
    }

    .mega-dropdown .dropdown-menu {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: auto;
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.15s ease;
    }

    .mega-dropdown.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        animation: megaMenuFadeIn 0.3s ease-out;
    }

    .mega-menu {
        position: absolute;
        left: 0;
        right: 0;
        margin: -5px auto 0 auto;
        width: 90vw;
        max-width: 1000px;
        min-width: 800px;
        background: white;
        border: none;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        padding: 5px 0 0 0;
        border: 1px solid rgba(36, 151, 155, 0.1);
        overflow: hidden;
        z-index: 1050;
    }
    
    .mega-menu::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 0;
        right: 0;
        height: 5px;
        background: transparent;
        z-index: 1051;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    animation: parallaxZoom 20s ease-in-out infinite;
}

@keyframes parallaxZoom {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

.text-orange {
    color: var(--ramazanOrangeColor)!important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(36, 151, 155, 0.6) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 120, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(36, 151, 155, 0.1) 0%, transparent 50%);
    animation: floatingOrbs 15s ease-in-out infinite;
}

@keyframes floatingOrbs {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(120deg); }
    66% { transform: translate(-15px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
    height: 100%;
    animation: heroContentSlideIn 1.2s ease-out;
}

.hero-content .container-fluid {
    height: 100%;
    max-width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
}

@keyframes heroContentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5);
    color: #ffffff;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 0 20px rgba(36, 151, 155, 0.3);
    }
    100% {
        text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 0 30px rgba(36, 151, 155, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    color: #ffffff;
    animation: subtitleFadeIn 1.5s ease-out 0.3s both;
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 0.95;
        transform: translateX(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: buttonsSlideUp 1.8s ease-out 0.6s both;
}

@keyframes buttonsSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    text-decoration: none;
}

.hero-btn:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.hero-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e7a7e 100%);
    border: none;
    color: #ffffff;
}

.hero-btn.btn-primary:hover {
    background: linear-gradient(135deg, #1e7a7e 0%, var(--primary-color) 100%);
    color: #ffffff;
}

.hero-btn.btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ffffff;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-btn.btn-outline-light:hover {
    background: #ffffff;
    color: var(--ramazanNavbarColor);
    border-color: #ffffff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 20px 20px;
}



/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.products-section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, #1a5f62 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Product Cards */
.product-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 400px;
    background: #ffffff;
}

.product-card-modern.compact {
    height: 320px;
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.85);
}

.product-card-modern:hover .product-image-container img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.product-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
    padding: 30px;
}

.product-card-modern:hover .product-overlay-modern {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(36, 151, 155, 0.8) 100%);
    
}

.product-info {
    text-align: center;
    color: #ffffff;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.product-card-modern:hover .product-info {
    transform: translateY(-5px);
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.product-badge.energy {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.product-badge.aesthetic {
    background: rgba(156, 39, 176, 0.3);
    border-color: rgba(156, 39, 176, 0.5);
}

.product-badge.security {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.5);
}

.product-badge.innovative {
    background: rgba(255, 152, 0, 0.3);
    border-color: rgba(255, 152, 0, 0.5);
}

.product-badge.modern {
    background: rgba(63, 81, 181, 0.3);
    border-color: rgba(63, 81, 181, 0.5);
}

.product-badge.seasonal {
    background: rgba(139, 195, 74, 0.3);
    border-color: rgba(139, 195, 74, 0.5);
}

.product-badge.transparent {
    background: rgba(96, 125, 139, 0.3);
    border-color: rgba(96, 125, 139, 0.5);
}

.product-title-overlay {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-card-modern.compact .product-title-overlay {
    font-size: 1.3rem;
}

.product-desc-overlay {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.feature-tag i {
    font-size: 10px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-modern.compact {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-modern:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-modern i {
    transition: all 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Modern Product Cards */
@media (max-width: 768px) {
    .product-card-modern {
        height: 350px;
    }
    
    .product-card-modern.compact {
        height: 280px;
    }
    
    .product-overlay-modern {
        padding: 20px;
    }
    
    .product-title-overlay {
        font-size: 1.3rem;
    }
    
    .product-card-modern.compact .product-title-overlay {
        font-size: 1.2rem;
    }
    
    .product-desc-overlay {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .product-features {
        margin-bottom: 20px;
    }
    
    .feature-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .btn-modern {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-modern.compact {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .product-card-modern {
        height: 320px;
    }
    
    .product-card-modern.compact {
        height: 260px;
    }
    
    .product-overlay-modern {
        padding: 15px;
    }
    
    .product-title-overlay {
        font-size: 1.2rem;
    }
    
    .product-card-modern.compact .product-title-overlay {
        font-size: 1.1rem;
    }
    
    .product-desc-overlay {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .product-features {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .feature-tag {
        font-size: 9px;
        padding: 2px 8px;
    }
}

/* Bootstrap Grid Enhancements for Product Cards */
#urunler .row .col-lg-6, #urunler .row .col-lg-4, #urunler .row .col-md-6 {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    #urunler .row .col-lg-6, #urunler .row .col-lg-4, #urunler .row .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Legacy product card styles for compatibility */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(36, 151, 155, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--ramazanNavbarColor);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.9) 0%, rgba(26, 95, 98, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay a {
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.product-overlay a:hover {
    color: #ffffff;
    transform: scale(1.2);
    text-decoration: none;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-title:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.product-description {
    color: #666666;
    line-height: 1.6;
    font-size: 14px;
}

.products-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e7a7e 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(36, 151, 155, 0.3);
}

.view-all-btn:hover {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(36, 151, 155, 0.4);
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-section .container-fluid {
    position: relative;
    z-index: 2;
    padding-left: 15px;
    padding-right: 15px;
}

.about-content {
    padding-right: 30px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.about-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    width: 300px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-logo:hover {
    transform: scale(1.05);
}

.about-intro {
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--ramazanNavbarColor);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--ramazanNavbarColor);
    margin-right: 1rem;
    min-width: 24px;
}

.feature-item span {
    font-weight: 600;
    color: #333;
}

.about-cta-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.cta-content {
    margin-bottom: 2rem;
}

.cta-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about-buttons-enhanced {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn-main {
    padding: 20px 30px;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.about-btn-main i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-btn-main span {
    font-size: 1.1rem;
    font-weight: 600;
}

.about-btn-main small {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 400;
}

.about-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.about-buttons .btn i {
    margin-right: 8px;
}

.about-image {
    position: relative;
}

.about-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.about-visual {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
}

.interactive-map {
    border: none;
    border-radius: 20px;
    transition: filter 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.location-badge {
    background: rgba(36, 151, 155, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(36, 151, 155, 0.3);
    animation: pulse 2s infinite;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, #1a5f62 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(36, 151, 155, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-content {
    text-align: center;
    color: #ffffff;
}

.badge-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 5px;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Contact Section Styles */
.contact-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--ramazanNavbarColor);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-info-item.full-width {
    grid-column: 1 / -1;
}

.contact-icon {
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, #1a5f62 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(36, 151, 155, 0.3);
}

.contact-icon i {
    color: #ffffff;
    font-size: 18px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.contact-details h5 {
    color: #333333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-details p {
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

.contact-cta {
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, #1a5f62 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.contact-cta:hover::before {
    animation: shine 0.6s ease-in-out;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cta-buttons .btn {
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--ramazanNavbarColor);
    border: none;
    font-weight: 600;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    color: var(--ramazanNavbarColor);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-buttons .btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-primary:hover {
    background: #ffffff;
    color: var(--ramazanNavbarColor);
    transform: translateY(-2px);
}

.working-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.working-hours h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.working-hours h6 i {
    margin-right: 8px;
}

.working-hours p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 14px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.modern-footer::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(36, 151, 155, 0.3);
}

.brand-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
}

.footer-desc {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(36, 151, 155, 0.1);
    border: 1px solid rgba(36, 151, 155, 0.3);
    border-radius: 8px;
    color: #24979b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: #24979b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 151, 155, 0.4);
    text-decoration: none;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #24979b, #1e7a7d);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #24979b;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #24979b;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.contact-items {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-item i {
    color: #24979b;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 16px;
    min-width: 16px;
}

.contact-item span {
    color: #b8b8b8;
    line-height: 1.5;
}

.footer-btn {
    background: linear-gradient(135deg, #24979b 0%, #1e7a7d 100%);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(36, 151, 155, 0.3);
}

.footer-btn:hover {
    background: linear-gradient(135deg, #1e7a7d 0%, #24979b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 151, 155, 0.4);
}

.footer-btn i {
    margin-right: 8px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.copyright {
    color: #b8b8b8;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #24979b;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-logo {
        width: 250px;
    }
    
    .about-cta-section {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content .container-fluid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-buttons-enhanced {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-btn-main {
        min-width: auto;
        width: 100%;
    }
    
    .about-cta-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .location-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .about-badge {
        top: -15px;
        right: -15px;
        width: 80px;
        height: 80px;
    }
    
    .badge-number {
        font-size: 18px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-item {
        padding: 20px;
    }
    
    .contact-cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 45vh;
        min-height: 350px;
    }
    
    .hero-content .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .about-logo {
        width: 200px;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .about-cta-section {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .cta-title {
        font-size: 1.1rem;
    }
    
    .about-btn-main {
        padding: 15px 20px;
        min-width: auto;
    }
    
    .about-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cta-buttons .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Mobile Footer Styles */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .footer-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 15px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .contact-items {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-cta {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Mobile Offcanvas Styles - Modernized */
.offcanvas {
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    box-shadow: 4px 0 25px rgba(36, 151, 155, 0.15), 0 0 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1055;
    overflow-y: auto;
    border-right: 3px solid var(--ramazanOrangeColor);
}

.offcanvas.show {
    left: 0;
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 20px;
    border-bottom: 2px solid rgba(36, 151, 155, 0.1);
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, rgba(36, 151, 155, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.offcanvas-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="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="60" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.offcanvas-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-close {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    background: rgba(255, 128, 0, 0.2);
    border-color: var(--ramazanOrangeColor);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.offcanvas-body {
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(36, 151, 155, 0.08);
    position: relative;
    overflow: hidden;
}

.mobile-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(36, 151, 155, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.mobile-nav-item:hover::before {
    left: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.08) 0%, rgba(255, 128, 0, 0.05) 100%);
    color: var(--ramazanNavbarColor);
    text-decoration: none;
    border-left-color: var(--ramazanOrangeColor);
    transform: translateX(8px);
    box-shadow: 0 2px 10px rgba(36, 151, 155, 0.1);
}

.mobile-nav-link i {
    width: 24px;
    height: 24px;
    margin-right: 18px;
    color: var(--ramazanOrangeColor);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 128, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover i {
    background: var(--ramazanOrangeColor);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 3px 8px rgba(255, 128, 0, 0.3);
}

.submenu-arrow {
    margin-left: auto !important;
    margin-right: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(36, 151, 155, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mobile-nav-link[aria-expanded="true"] .submenu-arrow {
    transform: rotate(180deg);
    background: var(--ramazanNavbarColor);
    color: white;
}

.mobile-submenu {
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.03) 0%, rgba(255, 128, 0, 0.02) 100%);
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.mobile-submenu.show {
    max-height: 600px;
    border-left-color: var(--ramazanOrangeColor);
}

.mobile-category {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(36, 151, 155, 0.08);
    position: relative;
}

.mobile-category:last-child {
    border-bottom: none;
}

.mobile-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ramazanOrangeColor) 0%, var(--ramazanNavbarColor) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-category:hover::before {
    opacity: 1;
}

.mobile-category-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ramazanNavbarColor);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-category-title i {
    margin-right: 12px;
    font-size: 14px;
    width: 20px;
    height: 20px;
    background: rgba(36, 151, 155, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-category-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-category-items li {
    margin-bottom: 10px;
    position: relative;
}

.mobile-category-items a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mobile-category-items a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 128, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-category-items a:hover::before {
    left: 100%;
}

.mobile-category-items a:hover {
    color: var(--ramazanOrangeColor);
    text-decoration: none;
    background: rgba(255, 128, 0, 0.08);
    transform: translateX(8px);
    box-shadow: 0 2px 8px rgba(255, 128, 0, 0.15);
}

.mobile-cta {
    background: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #ff6b35 100%);
    color: white !important;
    margin: 20px 15px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.3);
}

.mobile-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mobile-cta:hover::before {
    left: 100%;
}

.mobile-cta:hover {
    background: linear-gradient(135deg, #ff6b35 0%, var(--ramazanOrangeColor) 100%);
    color: white !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.4);
}

/* Offcanvas Backdrop */
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-backdrop.show {
    opacity: 1;
    visibility: visible;
}



.mega-menu-container {
    padding: 25px;
}

.mega-menu-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--ramazanOrangeColor);
}

.mega-title {
    color: var(--ramazanNavbarColor);
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.mega-subtitle {
    color: #666;
    font-size: 12px;
    margin: 0;
    font-weight: 400;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 25px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-category {
    height: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, rgba(36, 151, 155, 0.8) 100%);
    border-radius: 12px;
    color: white;
}

.category-icon {
    font-size: 18px;
    color: var(--ramazanOrangeColor);
}

.category-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    background: #f8f9fa;
}

.mega-item:hover {
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.08) 0%, rgba(255, 120, 0, 0.08) 100%);
    color: var(--ramazanNavbarColor);
    text-decoration: none;
    transform: translateY(-2px);
    border-color: var(--ramazanOrangeColor);
    box-shadow: 0 8px 25px rgba(36, 151, 155, 0.15);
}

.mega-item i {
    color: var(--ramazanOrangeColor);
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.3;
}

.item-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

.mega-item:hover .item-title {
    color: var(--ramazanNavbarColor);
}

.mega-item:hover .item-desc {
    color: #555;
}

.featured-item {
    background: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #ff9500 100%);
    color: white !important;
    border-color: var(--ramazanOrangeColor);
}

.featured-item .item-title,
.featured-item .item-desc {
    color: white !important;
}

.featured-item:hover {
    background: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #ff9500 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 120, 0, 0.3);
}

.mega-menu-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    margin: 0 -30px -30px -30px;
    border-top: 1px solid #dee2e6;
}

.mega-cta {
    text-align: center;
}

.mega-cta h5 {
    color: var(--ramazanNavbarColor);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mega-cta p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.mega-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #ff9500 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.mega-cta-button:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.4);
    animation: pulseGlow 2s infinite;
}

.mega-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

/* Legacy Dropdown Styles (for other dropdowns) */
.modern-dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    margin-top: 10px;
    min-width: 500px;
    border: 1px solid var(--border-light);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-header {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--ramazanOrangeColor);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.modern-dropdown-item:hover {
    background: linear-gradient(135deg, rgba(36, 151, 155, 0.05) 0%, rgba(255, 120, 0, 0.05) 100%);
    color: var(--ramazanNavbarColor);
    text-decoration: none;
    transform: translateX(5px);
    border-left: 3px solid var(--ramazanOrangeColor);
}

.modern-dropdown-item i {
    color: var(--ramazanOrangeColor);
    width: 16px;
    font-size: 14px;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 12px;
    height: 12px;
    line-height: 1;
}

.mega-dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}

.mega-dropdown .dropdown-menu {
    font-size: inherit;
}

.mega-dropdown .dropdown-menu * {
    /* Font size inheritance removed to allow custom sizing */
}

/* Header Spacer */
.header-spacer {
    height: 120px;
}

/* Scroll Effects */
@media (min-width: 992px) {
    .modern-navbar.scrolled .header-spacer {
        height: 100px;
    }
}

/* Legacy Header Compatibility */
#ramazanHeader {
    display: none;
}

.ramazanLogo {
    width: 250px;
}

/* Content - Slider */

.ramazanSliderImage {
    border-radius: 5px;
	height: 450px;
}


/* Content - Cards */

#ramazanCards h3 {
    color: var(--ramazanOrangeColor);
}

.ramazanHR {
    border-bottom: 3px solid var(--ramazanOrangeColor);
}

#ramazanCards .ramazanCardsBG {
    border-radius: 5px;
    padding: 0px 0px 15px 0px;
    background: #fff;
}

#ramazanCards .ramazanCardStyle {
    border-radius: 10px;
}

#ramazanCards .ramazanCardStyle .card-img-top {
    width: 100%;
    height: 186px;
    border-radius: 5px 5px 0px 0px;
} 

#ramazanCards .ramazanCardStyle .card-body {
    padding:10px 8px 10px 8px;
}

#ramazanCards .ramazanCardStyle .ramazanCardText a {
    font-size: 15px;
    color: rgb(32, 32, 32);
    font-weight: 600;
}

/* Footer */

#ramazanFooter #ramazanFooterContent {
    color: #fff;
    font-weight: 400;
    background: var(--ramazanNavbarColor);
    border-radius: 5px;
}

#ramazanFooter #ramazanFooterContent a {
    color: #fff;
    font-weight: 600;
}

/* Details Page */

.ramazanDetailsBG {
    background: #fff;
}

.ramazanDetailsTitle {
    background: #fff;
    width: 100%;
}

#ramazanDetails h3 {
    color: var(--ramazanOrangeColor);
}

.ramazanDetailsTitle a {
    
}

.ramazanRound {
	border-radius: 5px;
}

.ramazanDetailsImage {
    width: 100%;
    height: 350px;
}

.ramazanTechnicImage {
    width: 100%;
}

/* Mobile Top Bar */
.mobile-top-bar {
    background: linear-gradient(135deg, var(--ramazanNavbarColor) 0%, #1a5f62 100%);
    color: white;
    padding: 8px 0;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    display: none;
}

.mobile-top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: mobileTopBarShine 3s infinite;
}

@keyframes mobileTopBarShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.mobile-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.mobile-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.mobile-info-item i {
    color: var(--ramazanOrangeColor);
    font-size: 11px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 128, 0, 0.2);
    border-radius: 50%;
}

/* Mobile Call Button */
.mobile-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    background: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 128, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: mobilePulse 2s infinite;
}

@keyframes mobilePulse {
    0% {
        box-shadow: 0 4px 20px rgba(255, 128, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 128, 0, 0.6), 0 0 0 10px rgba(255, 128, 0, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 128, 0, 0.4);
    }
}

.mobile-call-button:hover {
    background: linear-gradient(135deg, #ff6b35 0%, var(--ramazanOrangeColor) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 128, 0, 0.5);
    text-decoration: none;
    color: white;
}

.mobile-call-button i {
    font-size: 16px;
    animation: phoneRing 1.5s infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
}

/* Mobile Responsive Styles - Enhanced */
@media (max-width: 991px) {
    .top-info-bar {
        display: none;
    }
    
    .mobile-top-bar {
        display: block;
    }
    
    .mobile-call-button {
        display: flex;
    }
    
    .header-spacer {
        height: 85px;
    }
    
    .modern-navbar {
        padding: 12px 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 2px 25px rgba(36, 151, 155, 0.12);
    }
    
    .modern-navbar .container-fluid {
        padding: 0 20px;
    }
    
    .brand-logo {
        height: 38px;
        transition: all 0.3s ease;
    }
    
    .modern-nav {
        padding-top: 20px;
        gap: 0;
    }
    
    .modern-nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(36, 151, 155, 0.08);
    }
    
    .nav-underline {
        display: none;
    }
    
    .cta-button {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--ramazanOrangeColor) 0%, #ff6b35 100%);
        box-shadow: 0 4px 15px rgba(255, 128, 0, 0.25);
    }
    
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 128, 0, 0.35);
    }
    
    /* Mega Menu Mobile Styles */
    .mega-dropdown .dropdown-menu {
        position: static !important;
        left: auto;
        right: auto;
        transform: none !important;
    }
    
    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100vw;
        min-width: auto;
        max-width: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.98);
        margin: 0;
        border-radius: 0;
        left: auto;
    }
    
    .mega-menu-container {
        padding: 15px 12px;
    }
    
    .mega-menu-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .mega-title {
        font-size: 18px;
    }
}

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    .offcanvas {
        width: 100vw;
        left: -100vw;
    }
    
    .modern-navbar .container-fluid {
        padding: 0 15px;
    }
    
    .brand-logo {
        height: 32px;
    }
    
    .modern-toggler {
        padding: 10px;
    }
    
    .toggler-line {
        width: 24px;
    }
    
    .offcanvas-header {
        padding: 20px 15px;
    }
    
    .mobile-nav-link {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .mobile-category {
        padding: 18px 20px;
    }
    
    .mobile-cta {
        margin: 15px 10px;
        font-size: 15px;
    }
}

/* Very Small Devices (320px and down) */
@media (max-width: 320px) {
    .modern-navbar .container-fluid {
        padding: 0 10px;
    }
    
    .brand-logo {
        height: 28px;
    }
    
    .modern-toggler {
        padding: 8px;
    }
    
    .mobile-nav-link {
        padding: 14px 15px;
        font-size: 14px;
    }
    
    .mobile-category {
        padding: 15px;
    }
    
    .mobile-category-title {
        font-size: 14px;
    }
    
    .mobile-category-items a {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .mega-subtitle {
        font-size: 11px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .category-header {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .category-title {
        font-size: 13px;
    }
    
    .mega-item {
        padding: 12px;
    }
    
    .item-title {
        font-size: 13px;
    }
    
    .item-desc {
        font-size: 11px;
    }
    
    .mega-menu-footer {
        padding: 20px 15px;
        margin: 0 -15px -20px -15px;
    }
    
    .mega-cta h5 {
        font-size: 15px;
    }
    
    .mega-cta p {
        font-size: 12px;
    }
    
    .mega-cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .modern-dropdown-menu {
        min-width: 100%;
        margin-top: 0;
        border-radius: 0;
        padding: 15px;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-light);
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1200px) and (min-width: 768px) {
    .mega-menu {
        width: 85vw;
        max-width: 800px;
        min-width: 600px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mega-column:last-child {
        grid-column: 1 / -1;
    }
    
    .mega-column:last-child .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Section Tablet Optimizations */
    .hero-section {
        height: 55vh;
        min-height: 450px;
    }
    
    .hero-content .container-fluid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .floating-orb {
        animation-duration: 20s; /* Slower animations for better performance */
    }
}

@media (max-width: 800px) {
	.container-fluid {
		width: 100%;
	}
	
	.ramazanSliderImage {
		height: 300px;
	}
	
	.brand-logo {
    	height: 30px;
	}
	
	.contact-info .info-item {
	    margin-right: 15px;
	    font-size: 12px;
	}
	
	.social-links {
	    gap: 10px;
	}
	
	.social-link {
	    width: 28px;
	    height: 28px;
	    font-size: 12px;
	}
	
	/* Hero Section Mobile Optimizations */
	.hero-section {
		height: 50vh;
		min-height: 400px;
	}
	
	.hero-content .container-fluid {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	
	.hero-section::before {
		animation: none; /* Disable parallax on mobile for performance */
	}
	
	.floating-orb {
		display: none; /* Hide floating orbs on mobile */
	}
	
	.hero-content h1 {
		font-size: 2rem;
		animation-duration: 1s; /* Faster animations on mobile */
	}
	
	.hero-content p {
		font-size: 1rem;
		animation-duration: 1s;
	}
	
	.hero-buttons {
		flex-direction: column;
		gap: 15px;
		animation-duration: 1s;
	}
	
	.hero-buttons .btn {
		width: 100%;
		max-width: 280px;
	}
	

}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 120, 0, 0.5);
    }
}

@media (min-width: 1440px) {
	.container-fluid {
        width: 80%;
	}
	
	.modern-dropdown-menu {
	    min-width: 600px;
	}
}

/* Hero slide background images moved from inline styles */
.hero-slide[data-bg] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide[data-bg="/wp-content/uploads/assets/slayt/slayt_1.jpg"] {
    background-image: url('/wp-content/uploads/assets/slayt/slayt_1.jpg');
}

.hero-slide[data-bg="/wp-content/uploads/assets/slayt/slayt_2.jpg"] {
    background-image: url('/wp-content/uploads/assets/slayt/slayt_2.jpg');
}

.hero-slide[data-bg="/wp-content/uploads/assets/slayt/slayt_3.jpg"] {
    background-image: url('/wp-content/uploads/assets/slayt/slayt_3.jpg');
}

/* Footer logo style moved from inline */
.footer-logo {
    width: 250px;
}