/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-light-gray: #f5f5f5;
    --color-white: #ffffff;
    --color-beige: #f5f1e8;
    --color-yellow: #fdb913;
    --color-yellow-dark: #e5a50d;
    --color-yellow-light: #ffd54f;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--color-yellow);
    color: var(--color-black);
}

/* ========================================
   TOP NAVBAR
   ======================================== */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: transform var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--color-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-black);
    flex-shrink: 0;
    overflow: hidden;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text {
    text-align: left;
}

.logo-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--color-yellow);
    border-radius: 3px 3px 0 0;
    transition: width var(--transition-normal);
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

.nav-item.active::before {
    width: 60%;
}

.nav-icon {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-label {
    font-size: 0.875rem;
    font-weight: 500;
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(253, 185, 19, 0.15);
    border: 1px solid rgba(253, 185, 19, 0.3);
    border-radius: 12px;
}

.support-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-icon svg {
    width: 20px;
    height: 20px;
}

.support-text {
    text-align: left;
}

.support-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.support-subtitle {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* ========================================
   MOBILE TOGGLE
   ======================================== */

.mobile-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: var(--color-dark);
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-normal);
}

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

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

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

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    margin-left: 0;
    padding-left: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    position: relative;
}

.cta-top {
    position: absolute;
    top: -80px;
    right: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--color-yellow);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.cta-button:hover {
    background: var(--color-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.4);
}

.cta-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 18px;
    height: 18px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(253, 185, 19, 0.1);
    border: 1px solid rgba(253, 185, 19, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-yellow);
    margin-bottom: 2rem;
}

.badge-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.text-yellow {
    color: var(--color-yellow);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--color-yellow);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-gray);
}

.btn-secondary:hover {
    background: var(--color-gray);
    border-color: var(--color-light-gray);
}

.btn-arrow {
    font-size: 1.25rem;
}

.btn-icon {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
}

.hero-right {
    position: relative;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.appliance-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.appliance-item {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all var(--transition-normal);
    animation: float 3s ease-in-out infinite;
}

.appliance-item svg {
    width: 60px;
    height: 60px;
}

.appliance-item:nth-child(1) {
    animation-delay: 0s;
}

.appliance-item:nth-child(2) {
    animation-delay: 0.5s;
}

.appliance-item:nth-child(3) {
    animation-delay: 1s;
}

.appliance-item:nth-child(4) {
    animation-delay: 1.5s;
}

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

.appliance-item:hover {
    background: rgba(253, 185, 19, 0.1);
    border-color: var(--color-yellow);
    transform: scale(1.1);
}

/* ========================================
   FEATURES BANNER
   ======================================== */

.features-banner {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--color-yellow);
    overflow: hidden;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-black);
    white-space: nowrap;
    letter-spacing: 1px;
}

.feature-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose-section {
    padding: 6rem 0;
    background: var(--color-beige);
}

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

.why-card {
    text-align: center;
    padding: 2rem;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
}

.why-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--color-yellow);
}

.why-card h3 {
    font-size: 1.25rem;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    padding: 4rem 0;
    background: var(--color-black);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-dark);
    border: 1px solid var(--color-gray);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-yellow);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 50px;
    height: 50px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-light-gray);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 6rem 0;
    background: var(--color-beige);
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(253, 185, 19, 0.2);
    color: var(--color-yellow-dark);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-badge.center {
    display: block;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.section-title.center {
    text-align: center;
}

.section-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-black);
}

.about-stat-label {
    font-size: 0.875rem;
    color: #666;
}

.about-right {
    height: 500px;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.image-icon {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-icon svg {
    width: 80px;
    height: 80px;
}

.image-placeholder p {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.btn-full {
    width: 100%;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    padding: 6rem 0;
    background: var(--color-beige);
}

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

.service-card {
    text-align: center;
    padding: 0;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 1.125rem;
    color: var(--color-black);
    margin: 1.5rem 1.5rem 0.5rem;
    font-weight: 700;
}

.service-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    padding: 0 1.5rem 1.5rem;
}

.services-cta {
    text-align: center;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 6rem 0;
    background: var(--color-beige);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(253, 185, 19, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-yellow-dark);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

.faq-image {
    max-width: 600px;
    margin: 0 auto;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.faq-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.faq-image-icon {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-image-icon svg {
    width: 80px;
    height: 80px;
}

.faq-image-placeholder p {
    font-size: 1.25rem;
    color: #666;
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: 6rem 0;
    background: var(--color-beige);
}

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

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

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

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1rem;
    color: var(--color-black);
    font-weight: 600;
    line-height: 1.6;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    background: var(--color-white);
    color: var(--color-black);
    transition: all var(--transition-normal);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 3px rgba(253, 185, 19, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.map-container {
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-icon {
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-icon svg {
    width: 80px;
    height: 80px;
}

.map-placeholder p {
    font-size: 1.25rem;
    color: #666;
    font-weight: 600;
}

.map-address {
    font-size: 0.875rem;
    color: #999;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    color: var(--color-light-gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-light-gray);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--color-dark);
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--color-yellow);
    color: var(--color-black);
    border-color: var(--color-yellow);
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--color-light-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-normal);
}

.footer-col ul li a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-light-gray);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .sidebar {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-item {
        padding: 0.625rem 1rem;
    }
    
    .support-badge {
        padding: 0.625rem 0.875rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-right {
        height: 350px;
    }
    
    .about-right {
        height: 400px;
    }
    
    .faq-image {
        height: 250px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem;
    }
    
    .support-badge {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .cta-top {
        position: static;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-right {
        height: 300px;
    }
    
    .about-right {
        height: 350px;
    }
    
    .faq-image {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .appliance-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .appliance-item {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .features-banner {
        padding: 1rem;
    }
    
    .feature-item {
        font-size: 0.75rem;
    }
    
    .why-grid,
    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        justify-content: space-around;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.no-scroll {
    overflow: hidden;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}
