/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #003B73;
    --secondary: #CC0000;
    --accent: #FFC107;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --light: #F8F9FA;
    --dark: #212529;
    --text: #212529;
    --text-light: #6C757D;
    --border: #DEE2E6;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin-bottom: 16px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

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

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--primary), #004a99);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.brand-name {
    font-size: 24px;
    font-weight: 900;
    color: white;
    text-decoration: none;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-header:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary), #004a99);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 800px;
}

.brand-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204,0,0,0.3);
}

.hero-cta:hover {
    background: #990000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(204,0,0,0.4);
    text-decoration: none;
    color: white;
}

/* ===== PRODUCT CARDS ===== */
.products-section {
    padding: 60px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.product-link {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-link:hover {
    background: var(--secondary);
    text-decoration: none;
    color: white;
}

/* ===== FAULTS SECTION ===== */
.faults-section {
    padding: 60px 0;
    background: white;
}

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

.fault-card {
    background: var(--light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fault-card:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.fault-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.fault-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 15px;
}

.fault-link {
    display: inline-block;
    background: var(--danger);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fault-link:hover {
    background: #c82333;
    text-decoration: none;
    color: white;
}

/* ===== FREE DETECTION BANNER ===== */
.detection-banner {
    background: linear-gradient(135deg, var(--success), #218838);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.detection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.detection-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.detection-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.detection-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.detection-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.countdown {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent);
}

.detection-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.detection-cta:hover {
    background: #e0a800;
    text-decoration: none;
    color: var(--text);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 60px 0;
    background: var(--light);
}

.reviews-summary {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.reviews-score {
    text-align: center;
}

.score-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.review-count {
    font-size: 14px;
    color: var(--text-light);
}

.star-rating {
    display: inline-flex;
    gap: 2px;
    margin: 10px 0;
}

.star {
    width: 20px;
    height: 20px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: inline-block;
}

.star-empty {
    background: #E0E0E0;
}

.star-small {
    width: 12px;
    height: 12px;
}

.star-rating-small .star {
    width: 14px;
    height: 14px;
}

.rating-bars {
    flex: 1;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12px;
    color: var(--text-light);
}

.bar {
    flex: 1;
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 30px;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 320px;
    max-width: 360px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.review-meta {
    flex: 1;
}

.review-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
    display: block;
    margin-bottom: 5px;
}

.review-time {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    margin-bottom: 3px;
}

.review-location {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 15px;
    font-style: italic;
}

.review-service-tag {
    font-size: 12px;
    color: var(--primary);
    background: #E3F2FD;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.reviews-cta p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 60px 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light);
    transition: all 0.3s ease;
}

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

.feature-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #004a99);
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 60px 0;
    background: var(--light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    margin: 0 auto 15px;
    object-fit: cover;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ===== REGIONS SECTION ===== */
.regions-section {
    padding: 60px 0;
    background: white;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.region-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.region-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.region-info {
    padding: 25px;
}

.region-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.region-districts {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.region-link {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.region-link:hover {
    background: var(--secondary);
    text-decoration: none;
    color: white;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background: linear-gradient(135deg, var(--primary), #004a99);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--accent);
}

.counter-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--secondary), #990000);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.final-cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--text);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
}

.final-cta-button:hover {
    background: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,193,7,0.4);
    text-decoration: none;
    color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.disclaimer {
    font-size: 10px;
    color: #666;
    line-height: 1.4;
    margin-top: 20px;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bottom.show {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-text {
    font-size: 16px;
    font-weight: 600;
}

.sticky-phone {
    background: var(--accent);
    color: var(--text);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sticky-phone:hover {
    background: #e0a800;
    text-decoration: none;
    color: var(--text);
}

/* ===== CHAT BUBBLE ===== */
.chat-bubble {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 998;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40,167,69,0.4);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== EXIT POPUP ===== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text);
}

.exit-popup-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--text-light);
}

.exit-popup-cta {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.exit-popup-cta:hover {
    background: #990000;
    text-decoration: none;
    color: white;
}

/* ===== SOCIAL PROOF NOTIFICATION ===== */
.social-proof {
    position: fixed;
    top: 100px;
    right: -400px;
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: right 0.5s ease;
    z-index: 997;
    max-width: 350px;
}

.social-proof.show {
    right: 20px;
}

.social-proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.social-proof-content {
    flex: 1;
}

.social-proof-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.social-proof-time {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.hidden { display: none; }
.show { display: block; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-title {
        font-size: 32px;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .products-grid,
    .faults-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-summary {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .review-card {
        min-width: 280px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .sticky-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .chat-bubble {
        bottom: 120px;
        right: 15px;
    }
    
    .social-proof {
        max-width: 300px;
    }
    
    .social-proof.show {
        right: 15px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    
    .brand-title {
        font-size: 28px;
    }
    
    .hero-cta,
    .final-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===== BRAND STYLING ===== */
.brand-arcelik { color: #003B73; font-family: 'Segoe UI', sans-serif; font-weight: 800; font-size: 40px; letter-spacing: 1px; text-transform: none; }
.brand-beko { color: #CC0000; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 42px; letter-spacing: 4px; text-transform: uppercase; }
.brand-bosch { color: #EA0017; font-family: 'Arial Black', sans-serif; font-weight: 900; font-size: 42px; letter-spacing: 3px; text-transform: uppercase; }
.brand-siemens { color: #009999; font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 38px; letter-spacing: 5px; text-transform: uppercase; }
.brand-profilo { color: #FF6600; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 38px; letter-spacing: 1px; text-transform: none; }
.brand-vestel { color: #0066CC; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 40px; letter-spacing: 1px; text-transform: none; font-style: italic; }
.brand-samsung { color: #1428A0; font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 300; font-size: 38px; letter-spacing: 6px; text-transform: uppercase; }
.brand-lg { color: #A50034; font-family: 'Helvetica Neue', sans-serif; font-weight: 900; font-size: 48px; letter-spacing: 2px; text-transform: uppercase; }
.brand-altus { color: #5A7FA0; font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 38px; letter-spacing: 2px; text-transform: none; }
.brand-grundig { color: #1A237E; font-family: 'Georgia', serif; font-weight: 700; font-size: 36px; letter-spacing: 3px; text-transform: uppercase; }
.brand-regal { color: #003366; font-family: 'Arial', sans-serif; font-weight: 800; font-size: 38px; letter-spacing: 2px; text-transform: none; }
.brand-indesit { color: #004C97; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 36px; letter-spacing: 2px; text-transform: none; }
.brand-hotpoint { color: #8B0000; font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 36px; letter-spacing: 2px; text-transform: none; }
.brand-ariston { color: #00843D; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 38px; letter-spacing: 2px; text-transform: none; }
.brand-electrolux { color: #162D50; font-family: 'Helvetica Neue', sans-serif; font-weight: 300; font-size: 34px; letter-spacing: 5px; text-transform: uppercase; }
.brand-miele { color: #003366; font-family: 'Georgia', serif; font-weight: 400; font-size: 40px; letter-spacing: 3px; text-transform: none; }
.brand-franke { color: #1A1A1A; font-family: 'Times New Roman', serif; font-weight: 400; font-size: 36px; letter-spacing: 4px; text-transform: uppercase; }
.brand-gaggenau { color: #1A1A1A; font-family: 'Georgia', serif; font-weight: 300; font-size: 34px; letter-spacing: 6px; text-transform: uppercase; }
.brand-vaillant { color: #00A550; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 38px; letter-spacing: 2px; text-transform: uppercase; }
.brand-demirdokum { color: #CC0000; font-family: 'Georgia', serif; font-weight: 700; font-size: 36px; letter-spacing: 1px; text-transform: none; }
.brand-buderus { color: #003DA5; font-family: 'Arial', sans-serif; font-weight: 900; font-size: 38px; letter-spacing: 3px; text-transform: uppercase; }
.brand-baymak { color: #E84E10; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 38px; letter-spacing: 1px; text-transform: none; }
.brand-eca { color: #0072BC; font-family: 'Roboto', sans-serif; font-weight: 900; font-size: 42px; letter-spacing: 5px; text-transform: uppercase; }
.brand-viessmann { color: #78BE20; font-family: 'Helvetica Neue', sans-serif; font-weight: 700; font-size: 36px; letter-spacing: 2px; text-transform: uppercase; }
.brand-ferroli { color: #E2001A; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 38px; letter-spacing: 2px; text-transform: none; }
.brand-daikin { color: #003B5C; font-family: 'Arial Black', sans-serif; font-weight: 900; font-size: 40px; letter-spacing: 3px; text-transform: uppercase; }
.brand-mitsubishi { color: #CC0000; font-family: 'Helvetica', sans-serif; font-weight: 700; font-size: 36px; letter-spacing: 2px; text-transform: uppercase; }
.brand-toshiba { color: #FF0000; font-family: 'Arial', sans-serif; font-weight: 900; font-size: 38px; letter-spacing: 3px; text-transform: uppercase; }
.brand-panasonic { color: #0066B3; font-family: 'Arial', sans-serif; font-weight: 900; font-size: 36px; letter-spacing: 2px; text-transform: uppercase; }
.brand-philips { color: #0B5ED7; font-family: 'Helvetica Neue', sans-serif; font-weight: 300; font-size: 40px; letter-spacing: 4px; text-transform: none; }
.brand-sony { color: #000000; font-family: 'Helvetica Neue', sans-serif; font-weight: 900; font-size: 42px; letter-spacing: 8px; text-transform: uppercase; }
