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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-primary {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ff6600;
    border: 2px solid #ff6600;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #ff6600;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 102, 0, 0.2);
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 102, 0, 0.3));
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6600;
    transition: width 0.3s ease;
}

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

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(255, 102, 0, 0.08);
    color: #ff6600;
    transform: translateX(5px);
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    border-radius: 4px;
}

.dropdown-link i.dropdown-icon {
    font-size: 1.2rem;
    color: #ff6600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 102, 0, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav.active .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 102, 0, 0.05);
        margin: 0.5rem 0;
        border-radius: 8px;
    }
    
    .nav.active .dropdown-menu::before {
        display: none;
    }
    
    .nav.active .dropdown-link {
        padding: 0.8rem 3rem;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    min-width: 250px;
}

.search-box:focus-within {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.search-input {
    border: none;
    background: none;
    outline: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    flex: 1;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background: none;
    border: none;
    color: #ff6600;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.search-btn:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: scale(1.1);
}

/* Platform Links */
.platform-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.n11-link:hover {
    border-color: #ff6600;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
}

.trendyol-link:hover {
    border-color: #ff0000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.platform-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 1rem;
}

.hero-logo-img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(255, 102, 0, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
    z-index: 10;
    position: relative;
}

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

.hero-text {
    text-align: center;
    max-width: 800px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 102, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 102, 0, 0.8);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

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

.coming-soon-badge i {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: subtitleSlideIn 1s ease-out 0.3s both;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: featuresSlideIn 1s ease-out 0.6s both;
}

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

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 102, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 102, 0, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

.hero-feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* E-commerce Platforms */
.platforms {
    padding: 80px 0;
    background: #fff;
}

.platforms-content {
    text-align: center;
}

.platform-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.platform-logo {
    margin-bottom: 0.5rem;
}

.platform-img {
    width: 225px;
    height: 225px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.platform-desc {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.platform-link:hover {
    color: #ff8533;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 2px solid rgba(255, 102, 0, 0.1);
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.feature i {
    color: #ff6600;
    font-size: 1.2rem;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 2px solid rgba(255, 102, 0, 0.1);
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
}

/* Product Slider Section */
.product-slider-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Platform Header */
.platform-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-header-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* N11 Section */
.n11-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
}

.n11-section .platform-header-logo {
    filter: drop-shadow(0 2px 4px rgba(255, 102, 0, 0.2));
}

.n11-btn {
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.n11-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
}

/* Trendyol Section */
.trendyol-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff5f5 100%);
}

.trendyol-section .platform-header-logo {
    filter: drop-shadow(0 2px 4px rgba(255, 0, 0, 0.2));
}

.trendyol-btn {
    background: linear-gradient(135deg, #ff0000 0%, #ff3333 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.trendyol-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.product-slider-content {
    text-align: center;
}

.product-slider-container {
    position: relative;
    margin: 1rem auto;
    max-width: 1050px;
    overflow: hidden;
    padding: 0 20px;
}

.product-slider {
    display: flex;
    gap: 0.8rem;
    overflow: visible;
    scroll-behavior: smooth;
    padding: 0.3rem 0;
    transition: transform 0.5s ease;
    width: max-content;
    justify-content: flex-start;
}

.product-card {
    min-width: 150px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

/* Geniş ekran için kart boyutları */
@media (min-width: 1025px) {
    .product-card {
        min-width: 190px;
        width: 190px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-info {
        padding: 1.1rem;
    }
    
    .product-name {
        font-size: 1.05rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .product-link {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.product-card:active {
    transform: translateY(-4px) scale(0.99);
}

.product-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

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

.product-image img:not([src]), 
.product-image img[src=""],
.product-image img[src*="error"] {
    display: none;
}

.product-image img:not([src]) + .fallback-image,
.product-image img[src=""] + .fallback-image,
.product-image img[src*="error"] + .fallback-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #7f8c8d;
    font-size: 0.9rem;
    text-align: center;
}

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

.product-card:hover .fallback-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-info {
    padding: 1.2rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 1rem;
}

.product-link {
    display: inline-block;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2c3e50;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #ff6600;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #ff6600;
    transform: scale(1.2);
}

.view-all-products {
    margin-top: 3rem;
    text-align: center;
}

.view-all-products .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.view-all-products .btn i {
    font-size: 1rem;
}

.view-all-products .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 102, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

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

.category-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
    border-top: 2px solid rgba(255, 102, 0, 0.1);
    border-bottom: 2px solid rgba(255, 102, 0, 0.1);
}

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

.contact-item {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 102, 0, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 102, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #7f8c8d;
    font-size: 0.75rem;
    word-break: break-all;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    border-top: 3px solid #ff6600;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(255, 102, 0, 0.3));
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6600;
}

.footer-desc {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6600;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.social-link:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 102, 0, 0.3);
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        gap: 1rem;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .search-box {
        display: none;
    }
    
    .platform-links {
        gap: 0.5rem;
    }
    
    .platform-link {
        width: 35px;
        height: 35px;
    }
    
    .platform-icon {
        width: 20px;
        height: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .platform-img {
        width: 120px;
        height: 120px;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-logo-img {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-feature {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-img {
        max-height: 200px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .product-card {
        min-width: 150px;
        width: 150px;
        flex-shrink: 0;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platform-cards {
        grid-template-columns: 1fr;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-details p {
        font-size: 0.7rem;
        word-break: break-all;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-slider-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .product-slider {
        gap: 0.8rem;
        padding: 0.2rem 0;
    }
    
    .product-slider {
        gap: 0.8rem;
        padding: 0.1rem 0;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .platform-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .platform-header-logo {
        width: 50px;
        height: 50px;
    }
    
    .view-all-products .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 0.5rem;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .search-box {
        display: none;
    }
    
    .search-input {
        font-size: 0.8rem;
    }
    
    .platform-links {
        gap: 0.3rem;
    }
    
    .platform-link {
        width: 30px;
        height: 30px;
    }
    
    .platform-icon {
        width: 18px;
        height: 18px;
    }
    
    .platform-img {
        width: 100px;
        height: 100px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-logo-img {
        width: 160px;
        height: 160px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .coming-soon-badge {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .about-img {
        max-height: 150px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .product-slider {
        gap: 0.8rem;
        padding: 0.1rem 0;
    }
    
    .product-card {
        min-width: 150px;
        width: 150px;
        flex-shrink: 0;
    }
    
    .product-image {
        height: 130px;
    }
    
    .product-info {
        padding: 0.7rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .fallback-image {
        font-size: 0.8rem;
    }
    
    .fallback-image i {
        font-size: 1.5rem !important;
    }
    
    .platform-header {
        gap: 0.3rem;
    }
    
    .platform-header-logo {
        width: 40px;
        height: 40px;
    }
    
    .contact-details p {
        font-size: 0.65rem;
        word-break: break-all;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .view-all-products .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 120px;
}

/* Loading animation for images */
img {
    transition: all 0.3s ease;
}

.logo-img:hover,
.platform-img:hover,
.footer-logo-img:hover,
.hero-img:hover,
.about-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

img[src] {
    opacity: 1;
}

/* Hover effects for interactive elements */
.nav-link,
.platform-link,
.footer-links a {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.platform-link:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}
