/*
Theme Name: Mersin Beyaz Eşya Servis
Theme URI: https://www.mersinservishizmetleri.com.tr/
Author: Mersin Beyaz Eşya Özel Servis
Author URI: https://www.mersinservishizmetleri.com.tr/
Description: Mersin'de Arçelik, Beko, Bosch, Siemens, LG, Samsung, Profilo, Altus, Hoover özel servis hizmeti için profesyonel WordPress teması.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mersin-servis
*/

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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================
   BUTTONS
   ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #e63946;
    color: #fff;
}

.btn-primary:hover {
    background: #c1121f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #fff;
    color: #e63946;
    border: 2px solid #e63946;
}

.btn-secondary:hover {
    background: #e63946;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #e63946;
    border: 2px solid #e63946;
}

.btn-outline:hover {
    background: #e63946;
    color: #fff;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-white {
    background: #fff;
    color: #e63946;
}

.btn-white:hover {
    background: #f8f9fa;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #e63946;
}

/* ====================
   TOP BAR
   ==================== */
.top-bar {
    background: #1d3557;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a {
    color: #fff;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #a8dadc;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ====================
   HEADER
   ==================== */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1d3557;
}

.logo i {
    font-size: 2rem;
    color: #e63946;
}

.logo-text h1 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.logo-text span {
    font-size: 0.85rem;
    color: #e63946;
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.main-nav a {
    color: #1d3557;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    color: #e63946;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
}

.header-cta {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* ====================
   HERO SECTION
   ==================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="100" height="100"/></svg>');
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .highlight {
    color: #a8dadc;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.feature-item i {
    color: #a8dadc;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: #fff;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ====================
   BRANDS SECTION
   ==================== */
.brands-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.section-label {
    text-align: center;
    color: #e63946;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.brands-slider {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.brand-item span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* ====================
   SERVICES SECTION
   ==================== */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 15px;
}

.section-desc {
    color: #666;
    font-size: 1rem;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e63946;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1d3557;
    margin-bottom: 12px;
}

.service-card > p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #555;
    font-size: 0.9rem;
}

.service-list i {
    color: #e63946;
    font-size: 0.8rem;
}

/* ====================
   WHY US SECTION
   ==================== */
.why-us-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.2rem;
    color: #1d3557;
    margin-bottom: 20px;
}

.why-us-content > p {
    color: #666;
    margin-bottom: 40px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: #e63946;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.why-text h4 {
    color: #1d3557;
    margin-bottom: 5px;
}

.why-text p {
    color: #666;
    font-size: 0.9rem;
}

.why-us-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #e63946;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ====================
   STATS SECTION
   ==================== */
.stats-section {
    padding: 60px 0;
    background: #1d3557;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    color: #a8dadc;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ====================
   BRAND SERVICES SECTION
   ==================== */
.brand-services-section {
    padding: 80px 0;
    background: #fff;
}

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

.brand-service-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    display: block;
}

.brand-service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.brand-service-logo {
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.brand-service-logo img {
    max-height: 50px;
    width: auto;
}

.brand-service-card h3 {
    color: #1d3557;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.brand-service-card > p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.brand-link {
    color: #e63946;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ====================
   AREAS SECTION
   ==================== */
.areas-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.area-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.area-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.area-card i {
    font-size: 2rem;
    color: #e63946;
    margin-bottom: 15px;
}

.area-card h4 {
    color: #1d3557;
    margin-bottom: 5px;
}

.area-card p {
    color: #666;
    font-size: 0.9rem;
}

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

/* ====================
   TESTIMONIALS SECTION
   ==================== */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info h4 {
    color: #1d3557;
    font-size: 1rem;
}

.author-info span {
    color: #666;
    font-size: 0.85rem;
}

/* ====================
   CTA SECTION
   ==================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ====================
   FAQ SECTION
   ==================== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1d3557;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.faq-question i {
    transition: transform 0.3s;
    color: #e63946;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

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

.faq-answer a {
    color: #e63946;
    font-weight: 600;
}

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

/* ====================
   BLOG SECTION
   ==================== */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

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

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: #e63946;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    color: #1d3557;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-content > p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-content a {
    color: #e63946;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ====================
   FOOTER
   ==================== */
.main-footer {
    background: #1d3557;
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

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

.footer-logo i {
    font-size: 2rem;
    color: #e63946;
}

.footer-logo h3 {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
}

.footer-logo span {
    font-size: 0.8rem;
    color: #e63946;
}

.footer-about > p {
    color: #a8dadc;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #e63946;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #a8dadc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #a8dadc;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #e63946;
    margin-top: 3px;
}

.footer-brands {
    background: #162d4a;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brands-content {
    text-align: center;
}

.footer-brands-content h4 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-brands-content > p {
    color: #a8dadc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-brands-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.brand-tag {
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #a8dadc;
}

.footer-bottom {
    background: #0f1f33;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #a8dadc;
    font-size: 0.85rem;
}

.footer-disclaimer {
    margin-top: 5px;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ====================
   WHATSAPP FLOAT
   ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ====================
   BACK TO TOP
   ==================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #e63946;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c1121f;
}

/* ====================
   RESPONSIVE
   ==================== */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 80px 30px 30px;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .brand-services-grid,
    .blog-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .experience-badge {
        left: 10px;
        bottom: 10px;
        padding: 15px;
    }

    .exp-number {
        font-size: 1.8rem;
    }
}

/* ====================
   BRANDS SECTION - GÜNCELLENMİŞ (Logosuz)
   ==================== */
.brands-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.brands-slider {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
    min-width: 110px;
}

.brand-item:hover {
    border-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-item i {
    font-size: 1.8rem;
    color: #e63946;
}

.brand-item span {
    font-size: 0.85rem;
    color: #1d3557;
    font-weight: 600;
}

/* ====================
   BRAND SERVICES - GÜNCELLENMİŞ (Logosuz)
   ==================== */
.brand-service-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
    display: block;
    text-align: center;
}

.brand-service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #e63946;
}

.brand-service-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.brand-service-card:hover .brand-service-icon {
    border-color: #e63946;
    background: #e63946;
}

.brand-service-icon i {
    font-size: 1.8rem;
    color: #e63946;
    transition: color 0.3s;
}

.brand-service-card:hover .brand-service-icon i {
    color: #fff;
}

.brand-service-card h3 {
    color: #1d3557;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.brand-service-card > p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ====================
   SAYFA ŞABLONU - İÇERİK SAYFALARI
   ==================== */
.page-header {
    background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
    background: #fff;
}

.page-content .container {
    max-width: 900px;
}

.page-content h2 {
    color: #1d3557;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e63946;
    display: inline-block;
}

.page-content h3 {
    color: #1d3557;
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.page-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.page-content ul li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
}

.page-content ul li::before {
    content: "✓";
    color: #e63946;
    font-weight: bold;
    margin-right: 10px;
}

.page-content strong {
    color: #1d3557;
}

.page-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid #e9ecef;
}

.page-cta h3 {
    color: #1d3557;
    margin-bottom: 15px;
}

.page-cta p {
    color: #666;
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.contact-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 2rem;
    color: #e63946;
    margin-bottom: 15px;
}

.contact-card h4 {
    color: #1d3557;
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    color: #666;
    font-size: 0.95rem;
}

.contact-card a:hover {
    color: #e63946;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-table th {
    background: #1d3557;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.price-table tr:hover td {
    background: #f8f9fa;
}

.price-table .price {
    color: #e63946;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-page .faq-grid {
    max-width: 100%;
    margin: 0;
}
