/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Calibri', 'carlitoregular', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', 'carlitoregular', sans-serif;
    font-weight: 100;
    font-size: 18px;
    line-height: 27px;
    color: rgb(255, 255, 255);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 122px;
    background: #000000;
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.header.navbar-hidden {
    height: 61px;
}

.header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: #ffffff;
    transform: translateY(-50%);
    transition: opacity 0.3s ease;
}

.header.navbar-hidden::after {
    opacity: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 61px;
    padding: 0 2rem;
}

.header-top-left {
    display: flex;
    gap: 2rem;
}

.header-top-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.header-top-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}

.follow-logo {
    width: 160px;
    height: 48px;
    object-fit: contain;
    margin-right: 1rem;
}

.follow-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.1rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.social-link.facebook:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(212deg) brightness(104%) contrast(97%);
}

.social-link.instagram:hover .social-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(320deg) brightness(104%) contrast(97%);
}

/* Instagram ikonu için özel stil */
.social-link.instagram .social-icon {
    filter: brightness(0) invert(1);
}

.social-icon-fa {
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
}

.social-link.instagram:hover .social-icon-fa {
    color: #E4405F;
    transform: scale(1.1);
}

.social-link.tiktok:hover .social-icon {
    filter: brightness(0) saturate(0%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.top-link:hover {
    color: #cccccc;
}

.navbar {
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar.hidden {
    height: 0;
    opacity: 0;
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 720px;
    height: 90px;
    position: relative;
    margin-left: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.follow-logo-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.follow-logo-link:hover {
    opacity: 0.8;
}

.nav-logo {
    width: 120px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 0;
    display: block;
}

.dealer-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
    line-height: 1;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-family: 'Calibri', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #ffffff;
    background: #2c5aa0;
    transform: translateY(-2px);
}

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

.nav-link:hover::after {
    width: 80%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: fixed;
    top: 121.83px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    width: 100vw;
    transform: translateY(-20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    border-top: 3px solid #2c5aa0;
    backdrop-filter: blur(10px);
}

.dropdown-left {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    max-width: 600px;
}

.dropdown-right {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.dropdown-image {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Dropdown menüyü sadece kategori linkine hover'da aç */
.dropdown .nav-link:hover + .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown menü açıkken hover'da açık kalsın */
.dropdown .dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown container'a hover'da da açık kalsın */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    padding: 0 0.5rem;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
}

.dropdown-section:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.dropdown-section h4 {
    color: #2c5aa0;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #2c5aa0;
    font-family: 'Calibri', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.dropdown-section h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 20px;
    height: 1px;
    background: #ff6b6b;
    border-radius: 1px;
}

.dropdown-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section ul li {
    margin-bottom: 0.5rem;
}

.dropdown-section ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Calibri', sans-serif;
    padding: 0.4rem 0;
    display: block;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-bottom: 0.2rem;
    position: relative;
    font-weight: 500;
    border-left: 2px solid transparent;
    padding-left: 0.6rem;
}

.dropdown-section ul li a:hover {
    color: #ffffff;
    background: transparent;
    transform: translateX(3px);
    box-shadow: none;
    border-left-color: #2c5aa0;
    font-weight: 600;
}

.dropdown-section ul li a::before {
    content: '•';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #2c5aa0;
    font-weight: bold;
}

.dropdown-section ul li a:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

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

.mobile-nav-item {
    margin-bottom: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-nav-link:hover {
    background: rgba(44, 90, 160, 0.2);
    color: #2c5aa0;
    transform: translateX(5px);
}

.dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-mobile.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.dropdown-mobile.active .mobile-dropdown {
    max-height: 300px;
}

.mobile-dropdown li {
    margin: 0;
}

.mobile-dropdown a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-dropdown a:hover {
    color: white;
    background: rgba(44, 90, 160, 0.1);
    border-left-color: #2c5aa0;
    transform: translateX(5px);
}

.mobile-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.mobile-social h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.mobile-social-link:hover {
    background: #2c5aa0;
    transform: scale(1.1);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: calc(100vh - 121.83px);
    overflow: hidden;
    background: #000;
    margin-top: 121.83px;
    padding-top: 0;
    top: 0;
    left: 0;
    width: 100%;
}

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

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-content {
    position: absolute;
    z-index: 2;
    text-align: left;
    color: white;
    max-width: 45%;
    padding: 0;
    background: none;
    border-radius: 0;
    backdrop-filter: none;
    margin-left: 5%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.slide-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    color: white;
}

.slide-badge {
    font-size: 0.9rem;
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 400;
    color: white;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2c5aa0;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2c5aa0;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.5);
    border: none;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.6);
}

.cta-button i {
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-appliance {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 20px;
    position: relative;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-appliance::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-appliance::after {
    content: 'HAIER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    z-index: 3;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Hide scroll buttons on desktop */
@media (min-width: 769px) {
    .scroll-btn {
        display: none;
    }
    
    .categories-container {
        position: static;
    }
    
    .categories-grid {
        margin: 0;
    }
}

.blog {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}


.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.category-card:active {
    transform: translateY(-4px) scale(0.98);
    transition: all 0.1s ease;
}

.category-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}


.category-content {
    padding: 0.8rem 1rem 1rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.category-card:hover .category-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(-5px);
}

.category-card:hover .category-content h3 {
    color: white;
}

.category-card:hover .category-content p {
    color: rgba(255, 255, 255, 0.9);
}

.category-card:hover .category-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #333;
    font-weight: 600;
    line-height: 1.2;
}

.category-content p {
    color: #666;
    line-height: 1.2;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    flex-grow: 1;
}

.category-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid transparent;
}

.category-link:hover {
    color: #1e3d6f;
}

.category-link i {
    font-size: 0.8rem;
}


.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
    filter: brightness(1.1) saturate(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid #2c5aa0;
    background: transparent;
    align-self: flex-start;
}

.blog-link:hover {
    color: white;
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.blog-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-column {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.contact-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2c5aa0;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form {
    margin-top: 1rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.contact-form button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #1e3d6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 10px;
}

.contact-cta {
    background: linear-gradient(135deg, #2c5aa0, #1e3a8a);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
}

.contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
}

.cta-button.primary {
    background: white;
    color: #2c5aa0;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.cta-button.secondary:hover {
    background: transparent;
    color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.cta-button i {
    font-size: 1.1rem;
}

/* Fixed WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 28px;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-btn {
    background: #2c5aa0;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4fc3f7);
}

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

.footer-section h3 {
    font-family: 'Calibri', 'carlitoregular', sans-serif;
    font-size: 1.8rem;
    font-weight: 100;
    margin-bottom: 1rem;
    color: #2c5aa0;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #4fc3f7;
    border-radius: 2px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4fc3f7;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.footer-section ul li i {
    color: #2c5aa0;
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.address-item {
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.address-item i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.address-text {
    display: inline-block;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2c5aa0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #1e3a8a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4fc3f7, transparent);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .header {
        height: 50px;
        min-height: 50px;
        padding: 0;
        transition: transform 0.3s ease;
    }

    .header.navbar-hidden {
        transform: translateY(-100%);
    }

    .header::after {
        display: none;
    }

    .hero-slider {
        margin-top: 0 !important;
        padding-top: 0 !important;
        height: calc(100vh - 50px);
        position: relative;
        top: 0;
    }

    .hero-slider .slide {
        height: calc(100vh - 50px);
        margin-top: 0;
        padding-top: 0;
    }

    .hero-slider .slider-container {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-slider .slider-wrapper {
        margin-top: 0;
        padding-top: 0;
    }

    .hero-slider .slide-image {
        margin-top: 0;
        padding-top: 0;
        top: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-slider .slide-content {
        margin-top: 0;
        padding-top: 0;
    }

    .header-top {
        flex-direction: row;
        gap: 0;
        height: 50px;
        padding: 0 1rem;
        justify-content: space-between;
        align-items: center;
    }

    .header-top-left {
        order: 1;
        justify-content: flex-start;
        width: auto;
        display: none;
    }

    .header-top-center {
        order: 2;
        justify-content: center;
        padding-right: 0;
        width: auto;
        flex: 1;
    }

    .header-top-right {
        order: 3;
        justify-content: flex-end;
        width: auto;
        gap: 0.3rem;
    }

    .right-section {
        flex-direction: row;
        gap: 0.2rem;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .social-media {
        flex-direction: row;
        gap: 0.2rem;
        align-items: center;
    }

    .follow-logo {
        width: 50px;
        height: 15px;
        margin-right: 0.3rem;
    }

    .follow-text {
        display: none;
    }

    .social-icons {
        gap: 0.2rem;
    }

    .social-icon-fa {
        font-size: 0.8rem;
    }

    .logo-container {
        width: auto;
        height: auto;
    }

    .logo {
        max-width: 80px;
        height: auto;
    }

    .hamburger {
        display: flex;
        position: relative;
        top: 0;
        right: 0;
        z-index: 1001;
        width: 32px;
        height: 32px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        padding: 6px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }

    .hamburger:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .hamburger .bar {
        width: 20px;
        height: 2px;
        background-color: white;
        margin: 2px 0;
        transition: 0.3s;
        border-radius: 1px;
    }

    .navbar {
        height: 0;
        display: none;
    }

    .navbar.hidden {
        height: 0;
        opacity: 0;
        transform: translateY(-100%);
    }

    /* Remove extra spacing in mobile */
    .categories {
        margin-top: 0;
        padding-top: 2rem;
    }

    .blog {
        margin-top: 0;
        padding-top: 2rem;
    }

    .contact {
        margin-top: 0;
        padding-top: 2rem;
    }

    /* Mobile Categories Container */
    .categories-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        border: none;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        font-size: 1.4rem;
        cursor: pointer;
        z-index: 20;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .scroll-btn:hover {
        background: rgba(0, 0, 0, 0.95);
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .scroll-left {
        left: 20px;
    }

    .scroll-right {
        right: 20px;
    }

    /* Mobile Categories Horizontal Scroll */
    .categories-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding: 1rem 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin: 0 20px;
        padding-left: 1rem;
        padding-right: 1rem;
        scroll-snap-type: x mandatory;
    }

    .categories-grid::-webkit-scrollbar {
        height: 4px;
    }

    .categories-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .categories-grid::-webkit-scrollbar-thumb {
        background: #4fc3f7;
        border-radius: 2px;
    }

    .categories-grid::-webkit-scrollbar-thumb:hover {
        background: #2c5aa0;
    }

    .category-card {
        flex: 0 0 320px;
        min-width: 320px;
        height: 320px;
        margin: 0;
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        scroll-snap-align: center;
    }

    .category-image {
        height: 180px;
        flex-shrink: 0;
    }

    .category-content {
        height: 100px;
        padding: 1rem;
        background: white;
        color: #333;
        position: static;
        margin-top: 0;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .category-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #333;
        font-weight: 600;
        line-height: 1.2;
    }

    .category-content p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        color: #666;
        flex: 1;
    }

    .category-link {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        align-self: flex-start;
        margin-top: auto;
    }

    /* Mobile Blog Container */
    .blog-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* Mobile Blog Horizontal Scroll */
    .blog-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding: 1rem 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        margin: 0 20px;
        padding-left: 1rem;
        padding-right: 1rem;
        scroll-snap-type: x mandatory;
    }

    .blog-grid::-webkit-scrollbar {
        height: 4px;
    }

    .blog-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .blog-grid::-webkit-scrollbar-thumb {
        background: #4fc3f7;
        border-radius: 2px;
    }

    .blog-grid::-webkit-scrollbar-thumb:hover {
        background: #2c5aa0;
    }

    .blog-card {
        flex: 0 0 320px;
        min-width: 320px;
        height: 360px;
        margin: 0;
        display: flex;
        flex-direction: column;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        scroll-snap-align: center;
    }

    .blog-image {
        height: 180px;
        flex-shrink: 0;
        position: relative;
    }

    .blog-content {
        height: 180px;
        padding: 1rem;
        background: white;
        color: #333;
        position: static;
        margin-top: 0;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .blog-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: #333;
        font-weight: 600;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .blog-content p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        color: #666;
        flex: 1;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .blog-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        align-self: flex-start;
        margin-top: auto;
    }

    .mobile-menu-content {
        max-width: 100%;
        padding: 1.5rem;
    }

    .mobile-nav-link {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .mobile-social-icons {
        gap: 0.8rem;
    }

    .mobile-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .nav-menu {
        display: none;
    }

    .follow-text {
        font-size: 0.8rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1a1a1a;
        margin-top: 0.5rem;
        padding: 1rem 0;
        border-radius: 0;
        display: block;
        width: 100%;
        left: 0;
        border-top: none;
        top: auto;
        backdrop-filter: none;
    }

    .dropdown-content {
        flex-direction: column;
        gap: 1rem;
    }

    .dropdown-left {
        flex-direction: column;
        max-width: 100%;
    }

    .dropdown-right {
        order: -1;
    }

    .dropdown-right {
        flex: 0 0 auto;
        min-height: 180px;
        max-width: 100%;
    }

    .dropdown-image {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dropdown-section {
        background: transparent;
        margin-bottom: 1rem;
        padding: 0.5rem;
    }

    .dropdown-section {
        margin-bottom: 1rem;
    }

    .dropdown-section h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
    }

    .dropdown-section ul li a {
        font-size: 0.85rem;
        font-weight: 500;
        padding: 0.3rem 0;
    }

    .hero-slider {
        height: calc(100vh - 121.83px);
        margin-top: 121.83px;
    }

    .slide-content {
        padding: 0;
        max-width: 90%;
        margin-left: 5%;
        background: none;
        top: 50%;
        transform: translateY(-50%);
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .slide-badge {
        font-size: 0.8rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .category-image {
        height: 220px;
    }

    .category-content {
        padding: 0.6rem 0.8rem;
        min-height: 80px;
    }

    .category-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .category-content p {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .category-link {
        font-size: 0.7rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin-bottom: 0;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .blog-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .blog-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-column {
        padding: 1.5rem;
    }

    .contact-cta {
        padding: 2rem 1rem;
    }

    .contact-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 250px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-appliance {
        width: 200px;
        height: 250px;
    }

    .about-appliance {
        width: 300px;
        height: 200px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for products */
.products-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2c5aa0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e3a8a;
}
