/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d6efd;
    --secondary-color: #0dcaf0;
    --accent-color: #20c997;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(13, 110, 253, 0.12);
    --shadow-hover: 0 15px 40px rgba(13, 110, 253, 0.2);
    --gradient: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 50%, #20c997 100%);
    --gradient-hover: linear-gradient(135deg, #0dcaf0 0%, #20c997 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 202, 240, 0.05) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #e8f2ff 30%, #d6ebff 60%, #c4e4ff 100%);
    background-attachment: fixed;
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.98) 50%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(13, 110, 253, 0.15), 0 0 0 1px rgba(13, 110, 253, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, rgba(13, 110, 253, 0.4) 0%, rgba(13, 202, 240, 0.4) 50%, rgba(32, 201, 151, 0.4) 100%) 1;
    min-height: 105px;
}

@keyframes navbarGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 252, 255, 0.99) 50%, rgba(255, 255, 255, 0.99) 100%);
    box-shadow: 0 6px 40px rgba(13, 110, 253, 0.25), 0 0 0 1px rgba(13, 110, 253, 0.15);
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, rgba(13, 110, 253, 0.5) 0%, rgba(13, 202, 240, 0.5) 50%, rgba(32, 201, 151, 0.5) 100%) 1;
    min-height: 80px;
}

.navbar.scrolled .nav-wrapper {
    padding: 0.5rem 0;
}

.navbar.scrolled .logo-img {
    height: 80px;
    max-width: 240px;
}

@media (max-width: 968px) {
    .navbar.scrolled .logo-img {
        height: 60px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .navbar.scrolled .logo-img {
        height: 55px;
        max-width: 160px;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    gap: 40px;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 90px;
}

@media (max-width: 968px) {
    .nav-wrapper {
        gap: 15px;
        padding: 0.6rem 0;
        justify-content: space-between;
        min-height: 80px;
        display: flex;
        align-items: center;
        position: relative;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    order: 1;
}

@media (max-width: 968px) {
    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.logo:hover {
    opacity: 0.9;
}

.logo i {
    font-size: 2rem;
}

.logo-img {
    height: 105px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    max-width: 300px;
}

@media (max-width: 968px) {
    .logo-img {
        height: 80px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
        max-width: 180px;
    }
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.logo span {
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
    order: 2;
}

@media (max-width: 968px) {
    .nav-menu {
        order: 4;
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #f5f5f5;
        width: 100%;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 0;
        gap: 0;
        transform: none;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        justify-content: flex-start;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 18px 30px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        text-align: left !important;
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e50;
        box-sizing: border-box;
        background: transparent;
        transition: background 0.2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 0, 0, 0.03);
        color: #2c3e50;
    }

    .nav-link::after {
        display: none;
    }

    .nav-item.dropdown .nav-link {
        padding: 18px 30px;
        justify-content: space-between;
    }

    .nav-item:not(.dropdown) .nav-link {
        justify-content: flex-start;
    }

    .nav-item.dropdown .fa-chevron-down {
        font-size: 0.85rem;
        color: #2c3e50;
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.dropdown-open .fa-chevron-down {
        transform: rotate(180deg);
    }
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.2rem;
    }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        order: 4;
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(13, 110, 253, 0.1);
        padding: 2rem 0;
        gap: 0;
        transform: none;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        justify-content: flex-start;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.85rem;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item.dropdown .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .fa-chevron-down,
.nav-item.dropdown:focus-within .fa-chevron-down,
.nav-item.dropdown.dropdown-open .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translate(-50%, 10px);
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 15px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

/* Görünmez köprü - dropdown ile nav-item arasındaki boşluğu kapatır */
.nav-item.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu,
.nav-item.dropdown.dropdown-open .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    font-weight: 500;
}

.dropdown-link::after {
    display: none;
}

.dropdown-link:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Navbar Social Media Icons */
.navbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    order: 3;
    margin-left: auto;
}

@media (max-width: 968px) {
    .navbar-social {
        display: flex !important;
        order: 1;
        gap: 8px;
        margin-left: 0;
        margin-right: auto;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    /* Mobil görünümde sadece WhatsApp göster */
    .nav-social-link.instagram,
    .nav-social-link.facebook {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* WhatsApp boyutunu küçült */
    .nav-social-link.whatsapp {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.75rem !important;
    }
}

.nav-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .nav-social-link {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

.nav-social-link.whatsapp {
    background: #25D366;
}

.nav-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


.nav-social-link.facebook {
    background: #1877F2;
}

.nav-social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    order: 3;
    position: relative;
    width: 28px;
    height: 20px;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span {
    background: var(--primary-color);
    top: 50% !important;
    bottom: auto !important;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
}

/* Navbar container padding */
.navbar .container {
    padding: 0 30px;
}


.hero {
    height: 100vh;
    min-height: 600px;
    /* çok küçük ekranlarda bozulmaması için */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: 105px;
    transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled ~ * .hero,
body:has(.navbar.scrolled) .hero {
    margin-top: 80px;
}

@media (min-width: 969px) {
    .navbar.scrolled ~ * .hero,
    body:has(.navbar.scrolled) .hero {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        max-height: calc(100vh - 80px);
    }
}

@media (max-width: 968px) {
    .hero {
        margin-top: 80px;
        height: auto;
        min-height: 500px;
        padding: 0;
        overflow: visible;
    }
    
    .hero-slider {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 500px;
    }
    
    .slide {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 500px;
        opacity: 1;
        transform: scale(1);
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        background-color: #f8f9fa; /* Resim etrafındaki boşlukları doldurmak için */
    }
    
    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
        display: block;
    }
    
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
        transition: opacity 1.2s ease;
    }
    
    .slide.active .slide-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 100%);
    }
    
    .slide-content {
        position: absolute;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        bottom: 20px;
        left: 12px;
        right: 0;
        width: 100%;
        text-align: center;
        color: var(--white);
        padding: 0;
        transform: none;
    }
    
    .slide:nth-child(1) {
        background: url('heroexmp2.jpg') center center;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center center;
        background-color: #f8f9fa; /* Resim etrafındaki boşlukları doldurmak için */
        height: auto;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s ease 0.5s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
        text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4), 0 0 30px rgba(13, 110, 253, 0.3);
        font-weight: 700;
        letter-spacing: -0.5px;
        line-height: 1.3;
    }
    
    .slide.active .slide-content h1 {
        opacity: 1;
        transform: translateY(0);
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1s ease 0.7s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
        text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
        line-height: 1.6;
        max-width: 800px;
        padding: 0 20px;
    }
    
    .slide.active .slide-content p {
        opacity: 1;
        transform: translateY(0);
    }
    
    .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 1s ease 0.9s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    
    .slide.active .btn-primary {
        opacity: 1;
        transform: translateY(0);
    }
    
    .btn-whatsapp {
        padding: 14px 32px;
        font-size: 1rem;
        opacity: 1;
        transform: none;
        transition: all 0.3s ease;
        margin: 0 auto;
        gap: 8px;
    }
    
    .btn-whatsapp i {
        font-size: 1.3rem;
    }
    
    .slider-controls {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        z-index: 10;
        pointer-events: none;
    }
    
    .slider-btn {
        pointer-events: auto;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .slider-dots {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
        background: rgba(0, 0, 0, 0.3);
        padding: 10px 15px;
        border-radius: 25px;
        backdrop-filter: blur(10px);
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-slider {
        min-height: 450px;
    }
    
    .slide {
        min-height: 450px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-primary {
        padding: 11px 25px;
        font-size: 0.85rem;
    }
    
    .btn-whatsapp {
        padding: 13px 30px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .btn-whatsapp i {
        font-size: 1.2rem;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 25px;
        padding: 8px 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }
    
    .hero-slider {
        min-height: 400px;
    }
    
    .slide {
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 15px 50px 15px;
        bottom: 20px;
        transform: none;
    }
    
    .slide-content h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .btn-primary {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
    
    .btn-whatsapp {
        padding: 12px 28px;
        font-size: 0.95rem;
        gap: 6px;
        margin-top: 0;
    }
    
    .btn-whatsapp i {
        font-size: 1.15rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .slider-dots {
        bottom: 20px;
        padding: 6px 10px;
        gap: 8px;
    }
    
    .dot {
        width: 9px;
        height: 9px;
    }
}

.hero img,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: scale(1);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (min-width: 969px) {
    .slide {
        background-size: contain;
        background-position: center center;
    }
}

.slide:nth-child(1) {
    background: url('heroexmp1.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
}

@media (min-width: 969px) {
    .slide:nth-child(1) {
        background-size: contain;
        background-position: center center;
        background-color: #f8f9fa;
    }
}


.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
    transition: opacity 1.2s ease;
}

.slide.active .slide-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-content {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 0;
    left: 3px;
    right: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    padding: 0;
}

@media (min-width: 969px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 105px);
        max-height: none;
        background-color: #f8f9fa;
        padding: 0;
    }
    
    .hero-slider {
        background-color: #f8f9fa;
        min-height: calc(100vh - 105px);
        height: auto;
    }
    
    .slide {
        min-height: calc(100vh - 105px);
        height: auto;
    }
    
    .slide-content {
        bottom: 20px;
        left: 3px;
        right: 0;
        padding: 0;
        width: 100%;
        transform: none;
    }
    
    .btn-whatsapp {
        padding: 18px 50px;
        font-size: 1.2rem;
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    
    .btn-whatsapp i {
        font-size: 1.4rem;
    }
    
    .slide:nth-child(1) {
        background-size: contain;
        background-position: center center;
        background-color: #f8f9fa;
    }
}

.slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.5s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4), 0 0 30px rgba(13, 110, 253, 0.3);
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.7s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    max-width: 800px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        padding: 0 10px;
        line-height: 1.5;
    }
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    display: none;
}


.slider-btn {
    pointer-events: auto;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.slider-btn:active {
    transform: scale(1.05) translateY(0);
}

.slider-dots {
    display: none;
}

@media (max-width: 968px) {
    .slider-dots {
        bottom: 30px;
        padding: 10px 15px;
        gap: 10px;
    }
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    margin: 0;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--white);
    transition: width 0.4s ease, height 0.4s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 30px rgba(0, 102, 204, 0.4);
}

.dot.active::before {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(13, 110, 253, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 0.9s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s ease;
}

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

.slide.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(13, 202, 240, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.btn-whatsapp::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.5s ease;
}

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


.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

/* Section Styles */
section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 35px 0;
    }
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Products Section */
.featured-products {
    background: linear-gradient(135deg, #ffffff 0%, #e8f2ff 30%, #d6ebff 60%, #ffffff 100%);
    position: relative;
    background-size: 200% 200%;
    animation: sectionGradient 12s ease infinite;
}

@keyframes sectionGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05) 0%, rgba(13, 202, 240, 0.05) 50%, rgba(32, 201, 151, 0.05) 100%);
    background-size: 200% 200%;
    animation: overlayGradient 8s ease infinite;
    pointer-events: none;
}

@keyframes overlayGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
        display: grid !important;
    }
}

@media (max-width: 480px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        display: grid !important;
    }
}

.featured-card {
    border: 2px solid rgba(13, 110, 253, 0.08);
    position: relative;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.featured-card:hover::after {
    transform: scaleX(1);
}

.products {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0f0ff 30%, #d0e8ff 60%, #f0f4ff 100%);
    position: relative;
    background-size: 200% 200%;
    animation: sectionGradient 14s ease infinite;
    min-height: auto;
    overflow: visible;
    padding-bottom: 50px;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.04) 0%, rgba(32, 201, 151, 0.04) 50%, rgba(13, 110, 253, 0.04) 100%);
    background-size: 200% 200%;
    animation: overlayGradient 10s ease infinite;
    pointer-events: none;
    z-index: 0;
}

/* Products Filter and Sort */
.products-filter-sort {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.sort-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sort-buttons label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
}

.sort-select {
    padding: 12px 20px;
    border: 2px solid rgba(13, 110, 253, 0.2);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15);
}

.sort-select:hover {
    border-color: var(--primary-color);
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid rgba(13, 110, 253, 0.2);
    background: var(--white);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results p {
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .products-filter-sort {
        margin-bottom: 30px;
        gap: 15px;
    }
    
    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .sort-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .sort-select {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .sort-select {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: auto;
    overflow: visible;
}

.product-category {
    background: var(--white);
    border-radius: 25px;
    padding: 30px;
    box-shadow: var(--shadow);
    min-height: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .product-categories {
        gap: 30px;
    }
    
    .product-category {
        padding: 25px 20px;
        border-radius: 20px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: none !important;
        height: auto !important;
    }
    
    .products-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: none !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .product-categories {
        gap: 25px;
    }
    
    .product-category {
        padding: 20px 15px;
        border-radius: 15px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: none !important;
        height: auto !important;
    }
    
    .products-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-height: none !important;
        height: auto !important;
    }
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.category-grid {
    margin-top: 15px;
    min-height: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    /* reduce min width so more items fit on wider screens */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    min-height: auto;
    overflow: visible;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
}

/* Make cards equal-height within grid and layout content vertically */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    /* slightly reduced image height to make cards feel smaller */
    aspect-ratio: 3 / 2;
    /* match JPG background: use white so images blend cleanly */
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Card thumbnails: height-based scaling so image fills the area without distortion */
.product-image img {
    width: 100%;
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
    padding: 6px;
    /* reduce padding so image appears larger */
    display: block;
}

/* Card inline slider styles (small controls) */
.card-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-slide {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.card-slide.active {
    display: flex;
}

.card-slide img {
    max-width: 92%;
    max-height: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 6px 8px;
    display: block;
}

.card-slider-prev,
.card-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.card-slider-prev {
    left: 8px;
}

.card-slider-next {
    right: 8px;
}

.card-slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.card-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.8);
}

.card-slide-dot.active {
    background: var(--primary-color);
}

/* Ensure modal images scale nicely inside the modal container */
.modal-product-image img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-image::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);
    animation: shine 3s infinite;
}

.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

@media (max-width: 480px) {
    .product-info {
        padding: 15px;
    }
    
    .product-info p {
        display: none;
    }
}

@media (max-width: 768px) {
    .product-info p {
        display: none;
    }
}

.product-info h3 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
    flex-wrap: wrap;
}

.product-category-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-category-label:hover {
    background: rgba(13, 110, 253, 0.15);
    transform: scale(1.05);
}

.product-featured-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent-color);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    transform: translateX(3px);
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: var(--gradient-hover);
    transform: scale(1.02);
}

/* Campaigns Section */
.campaigns {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f2ff 25%, #d6ebff 50%, #c4e4ff 75%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    background-size: 200% 200%;
    animation: sectionGradient 16s ease infinite;
}

.campaigns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.04) 0%, rgba(32, 201, 151, 0.04) 50%, rgba(13, 110, 253, 0.04) 100%);
    background-size: 200% 200%;
    animation: overlayGradient 12s ease infinite;
    pointer-events: none;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.campaign-card {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    text-align: left;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.campaign-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-color);
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.campaign-card:hover::before {
    transform: scaleX(1);
}

.campaign-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    z-index: 2;
}

.campaign-card-header {
    padding: 35px 30px 25px;
    background: var(--gradient-subtle);
    border-bottom: 2px solid rgba(13, 110, 253, 0.1);
}

@media (max-width: 768px) {
    .campaign-card-header {
        padding: 25px 20px 20px;
    }
}

@media (max-width: 480px) {
    .campaign-card-header {
        padding: 20px 15px 15px;
    }
}

.campaign-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
}

.campaign-card:hover .campaign-card-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.35);
}

.campaign-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.campaign-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.4;
    font-weight: 700;
}

.campaign-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.campaign-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.campaign-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: block;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 168, 255, 0.08) 100%);
    border-radius: 15px;
    border: 2px dashed rgba(0, 102, 204, 0.2);
}

.campaign-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex: 1;
}

.campaign-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.campaign-list li:last-child {
    border-bottom: none;
}

.campaign-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}

.campaign-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding: 15px 25px;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.campaign-btn i {
    font-size: 1.2rem;
}

.campaign-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}


.campaign-date {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    font-weight: 600;
}

/* Technical Service Section */
.technical-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0f0ff 30%, #d0e8ff 60%, #f5f8ff 100%);
    position: relative;
    background-size: 200% 200%;
    animation: sectionGradient 15s ease infinite;
}

.technical-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.04) 0%, rgba(13, 202, 240, 0.04) 50%, rgba(32, 201, 151, 0.04) 100%);
    background-size: 200% 200%;
    animation: overlayGradient 11s ease infinite;
    pointer-events: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 25px 15px;
    }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 25px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #e8f2ff 30%, #d6ebff 60%, #fafbff 100%);
    position: relative;
    background-size: 200% 200%;
    animation: sectionGradient 14s ease infinite;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.04) 0%, rgba(13, 202, 240, 0.04) 50%, rgba(32, 201, 151, 0.04) 100%);
    background-size: 200% 200%;
    animation: overlayGradient 10s ease infinite;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    padding: 10px 0 36px;
}

.vision-mission {
    display: grid;
    gap: 28px;
    margin-bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.vision-mission .vm-card {
    grid-column: 1 / -1;
}

.certificates-section {
    margin-top: 40px;
}

.certificates-section h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.certificates-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.certificates-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(15, 30, 60, 0.18);
    background: #fff;
}

.certificate-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.85) 0%, rgba(13, 202, 240, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--white);
    text-align: center;
    padding: 20px;
}

.certificate-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.35);
}

.certificate-item:hover .certificate-img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.certificate-item:hover .certificate-overlay {
    opacity: 1;
}

.certificate-item:hover .certificate-overlay i {
    transform: scale(1);
}

.certificate-item:hover .certificate-overlay span {
    transform: translateY(0);
}

/* Certificate Modal Styles */
.certificate-modal-content {
    max-width: 90%;
    max-height: 95vh;
    width: auto;
    padding: 20px;
}

.certificate-modal-body {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.certificate-modal-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .certificate-modal-content {
        max-width: 95%;
        padding: 15px;
    }
    
    .certificate-modal-image {
        max-height: 85vh;
    }
}

@media (max-width: 480px) {
    .certificate-modal-content {
        max-width: 100%;
        padding: 10px;
        margin: 0;
        border-radius: 0;
    }
    
    .certificate-modal-image {
        max-height: 80vh;
    }
}

.vm-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.vm-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vm-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.company-info {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}

.company-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-map {
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(15, 30, 60, 0.08);
    margin-top: 8px;
}

@media (max-width: 992px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certificates-gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }
    
    .certificate-overlay i {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .certificate-overlay span {
        font-size: 1rem;
    }

    .about-map {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .certificate-overlay i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .certificate-overlay span {
        font-size: 0.9rem;
    }
    
    .certificate-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .certificate-overlay {
        padding: 15px;
    }
    
    .certificate-overlay i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .certificate-overlay span {
        font-size: 0.85rem;
    }
}

.about-map iframe {
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e0f0ff 30%, #d0e8ff 60%, #f0f4ff 100%);
    position: relative;
    background-size: 200% 200%;
    animation: sectionGradient 13s ease infinite;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 202, 240, 0.04) 0%, rgba(32, 201, 151, 0.04) 50%, rgba(13, 110, 253, 0.04) 100%);
    background-size: 200% 200%;
    animation: overlayGradient 9s ease infinite;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3,
.social-buttons h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info p,
.social-buttons p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.social-grid {
    display: grid;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-btn:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.social-btn i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-btn.whatsapp i {
    background: #25D366;
}

.social-btn.instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


.social-btn.facebook i {
    background: #1877F2;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-social a.whatsapp {
    background: #25D366;
}

.footer-social a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


.footer-social a.facebook {
    background: #1877F2;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-credits {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.footer-credits p {
    margin: 0;
    font-size: 0.75rem;
}

.footer-credits .dyc-tech {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    margin: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-color);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

@media (max-width: 768px) {
    .modal-body {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 25px 15px;
    }
}

.modal-product-image {
    width: 100%;
    height: 420px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 30px;
}

/* Modal slider styles */
.modal-slider {
    position: relative;
    width: 100%;
    height: 420px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-slide.active {
    display: flex;
}

.modal-slide img {
    max-width: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* MODAL SLIDER ARROW FIX — Kart slider CSS'ini override eder */
.modal-slider-prev,
.modal-slider-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 45px !important;
    height: 45px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    color: #333 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    z-index: 100 !important;
    cursor: pointer !important;
    border: none !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.modal-slider-prev {
    left: 15px !important;
}

.modal-slider-next {
    right: 15px !important;
}

.modal-slider-prev:hover,
.modal-slider-next:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

.modal-slider-prev:active,
.modal-slider-next:active {
    transform: translateY(-50%) scale(0.95) !important;
}


.modal-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.modal-slide-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.modal-slide-dot.active {
    background: var(--primary-color);
}

.modal-product-title {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-product-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.modal-product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.modal-product-features {
    margin-bottom: 30px;
}

.modal-product-features h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-product-features ul {
    list-style: none;
}

.modal-product-features ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.modal-product-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.modal-product-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        height: auto;
        min-height: 80px;
    }

    .nav-wrapper {
        padding: 0.6rem 0;
    }

    .logo-img {
        height: 95px;
        max-width: 260px;
    }

    .logo span {
        font-size: 1.3rem;
    }

    .logo {
        gap: 12px;
    }

    .nav-wrapper {
        grid-template-columns: 1fr auto;
        gap: 15px;
    }


    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 10px 27px rgba(13, 110, 253, 0.1);
        padding: 2rem 0;
        gap: 0;
        transform: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

@media (max-width: 480px) {
    .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 30px !important;
        width: 100%;
        text-align: left !important;
        box-sizing: border-box;
        font-weight: 700;
        color: #2c3e50;
    }

    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        padding: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 0 !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-left: none !important;
        display: block !important;
        visibility: hidden;
        text-align: left !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .nav-item.dropdown.dropdown-open .dropdown-menu {
        max-height: 500px !important;
        padding: 12px 0 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .dropdown-link {
        padding: 15px 40px !important;
        display: block !important;
        color: #555 !important;
        font-weight: 500;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        margin: 0 !important;
        text-decoration: none !important;
        box-sizing: border-box;
        font-size: 0.95rem !important;
        background: transparent;
    }

    .dropdown-link:hover {
        background: rgba(0, 0, 0, 0.03) !important;
        color: #2c3e50 !important;
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .dropdown-link:hover {
        background: rgba(13, 110, 253, 0.08);
        color: var(--primary-color);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 8px;
        margin-right: -8px;
    }


    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .product-category {
        padding: 25px;
    }

    .about-map {
        height: 400px;
    }

    .products-grid,
    .service-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .campaigns-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .campaign-card-header {
        padding: 30px 25px 20px;
    }

    .campaign-card-body {
        padding: 25px;
    }

    .campaign-price {
        font-size: 1.8rem;
    }

    .campaign-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }

    .logo-img {
        height: 75px;
        max-width: 200px;
    }

    .logo span {
        font-size: 1.15rem;
    }

    .logo {
        gap: 10px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .campaigns-grid,
    .service-grid {
        grid-template-columns: 1fr !important;
    }

    .slider-controls {
        padding: 0 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .modal-content {
        width: 95%;
    }

    .modal-body {
        padding: 25px;
    }

    .modal-product-price {
        font-size: 2rem;
    }
}
