:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f5576c;
    --text-dark: #232844;
    --text-light: #8a94b8;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e8eaf0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    position: relative;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.container {
    width: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

p {
    color: var(--text-light);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b9d 100%);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 87, 108, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: block;
}

.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-container,
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}


.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a, .top-bar-right a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover, .top-bar-right a:hover {
    opacity: 0.8;
}

.divider {
    opacity: 0.5;
}

.navbar {
    background: white;
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.nav-wrapper,
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    padding: 0;
    background: transparent;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-main {
    display: block;
    font-size: 1.1rem;
}

.logo-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Premium Hero Section */
.premium-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-background {
    display: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: none;
}

.premium-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premium-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-stats {
    display: none;
}

.hero-image-content {
    position: relative;
    animation: fadeInRight 0.8s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-phone-showcase {
    position: relative;
}

.phone-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
}

.phone-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-badge i {
    color: #ff6b35;
}

/* Slogan Banner - Keep styles but hidden */
.slogan-banner {
    display: none;
}

/* Old Hero Section - Keep for backward compatibility */
.hero {
    height: 600px;
    position: relative;
    overflow: hidden;
    margin: 0;
    margin-top: -2px;
    padding: 0;
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    animation: slideInUp 0.8s ease;
}

.hero-content-center {
    text-align: center;
    margin: 0 auto;
}

.hero-content-center .hero-buttons {
    justify-content: center;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 15px auto 0;
}

/* Products Section */
.featured-products {
    padding: 40px 0 80px 0;
    background: var(--bg-light);
    margin-top: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-card p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 0;
}

.card-link:hover {
    gap: 12px;
}

.card-link i {
    transition: transform 0.3s ease;
}

.product-card:hover .card-link i {
    transform: translateX(3px);
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background: white;
}

.brands-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.brand-slide {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.brand-slide:hover {
    border-color: var(--primary);
    background: white;
    transform: translateY(-5px);
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 20px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.brand-slide:hover .brand-logo img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
}

.service-cta {
    text-align: center;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.service-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    display: inline-block;
    padding: 5px 0;
    min-height: 32px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}


/* Shared layout alignment */
.top-bar-container,
.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Center hero content (home) */
.hero-content {
    text-align: center;
    margin: 0 auto;
}

/* Page header (all inner pages) */
.page-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
    border-bottom: 1px solid var(--border-color);
    padding: 70px 0;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 2.6rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CTA section (inner pages) */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-section .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Products page */
.products-page { padding: 70px 0 40px; }
.product-category { margin-bottom: 70px; }
.category-header { text-align: center; margin-bottom: 35px; }
.category-header h2 { font-size: 2rem; margin-bottom: 10px; color: var(--text-dark); }
.category-header h2 i { margin-right: 10px; color: var(--primary); }
.category-header p { color: var(--text-light); font-size: 1rem; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; align-items: stretch; }
.category-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.category-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(102, 126, 234, 0.3); }
.item-image { width: 100%; height: 190px; overflow: hidden; background: linear-gradient(135deg, #eef2ff, #f5f7ff); }
.item-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.category-item:hover .item-image img { transform: scale(1.05); }
.category-item h4 { padding: 18px 18px 6px; font-size: 1.05rem; color: var(--text-dark); }
.category-item p { padding: 0 18px 16px; color: var(--text-light); font-size: 0.95rem; }
.category-item .btn { margin: 0 18px 18px; width: calc(100% - 36px); text-align: center; margin-top: auto; }

/* Brands page */
.brands-page { padding: 70px 0 40px; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; margin-bottom: 60px; align-items: stretch; }
.brand-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.brand-card:hover { transform: translateY(-10px); border-color: rgba(102, 126, 234, 0.35); box-shadow: var(--shadow); }
.brand-logo { height: 110px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 2.6rem; color: var(--primary); }
.brand-logo img { max-width: 80%; max-height: 80%; filter: grayscale(100%); transition: all 0.3s ease; }
.brand-card:hover .brand-logo img { filter: grayscale(0%); }
.brand-card h3 { font-size: 1.35rem; margin-bottom: 8px; color: var(--text-dark); }
.brand-description { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; }
.brand-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; justify-content: center; }
.feature {
    background: rgba(102, 126, 234, 0.12);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
}
.brand-card .btn { width: 100%; margin-top: auto; }
.brand-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    margin-top: 70px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}
.brand-info-section .info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.brand-info-section .info-card:hover { transform: translateY(-8px); border-color: rgba(245, 87, 108, 0.35); box-shadow: var(--shadow); }
.brand-info-section .info-card i { font-size: 2.3rem; color: var(--accent); margin-bottom: 12px; }
.brand-info-section .info-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text-dark); }
.brand-info-section .info-card p { color: var(--text-light); font-size: 0.9rem; }

/* Services detail page */
.services-detail { padding: 70px 0 40px; }
.main-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-bottom: 60px; align-items: stretch; }
.service-detail-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 34px 26px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-detail-card:hover { transform: translateY(-8px); border-color: rgba(102, 126, 234, 0.35); box-shadow: var(--shadow); }
.service-detail-icon { font-size: 2.8rem; color: var(--primary); margin-bottom: 16px; }
.battery-icon { color: var(--accent); }
.charging-icon { color: var(--secondary); }
.network-icon { color: var(--accent); }
.water-icon { color: var(--secondary); }
.service-detail-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.service-detail-text { color: var(--text-light); margin-bottom: 16px; font-size: 0.95rem; }
.service-list { list-style: none; margin-bottom: 20px; }
.service-list li { color: var(--text-light); margin-bottom: 8px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.service-list i { color: var(--primary); font-size: 0.8rem; }
.service-detail-card .btn { width: 100%; margin-top: auto; }

.additional-services,
.why-choose-us {
    margin-top: 70px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}
.additional-services h2,
.why-choose-us h2,
.service-process h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}
.additional-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.additional-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 26px 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.additional-item:hover { transform: translateY(-6px); border-color: rgba(245, 87, 108, 0.35); box-shadow: var(--shadow); }
.additional-item i { font-size: 2.2rem; color: var(--accent); margin-bottom: 12px; }
.additional-item h4 { margin-bottom: 6px; font-size: 1.05rem; }
.additional-item p { color: var(--text-light); font-size: 0.85rem; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; }
.why-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.why-item:hover { transform: translateY(-8px); border-color: rgba(102, 126, 234, 0.35); box-shadow: var(--shadow); }
.why-icon { font-size: 2.6rem; color: var(--primary); margin-bottom: 14px; }
.why-item h4 { margin-bottom: 8px; font-size: 1.1rem; }
.why-item p { color: var(--text-light); font-size: 0.9rem; }

.service-process {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border: 1px solid var(--border-color);
    margin: 70px 0;
    border-radius: 20px;
}
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.step { text-align: center; }
.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 16px;
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.step h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { color: var(--text-light); font-size: 0.9rem; }

/* Contact page */
.contact-section { padding: 70px 0 40px; background: var(--bg-light); }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }

.contact-panel {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-panel h2 { font-size: 1.6rem; color: var(--text-dark); }
.contact-intro { color: var(--text-light); font-size: 0.95rem; }

.contact-cards { display: grid; gap: 12px; }

.contact-card {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-light);
    font-size: 0.9rem;
}

.contact-card i { font-size: 1.1rem; color: var(--primary); }
.contact-card span { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 4px; }
.contact-card a,
.contact-card p { color: var(--text-dark); font-weight: 600; }

.mini-map {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.compact-owner {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 14px;
}

.compact-owner h3 { margin-bottom: 6px; }

.owner-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: var(--shadow-sm);
}

.owner-image img { width: 100%; height: 100%; object-fit: cover; }

.owner-title { color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.owner-description { color: var(--text-light); font-size: 0.9rem; }

.contact-form-section {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-form-section h2 { font-size: 1.6rem; margin-bottom: 20px; color: var(--text-dark); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { margin-bottom: 6px; font-weight: 600; color: var(--text-dark); font-size: 0.85rem; }
.form-group input, .form-group select, .form-group textarea {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #fff;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9aa4c5; }
.form-group select option { background: #fff; color: var(--text-dark); }

/* Prevent text zoom on iOS for form elements */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    select, textarea, input {
        font-size: 16px !important;
    }
}

.contact-form .btn { margin-top: 4px; }
.form-note { color: var(--text-light); font-size: 0.8rem; text-align: center; margin-top: 6px; }

.map-hours {
    padding: 60px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 40px 0;
}

.map-hours-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.map-card,
.hours-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.map-card h2,
.hours-card h2 { font-size: 1.5rem; margin-bottom: 16px; color: var(--text-dark); }

.map-container { border-radius: 14px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.map-note { margin-top: 14px; color: var(--text-light); font-size: 0.95rem; }

.hours-list { display: grid; gap: 10px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}
.hours-row span { color: var(--text-light); font-size: 0.9rem; }
.hours-row strong { color: var(--text-dark); font-size: 0.9rem; }

.faq-section { padding: 60px 0; }
.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: rgba(102, 126, 234, 0.35); box-shadow: var(--shadow); }
.faq-item h4 { color: var(--text-dark); margin-bottom: 10px; font-size: 0.98rem; display: flex; align-items: center; gap: 10px; }
.faq-item h4 i { color: var(--accent); }
.faq-item p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* Hide unsupported Font Awesome icons */
.fa-guarantee,
.fa-smartwatch {
    display: none;
}

/* Responsive Media Queries */

/* Tablet & Medium Devices */
@media (max-width: 992px) {
    .container-fluid {
        padding: 0 18px;
    }

    h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .container-fluid,
    .container {
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 8px;
        flex-wrap: wrap;
    }

    .top-bar-left a,
    .top-bar-right a {
        font-size: 0.75rem;
        gap: 5px;
    }

    .top-bar-left a i,
    .top-bar-right a i {
        font-size: 0.9rem;
    }

    .divider {
        display: none;
    }

    /* Premium Hero Responsive */
    .premium-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-hero-title {
        font-size: 2.2rem;
    }

    .premium-hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-stats {
        gap: 25px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Slogan Banner */
    .slogan-banner {
        padding: 10px 0;
    }

    .slogan-text {
        font-size: 0.85rem;
        gap: 8px;
    }

    .slogan-text i {
        font-size: 0.75rem;
    }

    /* Navigation */
    .navbar {
        position: relative;
    }

    .logo {
        gap: 10px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .logo-main {
        font-size: 0.95rem;
    }

    .logo-sub {
        font-size: 0.68rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 15px 0;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 14px 20px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        color: var(--primary);
    }

    /* Hero Section */
    .hero {
        height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }

    /* Typography */
    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .section-label {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 13px 32px;
        font-size: 1rem;
    }

    /* Sections */
    .featured-products,
    .brands,
    .services,
    .cta-banner {
        padding: 50px 0;
    }

    .products-page,
    .brands-page,
    .services-detail {
        padding: 50px 0 30px;
    }

    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    /* Brands */
    .brands-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-slide {
        padding: 25px;
        min-height: 100px;
    }

    .brand-logo {
        height: 70px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        padding: 28px 20px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .service-cta {
        padding: 35px 25px;
    }

    .service-cta h3 {
        font-size: 1.6rem;
    }

    .main-services {
        grid-template-columns: 1fr;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Category Grid */
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-item h4 {
        font-size: 1rem;
    }

    .item-image {
        height: 160px;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-panel,
    .contact-form-section {
        padding: 25px 20px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .compact-owner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .owner-image {
        width: 80px;
        height: 80px;
    }

    .map-hours {
        padding: 50px 0;
    }

    .map-hours-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* Info Cards */
    .brand-info-section {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container-fluid,
    .container {
        padding: 0 12px;
    }

    /* Top Bar - More compact */
    .top-bar {
        font-size: 0.7rem;
        padding: 6px 0;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-bar-left {
        gap: 6px;
    }

    .top-bar-left a {
        font-size: 0.7rem;
    }

    .top-bar-right {
        display: none;
    }

    /* Premium Hero - Small Mobile */
    .premium-hero {
        padding: 40px 0;
    }

    .premium-hero-title {
        font-size: 1.8rem;
    }

    .premium-hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .feature-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .phone-card {
        transform: rotate(0deg);
    }

    /* Slogan Banner - Smaller */
    .slogan-banner {
        padding: 8px 0;
    }

    .slogan-text {
        font-size: 0.75rem;
        gap: 6px;
        flex-wrap: wrap;
    }

    .slogan-text i {
        font-size: 0.7rem;
    }

    /* Logo - Smaller */
    .logo {
        gap: 8px;
    }

    .logo-image {
        width: 42px;
        height: 42px;
    }

    .logo-main {
        font-size: 0.85rem;
    }

    .logo-sub {
        font-size: 0.6rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Hero */
    .hero {
        height: 280px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 20px;
    }

    /* Typography */
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.88rem;
    }

    .section-label {
        font-size: 0.8rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* Sections Padding */
    .featured-products,
    .brands,
    .services,
    .cta-banner {
        padding: 40px 0;
    }

    .products-page,
    .brands-page,
    .services-detail {
        padding: 40px 0 25px;
    }

    .page-header {
        padding: 40px 0;
        margin-top: 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    /* Product Cards */
    .product-card,
    .service-card {
        padding: 25px 18px;
    }

    .product-card h3,
    .service-card h3 {
        font-size: 1.05rem;
    }

    .product-card p,
    .service-card p {
        font-size: 0.88rem;
    }

    .product-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Brands */
    .brands-slider {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .brand-slide {
        padding: 20px;
        min-height: 90px;
    }

    .brand-logo {
        height: 60px;
    }

    /* Service CTA */
    .service-cta {
        padding: 30px 20px;
    }

    .service-cta h3 {
        font-size: 1.4rem;
    }

    /* CTA Content */
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .cta-buttons {
        gap: 10px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col a,
    .footer-col li {
        font-size: 0.88rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-panel,
    .contact-form-section {
        padding: 20px 15px;
    }

    .contact-panel h2,
    .contact-form-section h2 {
        font-size: 1.4rem;
    }

    .contact-card {
        grid-template-columns: 30px 1fr;
        padding: 10px 12px;
    }

    .owner-image {
        width: 70px;
        height: 70px;
    }

    .compact-owner h3 {
        font-size: 1.1rem;
    }

    .map-hours {
        padding: 40px 0;
    }

    .map-card h2,
    .hours-card h2 {
        font-size: 1.3rem;
    }

    /* Category Items */
    .category-item h4 {
        font-size: 0.95rem;
        padding: 15px 15px 5px;
    }

    .category-item p {
        font-size: 0.85rem;
        padding: 0 15px 14px;
    }

    .category-item .btn {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
    }

    .item-image {
        height: 140px;
    }

    /* Service Details */
    .service-detail-card {
        padding: 28px 20px;
    }

    .service-detail-icon {
        font-size: 2.4rem;
    }

    .service-detail-card h3 {
        font-size: 1.1rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .additional-item {
        padding: 22px 16px;
    }

    .why-item {
        padding: 24px 18px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    /* FAQ */
    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-item {
        padding: 16px 14px;
    }

    .faq-item h4 {
        font-size: 0.92rem;
    }

    .faq-item p {
        font-size: 0.82rem;
    }

    /* Brand Cards */
    .brand-card {
        padding: 24px 18px;
    }

    .brand-logo {
        height: 100px;
        font-size: 2.2rem;
    }

    .brand-card h3 {
        font-size: 1.2rem;
    }

    .brand-description {
        font-size: 0.88rem;
    }

    .feature {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container-fluid,
    .container {
        padding: 0 10px;
    }

    .logo-main {
        font-size: 0.75rem;
    }

    .logo-sub {
        font-size: 0.55rem;
    }

    .logo-image {
        width: 38px;
        height: 38px;
    }

    .hero {
        height: 250px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 9px 18px;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 11px 24px;
        font-size: 0.9rem;
    }

    .product-icon,
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .featured-products,
    .brands,
    .services,
    .cta-banner {
        padding: 35px 0;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 350px;
    }

    .top-bar {
        padding: 5px 0;
        font-size: 0.7rem;
    }

    .navbar {
        padding: 8px 0;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .featured-products,
    .brands,
    .services,
    .cta-banner {
        padding: 40px 0;
    }

    .page-header {
        padding: 35px 0;
    }
}

/* High-DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .brand-logo img,
    .owner-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}