* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    flex-direction: row;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Euroform sayfası için logo boyutu korunuyor */
.euroform-page .logo-image {
    height: 50px;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #d32f2f;
}

.euroform-link:hover {
    color: #1976d2;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: 15px;
    flex-direction: row;
}


.social-icon {
    text-decoration: none;
    color: rgba(211, 47, 47, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform 0.3s, opacity 0.3s, color 0.3s;
    border-radius: 50%;
    padding: 0;
}

/* Mitsubishi ve Index sayfaları için kırmızı ton (varsayılan) */
.social-icon:hover {
    transform: scale(1.15);
    opacity: 1;
    color: #d32f2f;
}

/* Euroform sayfası için mavi ton */
.euroform-page .social-icon {
    color: rgba(25, 118, 210, 0.7);
}

.euroform-page .social-icon:hover {
    color: #1976d2;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Dropdown Menu */
.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #2c2c2c;
    width: 900px;
    padding: 30px;
    padding-top: 35px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    border-top: 3px solid #d32f2f;
}

/* Desktop dropdown - hover only on desktop */
@media (min-width: 769px) {
    .dropdown-parent:hover .dropdown-menu,
    .dropdown-menu:hover {
        display: flex;
        gap: 40px;
    }
    
    /* PC görünümünde nav-list içindeki mobil sosyal medya ikonlarını kesinlikle gizle */
    .nav-list .mobile-social-nav {
        display: none !important;
    }
    
    /* PC görünümünde header-right içindeki sosyal medya ikonlarını göster */
    .header-right .social-icons {
        display: flex !important;
    }
    
}

/* Dropdown'ın kaybolmaması için boşluk - nav-link ile dropdown arası */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

/* Euroform Dropdown - Mavi Tema */
.euroform-menu {
    background-color: #1a1a1a;
    border-top: 3px solid #1976d2;
    width: 500px;
    padding: 30px;
}

.euroform-title {
    color: #1976d2 !important;
}

.euroform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.euroform-category-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s;
    text-decoration: none;
    padding: 15px;
    text-align: center;
    display: block;
}

.euroform-category-link:hover {
    color: #1976d2 !important;
    background-color: rgba(25, 118, 210, 0.1);
    border-radius: 5px;
}

.dropdown-column {
    flex: 1;
}

.dropdown-title {
    color: #d32f2f;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.dropdown-title.aksesuar-title {
    color: #d32f2f;
}

.dropdown-column:last-child .dropdown-list a {
    color: #d32f2f;
}

.dropdown-list {
    list-style: none;
    margin-bottom: 30px;
}

.dropdown-list li {
    margin-bottom: 10px;
}

.dropdown-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.dropdown-list a:hover {
    color: #d32f2f;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    background-color: #2c2c2c;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    color: #fff;
    z-index: 2;
    opacity: 1;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 1;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
    opacity: 1;
}

.hero-button {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    opacity: 1;
    display: inline-block;
    text-decoration: none;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.hero-button:hover {
    background-color: #b71c1c;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 10px;
}



.hero-placeholder {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    color: #333;
    font-weight: bold;
}

/* Slider Controls */

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
    margin-top: 0;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.section-title.main-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-name {
    font-size: 24px;
    font-weight: normal;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}

.product-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-image {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}

.product-img-wrapper {
    flex: 1;
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

/* Tek resim olduğunda tam genişlik */
.product-image .product-img-wrapper:only-child {
    min-width: 100%;
    max-width: 100%;
}

.product-image .product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease, cursor 0.3s ease;
    cursor: zoom-in;
    display: block;
}

/* Büyüteç efekti - Detaylar açıldığında resimlere hover yapıldığında */
.expandable-card.expanded .product-img-wrapper {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.expandable-card.expanded .product-image .product-img {
    transition: transform 0.15s ease-out;
    will-change: transform;
    cursor: zoom-in;
}

.expandable-card.expanded .product-image .product-img:hover {
    cursor: zoom-out;
}

/* Tek resim için daha iyi zoom efekti */
.expandable-card.expanded .product-image .product-img-wrapper:only-child .product-img {
    transition: transform 0.15s ease-out;
}

.product-placeholder {
    background-color: #f5f5f5;
    padding: 40px 20px;
    border-radius: 5px;
    color: #666;
    font-size: 14px;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.product-spec {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
}

.discounted-price {
    font-size: 22px;
    color: #d32f2f;
    font-weight: bold;
}

.euroform-products .discounted-price {
    color: #1976d2;
}

.product-contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.whatsapp-button,
.phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 50px;
}

.mitsubishi-product .whatsapp-button {
    background-color: rgba(211, 47, 47, 0.15);
    border: 1px solid rgba(211, 47, 47, 0.3);
    color: #d32f2f;
}

.mitsubishi-product .whatsapp-button:hover {
    background-color: rgba(211, 47, 47, 0.25);
    border-color: rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.2);
}

.euroform-product .whatsapp-button {
    background-color: rgba(25, 118, 210, 0.15);
    border: 1px solid rgba(25, 118, 210, 0.3);
    color: #1976d2;
}

.euroform-product .whatsapp-button:hover {
    background-color: rgba(25, 118, 210, 0.25);
    border-color: rgba(25, 118, 210, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.2);
}

.mitsubishi-product .phone-button {
    background-color: rgba(211, 47, 47, 0.15);
    border: 1px solid rgba(211, 47, 47, 0.3);
    color: #d32f2f;
}

.mitsubishi-product .phone-button:hover {
    background-color: rgba(211, 47, 47, 0.25);
    border-color: rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.2);
}

.euroform-product .phone-button {
    background-color: rgba(25, 118, 210, 0.15);
    border: 1px solid rgba(25, 118, 210, 0.3);
    color: #1976d2;
}

.euroform-product .phone-button:hover {
    background-color: rgba(25, 118, 210, 0.25);
    border-color: rgba(25, 118, 210, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.2);
}

.whatsapp-button svg,
.phone-button svg {
    width: 22px;
    height: 22px;
}

.product-button {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.product-button:hover {
    background-color: #b71c1c;
}

/* Euroform Products Section */
.euroform-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.euroform-products .product-card.euroform-product {
    border: 2px solid #e0e0e0;
}

.euroform-products .product-card.euroform-product:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.2);
}

.euroform-products .product-name {
    color: #1976d2;
}

.euroform-products .product-price {
    color: #1976d2;
}

.euroform-button {
    background-color: #1976d2;
    color: #fff;
}

.euroform-button:hover {
    background-color: #1565c0;
}

/* Technical Service Section */
.technical-service {
    padding: 80px 0;
    background-color: #2c2c2c;
    border: 2px solid #d32f2f;
}

.section-title.white {
    color: #fff;
    text-align: center;
}

.service-description {
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 20px;
    border-radius: 10px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-icon:hover {
    transform: translateY(-10px) rotate(5deg) scale(1.15);
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.5);
    background-color: #b71c1c;
}

.service-icon:hover::before {
    width: 200px;
    height: 200px;
}

.service-card:hover .service-icon {
    animation: bounceRotate 0.8s ease-in-out;
}

.service-icon:hover {
    animation: bounceRotate 0.8s ease-in-out;
}

@keyframes bounceRotate {
    0%, 100% {
        transform: translateY(-10px) rotate(5deg) scale(1.15);
    }
    25% {
        transform: translateY(-15px) rotate(-5deg) scale(1.2);
    }
    50% {
        transform: translateY(-12px) rotate(8deg) scale(1.18);
    }
    75% {
        transform: translateY(-15px) rotate(-8deg) scale(1.2);
    }
}

.service-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #fff;
}

.blog-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 18px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #d32f2f;
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-placeholder {
    color: #999;
    font-size: 16px;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-date {
    color: #666;
}

.blog-category {
    color: #d32f2f;
    font-weight: 600;
}

.blog-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-read-more {
    background-color: #d32f2f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
}

/* Blog Modal */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blog-modal.active {
    opacity: 1;
    visibility: visible;
}

.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.blog-modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-modal.active .blog-modal-content {
    transform: scale(1);
}

.blog-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.blog-modal-close:hover {
    background-color: #b71c1c;
    transform: rotate(90deg);
}

.blog-modal-body {
    padding: 40px;
    overflow-y: auto;
    max-height: 85vh;
}

.blog-modal-body::-webkit-scrollbar {
    width: 8px;
}

.blog-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.blog-modal-body::-webkit-scrollbar-thumb {
    background: #d32f2f;
    border-radius: 10px;
}

.blog-modal-body::-webkit-scrollbar-thumb:hover {
    background: #b71c1c;
}

.blog-modal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.blog-modal-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-modal-date {
    color: #666;
}

.blog-modal-category {
    color: #d32f2f;
    font-weight: 600;
}

.blog-modal-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    line-height: 1.4;
    margin: 0;
}

.blog-modal-detail-content {
    color: #666;
    line-height: 1.8;
}

.blog-modal-detail-content h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 25px 0 15px;
}

.blog-modal-detail-content h4:first-child {
    margin-top: 0;
}

.blog-modal-detail-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.blog-modal-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.blog-modal-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.blog-modal-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #b71c1c, #d32f2f);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #d32f2f;
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid #d32f2f;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
    transition: transform 0.3s;
}

.contact-info-card:hover .contact-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.contact-link {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s;
    padding: 6px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
}

.contact-social-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d32f2f;
    transition: transform 0.3s;
}

.contact-social-link:hover {
    color: #d32f2f;
    padding-left: 30px;
}

.contact-social-link:hover::before {
    transform: translateX(5px);
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-link::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #d32f2f;
    transition: transform 0.3s;
}

.contact-link:hover {
    color: #d32f2f;
    padding-left: 30px;
}

.contact-link:hover::before {
    transform: translateX(5px);
}

.contact-text {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Contact Map */
.contact-map-section-full {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
}

.contact-map-section {
    background: #fff;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.contact-map-section-full .map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px 15px 0 0;
}

.map-info {
    padding: 25px 30px;
    background: #fff;
}

.map-info h3 {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.map-address,
.map-hours {
    color: #666;
    margin-bottom: 10px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 2px solid #d32f2f;
    border-radius: 8px;
}

.map-link:hover {
    background: #d32f2f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.map-link svg {
    transition: transform 0.3s;
}

.map-link:hover svg {
    transform: translate(3px, -3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 80px 0 30px;
    color: #fff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d32f2f, #b71c1c, #d32f2f);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    background-color: transparent;
}

/* Euroform sayfası için footer logo boyutu korunuyor */
.euroform-page .footer-logo-img {
    height: 50px;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.footer-description {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.footer-social-icon:hover {
    background: #d32f2f;
    transform: translateY(-3px);
    border-color: #d32f2f;
}

.footer-column-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #d32f2f;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #d32f2f;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 25px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer-website {
    color: #d32f2f;
    font-weight: 500;
}

/* Products Page Section */
.products-page-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-header {
    padding: 60px 0;
}

.page-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    font-weight: 300;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #999;
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
}

.euroform-page .filter-btn.active {
    background-color: #1976d2;
    border-color: #1976d2;
}

/* Subcategory buttons styling */
.filter-btn.subcategory-btn {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 400;
    margin-left: 20px;
    border-color: #ccc;
    background-color: #fafafa;
    position: relative;
}

.filter-btn.subcategory-btn::before {
    content: '→';
    position: absolute;
    left: -15px;
    color: #999;
    font-size: 12px;
}

.filter-btn.subcategory-btn:hover {
    border-color: #d32f2f;
    background-color: #fff;
}

.filter-btn.subcategory-btn.active {
    background-color: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
}

.filter-btn.subcategory-btn.active::before {
    color: #fff;
}

.euroform-page .filter-btn.subcategory-btn.active {
    background-color: #1976d2;
    border-color: #1976d2;
}

/* Category and Subcategory Headers */
.category-section {
    margin: 50px 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #d32f2f;
}

.category-section:first-child {
    margin-top: 20px;
}

.category-title {
    font-size: 28px;
    font-weight: bold;
    color: #d32f2f;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.euroform-page .category-title {
    color: #1976d2;
}

.euroform-page .category-section {
    border-bottom-color: #1976d2;
}

.subcategory-section {
    margin: 40px 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid #d32f2f;
}

.subcategory-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 0;
}

.euroform-page .subcategory-section {
    border-left-color: #1976d2;
}

.products-container {
    width: 100%;
}

.subcategory-products {
    margin-bottom: 40px;
    margin-top: 20px;
}

.subcategory-products {
    margin-bottom: 40px;
    margin-top: 20px;
}

/* Expandable Card - Horizontal (Side) Expansion */
.products-page-section {
    position: relative;
}

.products-grid {
    position: relative;
}

.expandable-card {
    position: relative;
    transition: all 0.4s ease;
}

.product-card-content {
    width: 100%;
}

.product-details {
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    width: 0;
    min-width: 0;
    height: 100%;
    background-color: #fff;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    padding: 0;
    overflow: hidden;
    z-index: 10;
    opacity: 0;
    transition: all 0.4s ease;
    border-left: 3px solid #d32f2f;
}

.euroform-product .product-details {
    border-left-color: #1976d2;
}

/* Sağ taraftaki kartlar için sola açılma */
.expandable-card.open-left .product-details {
    left: auto;
    right: calc(100% + 20px);
    border-left: none;
    border-right: 3px solid #d32f2f;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.euroform-product.open-left .product-details {
    border-right-color: #1976d2;
}

.expandable-card.expanded {
    /* Kart normal boyutta kalıyor, sadece detaylar yanında açılıyor */
}

.expandable-card.expanded .product-details {
    width: 350px;
    min-width: 350px;
    padding: 20px;
    opacity: 1;
    overflow-y: auto;
    height: 100%;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
}

.expandable-card.open-left.expanded .product-details {
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

/* Overlay and Blur Effect */
.products-page-section {
    position: relative;
}

.products-grid.blur-active {
    position: relative;
}

.products-grid.blur-active::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    pointer-events: auto;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.products-grid.blur-active .expandable-card:not(.expanded) {
    filter: blur(4px);
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.4s ease;
}

.products-grid.blur-active .expandable-card.expanded {
    z-index: 101;
    position: relative;
    filter: none;
    opacity: 1;
}

.details-content {
    padding: 10px 0;
    position: relative;
}

.details-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 15px 0 10px;
    color: #333;
}

.details-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.details-content ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #666;
}

.details-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-weight: bold;
}

.euroform-product .details-content ul li::before {
    color: #1976d2;
}

.expandable-card.expanded .toggle-details::after {
    content: ' ▲';
}

.toggle-details::after {
    content: ' ▼';
}

/* Product Card Animation */
.products-grid .product-card {
    transition: all 0.4s ease;
}

.product-card.hidden {
    display: none;
}

/* Close button for expanded details */
.product-details-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 102;
}

.product-details-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Responsive Design */
/* Tablet görünümü artık mobil görünümle aynı - 1024px breakpoint kaldırıldı */

@media (max-width: 768px) {
    /* Container Mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header {
        padding: 12px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }
    
    body {
        padding-top: 70px;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
    }
    
    .logo {
        flex: 0 0 auto;
        margin: 0 auto;
        background-color: #ffffff;
        padding: 4px 8px;
        border-radius: 4px;
        order: 2;
    }
    
    .logo-text {
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo-image {
        height: 32px;
        flex-shrink: 0;
    }
    
    /* Euroform sayfası için mobil logo boyutu korunuyor */
    .euroform-page .logo-image {
        height: 36px;
    }
    
    .header-right {
        display: flex;
        align-items: center;
        gap: 10px;
        order: 3;
    }
    
    /* Mobilde sosyal medya ikonlarını gizle */
    .header-right .social-icons {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex;
        order: 1;
    }
    
    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        transition: right 0.3s ease-out;
        order: 3;
        background-color: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 0;
        margin: 0;
    }
    
    .nav.active {
        right: 0;
        padding: 0;
    }
    
    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        align-items: stretch;
        padding: 70px 0 20px 0;
        margin: 0;
        list-style: none;
        height: 100%;
        overflow-y: auto;
    }
    
    /* Hamburger menü içinde sosyal medya ikonları */
    .mobile-social-nav {
        border-top: 2px solid #e0e0e0;
        margin-top: auto;
        padding: 25px 20px;
        background-color: #f9f9f9;
        position: sticky;
        bottom: 0;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 20px;
        justify-content: center;
        padding: 0;
    }
    
    .mobile-social-nav .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .mobile-social-nav .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* Mobil hamburger menü içindeki sosyal medya ikonları renkleri */
    .mobile-social-nav .social-icon {
        color: rgba(211, 47, 47, 0.7);
    }
    
    .mobile-social-nav .social-icon:hover {
        color: #d32f2f;
        transform: scale(1.1);
    }
    
    .euroform-page .mobile-social-nav .social-icon {
        color: rgba(25, 118, 210, 0.7);
    }
    
    .euroform-page .mobile-social-nav .social-icon:hover {
        color: #1976d2;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        transition: background-color 0.2s ease;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-item:hover {
        background-color: #f9f9f9;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 25px;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        color: #333;
        transition: all 0.2s ease;
        position: relative;
    }
    
    /* Dropdown ok ikonu - sadece mobilde görünür */
    .dropdown-parent > .nav-link::after {
        content: '▶';
        font-size: 12px;
        color: #999;
        transition: transform 0.3s ease, color 0.3s ease;
        margin-left: auto;
        flex-shrink: 0;
        display: none;
    }
    
    @media (max-width: 768px) {
        .dropdown-parent > .nav-link::after {
            display: block;
        }
        
        .dropdown-parent.active > .nav-link::after {
            content: '▼';
            transform: rotate(0deg);
            color: #d32f2f;
        }
        
        .euroform-dropdown.active > .nav-link::after {
            color: #1976d2;
        }
    }
    
    /* PC görünümünde kesinlikle gizle */
    @media (min-width: 769px) {
        .dropdown-parent > .nav-link::after {
            display: none !important;
        }
    }
    
    .nav-link:hover {
        color: #d32f2f;
        background-color: #f9f9f9;
        padding-left: 30px;
    }
    
    .euroform-page .nav-link:hover {
        color: #1976d2;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        margin: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: none;
        border-top: none;
        background-color: #f5f5f5;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    }
    
    .dropdown-parent.active .dropdown-menu {
        display: flex !important;
        max-height: 3000px !important;
        padding: 15px 0 !important;
        overflow: visible !important;
        visibility: visible !important;
    }
    
    /* Euroform dropdown için kesin çözüm - TÜM DURUMLAR İÇİN */
    .dropdown-parent.active .euroform-menu,
    .euroform-dropdown.active .euroform-menu,
    .dropdown-parent.euroform-dropdown.active .euroform-menu,
    .nav-item.dropdown-parent.euroform-dropdown.active .euroform-menu {
        display: flex !important;
        max-height: 3000px !important;
        padding: 15px 0 !important;
        overflow: visible !important;
        visibility: visible !important;
        width: 100% !important;
        background-color: #f5f5f5 !important;
        opacity: 1 !important;
    }
    
    .dropdown-column {
        width: 100%;
        padding: 0 20px;
        display: block;
    }
    
    .dropdown-column:first-child {
        padding-top: 0;
    }
    
    .dropdown-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-top: 15px;
        color: #d32f2f;
        font-weight: 600;
    }
    
    .dropdown-title:first-child {
        padding-top: 0;
    }
    
    .dropdown-list {
        margin-bottom: 20px;
        list-style: none;
        padding: 0;
    }
    
    .dropdown-list li {
        margin-bottom: 8px;
    }
    
    .dropdown-list a {
        color: #666;
        font-size: 14px;
        padding: 8px 0;
        display: block;
        transition: all 0.2s ease;
    }
    
    .dropdown-list a:hover {
        color: #d32f2f;
        padding-left: 10px;
    }
    
    .euroform-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 15px 20px !important;
        width: 100% !important;
    }
    
    .dropdown-parent.active .euroform-grid,
    .euroform-dropdown.active .euroform-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 15px 20px !important;
        width: 100% !important;
    }
    
    .euroform-category-link {
        padding: 12px 15px !important;
        font-size: 14px !important;
        border-radius: 5px !important;
        background-color: #fff !important;
        transition: all 0.2s ease !important;
        display: block !important;
        color: #333 !important;
        text-decoration: none !important;
    }
    
    .dropdown-parent.active .euroform-category-link,
    .euroform-dropdown.active .euroform-category-link {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .euroform-category-link {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 5px;
        background-color: #fff;
        transition: all 0.2s ease;
    }
    
    /* Mobil görünümde "Tüm Ürünler" linki - Normal kategori gibi görünür */
    .mobile-all-products-list {
        display: none;
    }
    
    @media (max-width: 768px) {
        .mobile-all-products-list {
            display: block !important;
            margin-top: 10px;
        }
        
        .mobile-all-products-link {
            color: #666 !important;
            font-size: 14px !important;
            padding: 8px 0 !important;
            display: block !important;
            transition: all 0.2s ease !important;
            text-decoration: none !important;
        }
        
        .mobile-all-products-link:hover {
            color: #d32f2f !important;
            padding-left: 10px !important;
        }
        
        /* Euroform dropdown için mavi renk */
        .euroform-dropdown .mobile-all-products-link {
            color: #666 !important;
        }
        
        .euroform-dropdown .mobile-all-products-link:hover {
            color: #1976d2 !important;
        }
    }
    
    /* PC görünümünde kesinlikle gizle */
    @media (min-width: 769px) {
        .mobile-all-products-list {
            display: none !important;
        }
        
        .mobile-all-products-link {
            display: none !important;
        }
    }
    
    .euroform-category-link:hover {
        background-color: rgba(25, 118, 210, 0.1);
        transform: translateX(5px);
    }
    
    /* Hero Section Mobile - Minimal ve Sade */
    .hero {
        min-height: auto;
        height: auto;
        padding: 40px 0 30px 0;
        background-color: #2c2c2c;
        position: relative;
    }
    
    .hero-slider {
        height: auto;
        position: relative;
    }
    
    .slide {
        position: relative;
        width: 100%;
        height: auto;
        display: none;
    }
    
    .slide.active {
        display: block;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 20px 15px;
        text-align: center;
        height: auto;
        position: relative;
    }
    
    .hero-text {
        opacity: 1;
        transform: none;
        animation: none;
        width: 100%;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.3;
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-description {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 18px;
        line-height: 1.6;
        opacity: 1;
        animation: none;
        transform: none;
    }
    
    .hero-button {
        padding: 12px 28px;
        font-size: 14px;
        margin-top: 0;
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-image {
        display: block;
        margin-top: 0;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .hero-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
        opacity: 1;
    }
    
    .hero-image::before {
        display: none;
    }
    
    .hero-text {
        order: 2;
    }
    
    
    /* Products Mobile */
    .featured-products,
    .euroform-products {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .section-title.main-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .brand-name {
        font-size: 18px;
        display: block;
        margin-top: 5px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    /* Euroform ve Mitsubishi Heavy sayfalarında mobil card boyutları küçültülüyor */
    .euroform-page .product-card,
    .mitsubishi-page .product-card {
        padding: 12px;
    }
    
    .euroform-page .product-name,
    .mitsubishi-page .product-name {
        font-size: 14px;
    }
    
    .euroform-page .product-spec,
    .mitsubishi-page .product-spec {
        font-size: 10px;
    }
    
    .euroform-page .product-price,
    .mitsubishi-page .product-price {
        font-size: 16px;
    }
    
    .euroform-page .products-grid,
    .mitsubishi-page .products-grid {
        gap: 15px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-spec {
        font-size: 11px;
    }
    
    .product-price {
        font-size: 18px;
    }
    
    .product-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Mobile: Vertical expansion for Product Details */
    .expandable-card {
        display: flex;
        flex-direction: column;
    }
    
    .product-card-content {
        order: 1;
    }
    
    .product-details {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        height: 0 !important;
        max-height: 0 !important;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: none;
        z-index: auto;
        padding: 0 20px;
        border-radius: 0;
        overflow: hidden;
        order: 2;
        margin-top: 0;
        opacity: 0 !important;
        transform: none !important;
        transition: all 0.3s ease-out;
    }
    
    .expandable-card.expanded .product-details {
        height: auto !important;
        max-height: 2000px !important;
        padding: 20px !important;
        margin-top: 15px;
        border-top: 4px solid #d32f2f;
        opacity: 1 !important;
        z-index: 1 !important;
    }
    
    .euroform-product.expanded .product-details {
        border-top-color: #1976d2;
    }
    
    .expandable-card.open-left .product-details {
        left: auto !important;
        right: auto !important;
        border-right: none;
    }
    
    .product-details-close {
        display: none;
    }
    
    .products-grid.blur-active::after {
        display: none;
    }
    
    .products-grid.blur-active .expandable-card:not(.expanded) {
        filter: none;
        opacity: 1;
    }
    
    /* Services Mobile */
    .technical-service {
        padding: 50px 0;
    }
    
    .service-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-text {
        font-size: 13px;
    }
    
    /* Blog Section Mobile */
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
    
    .blog-read-more {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .blog-detail-content h4 {
        font-size: 16px;
    }
    
    .blog-detail-content p,
    .blog-detail-content ul li {
        font-size: 14px;
    }
    
    .blog-card.expanded .blog-detail {
        max-height: 300px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-wrapper {
        gap: 25px;
        padding: 0 15px;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info-card {
        padding: 18px;
    }
    
    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .contact-info-card h3 {
        font-size: 18px;
    }
    
    .contact-link,
    .contact-text {
        font-size: 14px;
    }
    
    .contact-map-section,
    .contact-map-section-full {
        height: auto;
    }
    
    .map-container {
        height: 250px;
    }
    
    .contact-map-section-full .map-container {
        height: 300px;
    }
    
    .map-info {
        padding: 20px;
    }
    
    .map-info h3 {
        font-size: 18px;
    }
    
    .map-link {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        padding: 20px 15px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom-content p {
        font-size: 12px;
    }
    
    /* Category Filter Mobile */
    .category-filter {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
        flex: 0 0 auto;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 8px;
    }
    
    .page-subtitle {
        font-size: 14px;
        opacity: 0.9;
    }
    
    /* Category Filter Mobil Sadeleştirme */
    .category-filter {
        padding: 15px;
        margin-bottom: 20px;
        gap: 8px;
        background-color: #f5f5f5;
        border-radius: 8px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 12px;
        border: 1.5px solid #e0e0e0;
    }
    
    .filter-btn.subcategory-btn {
        padding: 6px 12px;
        font-size: 11px;
        margin-left: 8px;
    }
    
    .filter-btn.subcategory-btn::before {
        left: -8px;
        font-size: 9px;
    }
    
    /* Products Page Section Mobil */
    .products-page-section {
        padding: 30px 0;
    }
    
    /* Blur Effect Mobile */
    .products-grid.blur-active::after {
        z-index: 999;
    }
    
    .products-grid.blur-active .expandable-card.expanded {
        z-index: 1001;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .section-title.main-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-info-card {
        padding: 15px;
    }
    
    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .map-container {
        height: 200px;
    }
    
    .category-filter {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-logo-text {
        font-size: 14px;
    }
    
    .footer-description {
        font-size: 13px;
    }
}

/* Fixed WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        display: flex !important;
        position: fixed !important;
        z-index: 9999 !important;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    
    /* Footer Mobil Görünüm */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-social {
        display: flex !important;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-social-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    


