/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar i {
    margin-right: 5px;
}

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 5px;
}

.logo .tagline {
    color: #666;
    font-size: 13px;
}

.search-bar {
    flex: 1;
    display: flex;
    max-width: 500px;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-size: 15px;
    outline: none;
}

.search-bar input:focus {
    border-color: var(--primary-color);
}

.search-bar button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #0052a3;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.header-action:hover {
    color: var(--primary-color);
}

.header-action i {
    font-size: 24px;
    margin-bottom: 5px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--danger-color);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

/* Main Navigation */
.main-nav {
    background: var(--primary-color);
    box-shadow: var(--shadow);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: space-around;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-item > a:hover,
.nav-item.highlight > a {
    background: rgba(255, 255, 255, 0.1);
}

.nav-item i {
    margin-right: 8px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: var(--shadow);
    border-radius: 0 0 8px 8px;
    display: none;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--light-color);
    padding-left: 30px;
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    padding: 80px 0;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    min-height: 400px;
    padding: 40px;
    border-radius: 15px;
}

.slide-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.slide-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.slide-content p {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.slide-image i {
    font-size: 200px;
    opacity: 0.3;
}

.slide-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.slide-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-cart {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
}

.btn-cart:hover {
    background: #0052a3;
}

/* Quick Categories */
.quick-categories {
    padding: 40px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 70px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.category-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.category-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.category-card p {
    color: #666;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* Quick Category Cards with Images */
.category-card {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    transition: transform 0.5s;
}

.category-card:hover .category-bg {
    transform: scale(1.05);
}

.category-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.category-overlay i {
    font-size: 70px;
    color: #fff;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.category-overlay h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-overlay p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.category-count {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Products Section */
.products-section {
    padding: 50px 0;
    background: var(--light-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--dark-color);
}

.section-header i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-badge.discount {
    background: var(--danger-color);
}

.product-badge.new {
    background: var(--success-color);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    font-weight: 700;
}

.product-image {
    background: var(--light-color);
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image i {
    font-size: 120px;
    color: #ccc;
}

.product-info {
    padding: 20px;
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 12px;
    min-height: 48px;
    line-height: 1.5;
    color: var(--dark-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
    font-size: 14px;
}

.product-rating i {
    color: #ffa500;
    font-size: 14px;
}

.product-rating span {
    color: #999;
    font-size: 13px;
    margin-left: 5px;
}

.product-delivery {
    background: #e8f5e9;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-delivery i {
    color: #2e7d32;
    font-size: 16px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-specs span {
    background: var(--light-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: #666;
}

.product-specs i {
    margin-right: 5px;
    color: var(--primary-color);
}

.product-price {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
}

.new-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--danger-color);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-box i {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 50px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
}

.feature-card i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.feature-card:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Category Showcase */
.category-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.showcase-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 45px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0,102,204,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.showcase-card:hover::before {
    left: 100%;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,102,204,0.25);
}

.showcase-card i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.showcase-card:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--secondary-color);
}

.showcase-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.showcase-card p {
    color: #666;
    margin-bottom: 18px;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* Showcase Icon Styles */
.showcase-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.showcase-card:hover .showcase-icon {
    transform: scale(1.1) rotate(360deg);
}

.showcase-icon i {
    font-size: 50px !important;
    color: #fff !important;
    margin: 0 !important;
}

.showcase-brands {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.showcase-brands span {
    background: var(--light-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    padding: 50px 0;
    margin: 40px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.newsletter-text {
    color: #fff;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-text i {
    margin-right: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    outline: none;
}

.newsletter-form .btn-primary {
    background: var(--secondary-color);
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background: #ff5500;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    color: #ccc;
    margin-bottom: 12px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 30px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slider {
        padding: 60px 0;
    }

    .slide-content h2 {
        font-size: 42px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .slide-image img {
        max-width: 400px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-left, .top-right {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .header-main {
        flex-direction: column;
        gap: 15px;
    }

    .logo h1 {
        font-size: 28px;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .nav-menu {
        flex-direction: column;
    }

    .nav-item > a {
        padding: 12px 15px;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        display: none;
    }

    .nav-item.active .dropdown-menu {
        display: block;
    }

    .hero-slider {
        padding: 40px 0;
        margin: 10px 0;
    }

    .slide {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 20px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .slide-image {
        margin-top: 20px;
    }

    .slide-image img {
        max-width: 250px !important;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 180px;
    }

    .category-overlay i {
        font-size: 50px;
    }

    .category-overlay h3 {
        font-size: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .category-showcase {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 24px;
    }

    .slide-content h2 {
        font-size: 24px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .product-info h3 {
        font-size: 14px;
        min-height: auto;
    }

    .stat-number {
        font-size: 28px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .showcase-icon {
        width: 80px;
        height: 80px;
    }

    .showcase-icon i {
        font-size: 40px !important;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: #fff;
    padding: 60px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header h1 i {
    margin-right: 15px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.header-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-top: 10px;
}

/* About Page Styles */
.about-section {
    padding: 60px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-text p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
}

.mission-card i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.section-title i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Timeline */
.timeline-section {
    margin-bottom: 80px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 160px;
}

.timeline-year {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

.why-choose-section {
    margin-bottom: 80px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.2);
}

.why-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-card p {
    color: #666;
    font-size: 14px;
}

/* Team Section */
.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 60px;
    color: var(--primary-color);
}

.team-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-card p {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
}

.phone-icon { background: var(--primary-color); }
.whatsapp-icon { background: #25D366; }
.email-icon { background: var(--secondary-color); }
.location-icon { background: #9c27b0; }

.contact-method-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-method-card p {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-method-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.method-desc {
    font-size: 14px !important;
    color: #999 !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-desc {
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card h3 i {
    margin-right: 8px;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.social-card {
    background: var(--light-color);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.social-link i {
    width: 30px;
    text-align: center;
    font-size: 18px;
    margin-right: 10px;
}

.social-link.facebook:hover { background: #1877f2; color: #fff; }
.social-link.twitter:hover { background: #1da1f2; color: #fff; }
.social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-link.youtube:hover { background: #ff0000; color: #fff; }
.social-link.linkedin:hover { background: #0077b5; color: #fff; }

.map-section {
    margin-bottom: 60px;
}

.map-container {
    margin: 30px 0;
}

.map-note {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.map-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-section {
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-item h4 i {
    margin-right: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* Stores Page */
.stores-section {
    padding: 60px 0;
}

.stores-intro {
    text-align: center;
    margin-bottom: 60px;
}

.stores-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.store-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.store-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.store-badge.new {
    background: var(--success-color);
}

.store-card.flagship {
    border: 3px solid var(--secondary-color);
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--light-color);
}

.store-header h3 {
    font-size: 22px;
}

.store-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.store-status.open {
    background: #d4edda;
    color: #155724;
}

.store-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.store-info {
    padding: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: var(--primary-color);
    min-width: 25px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    color: #666;
    line-height: 1.7;
}

.store-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.store-features span {
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--success-color);
    font-weight: 600;
}

.store-features i {
    margin-right: 5px;
}

.store-actions {
    display: flex;
    gap: 10px;
}

.store-actions .btn {
    flex: 1;
    text-align: center;
}

.store-benefits {
    margin-bottom: 80px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Corporate Page */
.page-header.corporate {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.corporate-section {
    padding: 60px 0;
}

.corporate-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.corporate-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.corporate-benefits {
    margin-bottom: 80px;
}

.benefits-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card-large {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.benefit-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.25);
}

.benefit-card-large i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card-large h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.benefit-card-large p {
    color: #666;
    margin-bottom: 20px;
}

.benefit-card-large ul {
    list-style: none;
    padding: 0;
}

.benefit-card-large ul li {
    padding: 8px 0;
    color: #666;
    padding-left: 25px;
    position: relative;
}

.benefit-card-large ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.corporate-services {
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #fff;
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card:hover i {
    color: #fff;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 14px;
}

.service-card:hover p {
    color: rgba(255,255,255,0.95);
}

.quote-section {
    margin-bottom: 80px;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.quote-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quote-feature i {
    font-size: 30px;
    color: var(--success-color);
}

.quote-feature strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.quote-feature p {
    color: #666;
    font-size: 14px;
}

.contact-box {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.contact-box h3 {
    margin-bottom: 15px;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
}

.phone-number i {
    margin-right: 10px;
}

.quote-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.quote-form h3 {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.checkbox-group-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-group-inline label {
    display: flex;
    align-items: center;
    font-weight: normal;
}

.checkbox-group-inline input {
    width: auto !important;
    margin-right: 5px;
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

.references-section {
    margin-bottom: 80px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.reference-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.reference-card:hover {
    transform: translateY(-5px);
}

.reference-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.reference-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.reference-card p {
    color: #666;
    font-size: 14px;
}

/* Blog Page */
.page-header.blog-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.blog-section {
    padding: 60px 0;
    background: var(--light-color);
}

.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.post-badge.featured {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.post-meta i {
    margin-right: 5px;
}

.featured-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.featured-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.blog-filter {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.blog-filter h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.post-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.post-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.post-author {
    font-size: 14px;
    color: #999;
}

.post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.post-link:hover {
    color: var(--secondary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 15px;
    background: #fff;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.sidebar-widget h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.sidebar-search {
    display: flex;
}

.sidebar-search input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.sidebar-search button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
    padding: 10px;
    border-radius: 8px;
    transition: background 0.3s;
}

.popular-post:hover {
    background: var(--light-color);
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.popular-post-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.popular-post-info span {
    font-size: 13px;
    color: #999;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 5px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.category-list span {
    color: #999;
}

.newsletter-widget {
    background: var(--light-color);
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter input {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 8px 15px;
    background: var(--light-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Article Pages Styles */
.page-header.article-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.95;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-section {
    padding: 60px 0;
    background: var(--light-color);
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.article-main {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.article-hero-image {
    margin: -40px -40px 40px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-intro {
    margin-bottom: 40px;
}

.table-of-contents {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.table-of-contents h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 10px;
}

.table-of-contents a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    padding: 8px 0;
}

.table-of-contents a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.article-section-content {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.article-section-content:last-of-type {
    border-bottom: none;
}

.article-section-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.article-section-content h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.article-section-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.article-section-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.info-box {
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box.success {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.info-box i {
    font-size: 24px;
    color: #28a745;
}

.info-box strong {
    display: block;
    margin-bottom: 8px;
    color: #155724;
}

.info-box p {
    color: #155724;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i {
    color: var(--success-color);
    font-size: 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-card {
    padding: 30px;
    border-radius: 10px;
}

.comparison-card.pros {
    background: #d4edda;
    border: 2px solid #28a745;
}

.comparison-card.cons {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.comparison-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.comparison-card h3 i {
    margin-right: 10px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.system-types {
    display: grid;
    gap: 30px;
}

.system-type-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.system-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,102,204,0.15);
}

.type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.type-icon.gaming { background: linear-gradient(135deg, #667eea, #764ba2); }
.type-icon.office { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.type-icon.design { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.type-icon.aio { background: linear-gradient(135deg, #3498db, #2980b9); }

.system-type-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.type-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
}

.type-specs span {
    font-size: 14px;
    color: #666;
}

.type-price {
    margin: 20px 0;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    text-align: center;
}

.type-price strong {
    color: #856404;
}

.selection-guide {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-content ul {
    margin: 15px 0;
}

.step-content ul li {
    margin-bottom: 10px;
}

.budget-ranges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.budget-item {
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.budget-item strong {
    display: block;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.budget-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.specs-checklist h4 {
    font-size: 20px;
    margin: 25px 0 10px;
    color: var(--primary-color);
}

.specs-checklist h4 i {
    margin-right: 10px;
}

.recommendations {
    display: grid;
    gap: 30px;
}

.recommendation-card {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid;
    background: #fff;
}

.recommendation-card.budget { border-color: #28a745; }
.recommendation-card.midrange { border-color: #0066cc; }
.recommendation-card.highend { border-color: #dc3545; }

.rec-header {
    padding: 25px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.recommendation-card.budget .rec-header { background: #28a745; }
.recommendation-card.midrange .rec-header { background: #0066cc; }
.recommendation-card.highend .rec-header { background: #dc3545; }

.rec-header h3 {
    font-size: 24px;
    margin: 0;
}

.rec-price {
    font-size: 20px;
    font-weight: 700;
}

.rec-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.rec-content {
    padding: 30px;
}

.rec-content h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.rec-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.rec-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.rec-suitable {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.rec-suitable strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.rec-suitable p {
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-acc {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-question h4 {
    margin: 0;
    font-size: 18px;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item-acc.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item-acc.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.article-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.article-share {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    text-align: center;
}

.article-share h3 {
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.linkedin { background: #0077b5; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.related-item:hover {
    background: #e0e0e0;
    transform: translateX(5px);
}

.related-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.related-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.related-item span {
    font-size: 13px;
    color: #999;
}

.popular-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-mini {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
}

.product-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.product-mini h5 {
    font-size: 14px;
    margin-bottom: 5px;
}

.product-mini .price {
    color: var(--danger-color);
    font-weight: 700;
    font-size: 16px;
}

.contact-widget {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: #fff;
}

.contact-widget h3 {
    color: #fff;
}

.contact-widget p {
    color: rgba(255,255,255,0.95);
}

.contact-phone {
    display: block;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
    font-size: 18px;
}

.contact-phone:hover {
    background: rgba(255,255,255,0.3);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Responsive for Articles */
@media (max-width: 1024px) {
    .article-content-wrapper {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding: 25px;
    }

    .article-hero-image {
        margin: -25px -25px 25px;
    }

    .article-section-content h2 {
        font-size: 26px;
    }

    .guide-step {
        flex-direction: column;
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Guides Page Styles */
.guides-section {
    padding: 60px 0;
    background: var(--light-color);
}

.guides-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.guide-cards-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 80px;
}

.guide-card-large {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,102,204,0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.guide-card-large.featured {
    border: 3px solid var(--secondary-color);
}

.guide-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    z-index: 2;
}

.guide-image {
    position: relative;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.guide-card-large:hover .guide-image img {
    transform: scale(1.1);
}

.guide-content {
    padding: 40px;
}

.guide-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    margin-bottom: 20px;
}

.guide-icon.gaming { background: linear-gradient(135deg, #667eea, #764ba2); }
.guide-icon.components { background: linear-gradient(135deg, #f093fb, #f5576c); }
.guide-icon.peripherals { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.guide-icon.laptop { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.guide-icon.monitor { background: linear-gradient(135deg, #fa709a, #fee140); }
.guide-icon.secondhand { background: linear-gradient(135deg, #30cfd0, #330867); }
.guide-icon.deals { background: linear-gradient(135deg, #ff6a00, #ee0979); }

.guide-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.guide-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.guide-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.guide-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

.guide-topics {
    margin-bottom: 30px;
}

.guide-topics h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guide-topics ul {
    list-style: none;
    padding: 0;
}

.guide-topics li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
}

.guide-topics li i {
    color: var(--success-color);
}

.guide-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
}

.guide-card-header {
    padding: 30px;
    background: var(--light-color);
    border-bottom: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.guide-card-header .guide-icon {
    margin: 0;
    width: 70px;
    height: 70px;
    font-size: 30px;
    flex-shrink: 0;
}

.guide-card-header h3 {
    font-size: 24px;
    margin: 0;
}

.guide-card-body {
    padding: 30px;
}

.guide-card-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.guide-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.guide-includes span {
    background: var(--light-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.additional-resources {
    margin-bottom: 80px;
}

.additional-resources h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.additional-resources h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.resource-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.2);
}

.resource-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resource-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.resource-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.resource-link:hover {
    color: var(--secondary-color);
}

.resource-link i {
    font-size: 14px;
    margin-left: 5px;
}

.guides-faq {
    margin-bottom: 80px;
}

.guides-faq h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.guides-faq h2 i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* Responsive for Guides */
@media (max-width: 1024px) {
    .guide-card-large {
        grid-template-columns: 1fr;
    }

    .guide-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .guide-content {
        padding: 25px;
    }

    .guide-content h2 {
        font-size: 26px;
    }

    .guide-card-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
}

/* Legal Pages Styles */
.page-header.legal-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.legal-section {
    padding: 60px 0;
    background: var(--light-color);
}

.legal-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.legal-main {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.legal-intro {
    margin-bottom: 40px;
}

.info-box.warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.info-box.warning i {
    color: #ffc107;
}

.info-box.warning strong,
.info-box.warning p {
    color: #856404;
}

.info-box.info {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
}

.info-box.info i {
    color: #17a2b8;
}

.info-box.info strong,
.info-box.info p {
    color: #0c5460;
}

.legal-article {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.legal-article:last-of-type {
    border-bottom: none;
}

.legal-article h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-article h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.legal-article h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.legal-article p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.legal-list {
    list-style: none;
    padding: 0;
}

.legal-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.legal-list li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 20px;
}

.legal-detail {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.legal-detail ul {
    list-style: none;
    padding: 0;
}

.legal-detail li {
    padding: 8px 0;
}

.legal-highlight {
    background: #e3f2fd;
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin: 20px 0;
}

.legal-signature {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    margin-top: 40px;
}

.legal-signature p {
    margin: 5px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.legal-table thead {
    background: var(--primary-color);
    color: #fff;
}

.legal-table th,
.legal-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-table tbody tr:nth-child(even) {
    background: var(--light-color);
}

.legal-cta {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.legal-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.legal-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-links a {
    padding: 12px 15px;
    background: var(--light-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(5px);
}

.legal-links i {
    font-size: 18px;
}

.contact-phone {
    display: block;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
    font-weight: 600;
    font-size: 18px;
}

.contact-phone:hover {
    background: rgba(255,255,255,0.3);
}

.working-hours {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
}

/* Return/Exchange Process */
.return-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.return-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.return-step:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-info h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
}

.step-duration {
    display: inline-block;
    padding: 5px 15px;
    background: var(--success-color);
    color: #fff;
    border-radius: 15px;
    font-size: 13px;
    margin-top: 10px;
}

.condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.condition-card {
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.condition-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.condition-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.condition-card h4 {
    font-size: 18px;
    margin: 10px 0;
}

.condition-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.exchange-process {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.exchange-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 20px;
}

.exchange-step i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.exchange-step h4 {
    font-size: 16px;
    margin: 10px 0;
}

.exchange-step p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.exchange-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.contact-method i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method strong {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 5px 0;
}

.contact-method span {
    font-size: 13px;
    color: #999;
}

/* Privacy Policy Specific */
.legal-purpose-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.purpose-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.purpose-icon {
    min-width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.purpose-card h4 {
    margin-top: 0;
}

.cookie-types {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.cookie-type {
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.cookie-type i {
    font-size: 24px;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-item {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.security-item i {
    font-size: 40px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.security-item h4 {
    font-size: 16px;
    margin: 10px 0;
}

.security-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.rights-list {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.right-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.right-item i {
    font-size: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.right-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.right-item p {
    margin: 0;
    font-size: 14px;
}

/* SSS Specific */
.sss-section {
    padding: 60px 0;
    background: var(--light-color);
}

.sss-search {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.sss-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.sss-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0,102,204,0.2);
}

.sss-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 18px;
}

.sss-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.category-tab {
    padding: 12px 25px;
    border: 2px solid var(--border-color);
    background: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-tab.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.sss-list {
    max-width: 900px;
    margin: 0 auto;
}

.sss-category-group {
    margin-bottom: 50px;
}

.sss-category-group h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.sss-contact {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.sss-contact h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-option {
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-option:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 40px;
    color: var(--primary-color);
    transition: color 0.3s;
}

.contact-option:hover i {
    color: #fff;
}

.contact-option strong {
    font-size: 16px;
}

.contact-option span {
    font-size: 14px;
    opacity: 0.9;
}

/* KVKK Specific */
.kvkk-purposes {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.kvkk-purpose-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.kvkk-purpose-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.purpose-number {
    min-width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.purpose-content h3 {
    margin-top: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.purpose-content p {
    margin: 0;
    font-size: 14px;
}

.transfer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.transfer-card {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.transfer-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.transfer-card h4 {
    font-size: 16px;
    margin: 10px 0;
}

.transfer-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-box {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.right-box:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.right-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.right-box:hover i {
    color: #fff;
}

.right-box h4 {
    font-size: 16px;
    margin: 10px 0;
    transition: color 0.3s;
}

.right-box:hover h4 {
    color: #fff;
}

.right-box p {
    font-size: 13px;
    margin: 0;
    transition: color 0.3s;
}

.right-box:hover p {
    color: rgba(255,255,255,0.9);
}

.application-methods {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.method-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.method-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.method-card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: var(--primary-color);
}

.method-card .btn {
    margin-top: 15px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-box {
    text-align: center;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
}

.security-box i {
    font-size: 40px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.security-box h4 {
    font-size: 16px;
    margin: 10px 0;
}

.security-box p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.cookie-notice {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff3cd;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
}

.cookie-notice i {
    font-size: 40px;
    color: #ffc107;
    flex-shrink: 0;
}

.cookie-notice h4 {
    margin-top: 0;
    color: #856404;
}

.cookie-notice p {
    margin: 0;
    color: #856404;
}

.highlight-widget {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: #fff;
}

.highlight-widget h3 {
    color: #fff;
}

.quick-info {
    display: grid;
    gap: 15px;
}

.info-item {
    text-align: center;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.info-item strong {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s;
}

.download-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.download-btn i {
    font-size: 30px;
    color: #dc3545;
}

.download-btn:hover i {
    color: #fff;
}

.download-btn strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.download-btn span {
    font-size: 12px;
    opacity: 0.8;
}

.certificates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.cert-badge {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
}

.cert-badge i {
    font-size: 40px;
    margin-bottom: 10px;
}

.cert-badge p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive for Legal Pages */
@media (max-width: 1024px) {
    .legal-content-wrapper {
        grid-template-columns: 1fr;
    }

    .exchange-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .legal-main {
        padding: 25px;
    }

    .legal-article h2 {
        font-size: 24px;
    }

    .return-step {
        flex-direction: column;
    }

    .condition-grid,
    .contact-methods,
    .security-measures,
    .transfer-cards,
    .rights-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

    .sss-categories {
        flex-direction: column;
    }

    .category-tab {
        justify-content: center;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.category-card,
.feature-card {
    animation: fadeIn 0.5s ease-in-out;
}

