/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Header and Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand h1 {
    color: #0066cc;
    font-size: 1.5rem;
    margin: 0;
}

 .nav-brand a {
     text-decoration: none;
     color: inherit;
     display: inline-block;
 }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0066cc;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0066cc;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-image: url('images/beyazesya-servisi.png'), linear-gradient(135deg, rgba(10, 40, 80, 0.85) 0%, rgba(5, 30, 70, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 25, 60, 0.8) 0%, rgba(0, 15, 40, 0.85) 100%);
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0066cc;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Notice Section */
.notice {
    background: #fff3cd;
    border-bottom: 1px solid #ffeaa7;
    padding: 1rem 0;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #856404;
}

.notice-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
}

 .section-subtitle {
     text-align: center;
     max-width: 900px;
     margin: -1.75rem auto 2.25rem;
     color: #555;
     font-size: 1.1rem;
     line-height: 1.7;
 }

/* Advantages Section */
.advantages {
    background: #f8f9fa;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    font-weight: 500;
}

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

.step-item {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    line-height: 1;
    opacity: 0.8;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

 .districts-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
     gap: 0.75rem;
 }

 .district-chip {
     display: block;
     text-align: center;
     padding: 0.85rem 1rem;
     border-radius: 999px;
     border: 1px solid #e9ecef;
     background: #ffffff;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
 }

 .district-chip:hover {
     transform: translateY(-2px);
     border-color: rgba(0,102,204,0.35);
     box-shadow: 0 10px 22px rgba(0,102,204,0.10);
     color: #0066cc;
 }

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

 .service-area-card {
     display: block;
     text-decoration: none;
     color: inherit;
     background: white;
     border: 1px solid #e9ecef;
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 8px 22px rgba(0,0,0,0.06);
     transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
 }

 .service-area-card:hover {
     transform: translateY(-4px);
     border-color: rgba(0,102,204,0.35);
     box-shadow: 0 14px 30px rgba(0,102,204,0.12);
 }

 .service-area-image {
     position: relative;
     height: 170px;
     overflow: hidden;
 }

 .service-area-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transform: scale(1);
     transition: transform 0.35s ease;
     display: block;
 }

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

 .service-area-content {
     padding: 1.25rem 1.25rem 1.4rem;
 }

 .service-area-content h3 {
     color: #0066cc;
     margin-bottom: 0.5rem;
     font-size: 1.2rem;
 }

 .service-area-content p {
     color: #555;
     margin: 0;
     line-height: 1.6;
 }

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    border-color: #0066cc;
    box-shadow: 0 10px 25px rgba(0,102,204,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: #0066cc;
}

.service-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

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

/* Fault Form Section */
.fault-form-section {
    background: #f8f9fa;
}

.fault-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fault-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #0066cc;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-disclaimer {
    background: rgba(255,107,53,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ff6b35;
}

.footer-disclaimer p {
    color: #ff6b35;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #95a5a6;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text h3 {
    color: #0066cc;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.notice-box {
    background: #fff3cd;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-box i {
    color: #ff6b35;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.notice-box p {
    margin: 0;
    color: #856404;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Company Info */
.company-info {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 1.8rem;
    color: #0066cc;
}

.info-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.info-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

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

.contact-info h2 {
    color: #0066cc;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-text h3 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.notice-box {
    background: #fff3cd;
    border-left: 4px solid #ff6b35;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-box i {
    color: #ff6b35;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.notice-box h4 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.notice-box p {
    color: #856404;
    margin: 0;
}

.working-hours {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.working-hours h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.working-hours ul {
    list-style: none;
    padding: 0;
}

.working-hours li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.working-hours li:last-child {
    border-bottom: none;
}

.working-hours strong {
    color: #333;
}

.service-areas h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.service-areas > p {
    color: #555;
    margin-bottom: 1.5rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.area-item i {
    color: #0066cc;
    font-size: 0.9rem;
}

.contact-form-map {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #0066cc;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container h3 {
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-note {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-note i {
    color: #0066cc;
}

/* Quick Contact Section */
.quick-contact {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quick-contact-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-contact-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quick-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success {
    background: #25d366;
    color: white;
    text-decoration: none;
}

.btn-success:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    gap: 3rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-header {
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.blog-category {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-post-header h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.blog-post-content h3 {
    color: #0066cc;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.blog-post-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.blog-post-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.blog-post-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #555;
}

.blog-post-footer {
    padding: 2rem;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #e9ecef;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.tag:hover {
    background: #0066cc;
    color: white;
}

/* Services Detail */
.services-detail {
    padding: 60px 0;
}

.service-detail-item {
    margin-bottom: 4rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.service-detail-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.service-detail-header .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-header .service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-detail-header h2 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    color: #0066cc;
    font-size: 1.4rem;
    margin: 2.5rem 0 1.5rem;
}

.service-detail-content h4 {
    color: #0066cc;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.service-detail-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-detail-content li strong {
    color: #333;
}

.service-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #0066cc;
}

.service-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .step-item {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

     .service-areas-grid {
         grid-template-columns: 1fr;
     }
    
    .districts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .fault-form-container {
        padding: 2rem 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-detail-content {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-header {
        padding: 1.5rem;
    }
    
    .blog-post-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-footer {
        padding: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0066cc;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #004499;
    transform: translateY(-3px);
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fixed-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.fixed-cta i {
    font-size: 1.2rem;
}

.fixed-cta span {
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fixed-cta {
        bottom: 80px;
        padding: 12px 16px;
        border-radius: 25px;
    }
    
    .fixed-cta span {
        display: none;
    }
    
    .fixed-cta i {
        font-size: 1rem;
    }
}
/* Modern Fixed Buttons */
.modern-fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.modern-fixed-buttons .wp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.modern-fixed-buttons .wp-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.modern-fixed-buttons .wp-btn:hover::before {
    transform: scale(1);
}

.modern-fixed-buttons .wp-btn/* Modern Fixed Buttons *ra.modern-fixed-buttons {
 ad    position: fixed;
 ,     bottom: 20px;
 .m    right: 20px;on    display: fl
     flex-directione    gap: 15px;
    z-indexc     z-index: 00}

.modern-fixed-ite;
    background: linear-gradien0p    color: white;
    width: 60px;
    height: 60px;
    border-rnt    width: 60px;co    height: 60p      border-radiure    display: flex;
   px    align-items: ,     justify-content: ceon    font-size: 1.5rem;
    ec    box-shadow: 0 5pxsi    transition: all 0.3s ease;
    text-decorationpo    text-decoration: none;
  ns    position: relative;
       overflow: hidden;
io}

.modern-fixed-but: 0;
    content: "";
    position: absolutht    position: akg    top: 0;
    left: 25    left:       width: iu    height: 100ns    background:       border-radius: 50%;
    transform: sod    transform: scale(0rc    transition: transfo  }

.modern-fixed-buttons .wp-btn:hoxed-buttons .search-btn:hover {
    transform: tran}

.modern-fixed-buttonhadow ad    position: fixed;
 ,     bottom: 20px;
 .m    right: 20px;on    display: p ,     bottom: 20px;
 p: .m    right: 20px;       flex-directione    gap: 15px;
ba    z-indexc     z-index: 00}

.m d
.modern-fixed-ite;
    backs:     background: lfy    width: 60px;
    height: 60px;
    border-rn:     height: 60pon    border-rnt  as   px    align-items: ,     justify-content: ceon    font-size: 1.5rem;
    ec    bote    ec    box-shadow: 0 5pxsi    transition: all 0.3s ease;
    text-d;
    text-decorationpo    text-decoration: none;
  ns    pove  ns    position: relative;
       overflow: hra       overflow: hidden;
ichio}

.modern-fixed-but:od
.-co    content: "";
   m:    positi
}

.se    left: 25    left:       width: iu    height: 1-c    transform: sod    transform: scale(0rc    transition: transfo  }

.modern-fixed-buttons .wad
.modern-fixed-buttons .wp-btn:hoxed-buttons .search-btn:hover {
  

.    transform: tran}

.modern-fixed-buttonhadow ad    positiont-
.modern-fixed-buttolo ,     bottom: 20px;
 .m    right: 20px;on    dol .m    right: 20px;ea p: .m    right: 20px;       flex-directione    gap: 1 {ba    z-indexc     z-index: 00}

.m d
.modern-fixed-ite;
d 
.m d
.modern-fixed-ite;
    bpx;.mo      backs:     ba;
    height: 60px;
    border-rn:     height: ea    bnput:focus {
    ec    bote    ec    box-shadow: 0 5pxsi    transition: all 0.3s ease;
    text-d;
    text-decorationpo    text-decoer    text-d;
    text-deh-result-item {
    padding: 1rem;
    border-botto    tx solid  ns    pove  ns    position: relative;
       b       overflow: hra       overflow: h-iichio}

.modern-fixed-but:od
.-co    contenar
.modsul.-co    content: ""or   m:    positi
}

in}

.se    left;
   
.modern-fixed-buttons .wad
.modern-fixed-buttons .wp-btn:hoxed-buttons .search-btn:hover {
  

.    transform: tran}

.moive.modern-fixed-buttons .wp8p  

.    transform: tran}

.modern-fixed-buttonhadow ad    pos r
ght
.modern-fixed-butto   .modern-fixed-buttolo ,     bottom: 20px;n- .m    right: 20px;on    dol .m    righth:
.m d
.modern-fixed-ite;
d 
.m d
.modern-fixed-ite;
    bpx;.mo      backs:     ba;
    height: 60px;
    border-rn:     height: ea    rem.mo  d 
.

/* KVKK Info Footer */
.kvkk-info {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.kvkk-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kvkk-info a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Fixed CTA Buttons */
.fixed-cta-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fixed-cta-phone {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.fixed-cta-phone::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.fixed-cta-phone:hover::before {
    transform: scale(1);
}

.fixed-cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.fixed-cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.fixed-cta-whatsapp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.fixed-cta-whatsapp:hover::before {
    transform: scale(1);
}

.fixed-cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Company Information Section */
.company-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.company-info-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-info-card h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
}

.info-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}

.info-item strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.info-item br {
    display: none;
}

/* Warranty Info Section */
.warranty-info {
    margin-top: 30px;
    padding: 25px;
    background: #fff3cd;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

.warranty-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.warranty-info p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.warranty-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.warranty-info ul li {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 3px solid #f39c12;
    transition: all 0.3s ease;
}

.warranty-info ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.1);
}

.warranty-info ul li strong {
    color: #d32f2f;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.warranty-info em {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.9rem;
}

/* Spare Parts Section */
.spare-parts-section {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.spare-parts-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.spare-parts-section p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spare-parts-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.spare-parts-section ul li {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #28a745;
    transition: all 0.3s ease;
}

.spare-parts-section ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.1);
}

.spare-parts-section ul li strong {
    color: #1e7e34;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Guaranteed Service Section */
.guaranteed-service-section {
    margin-top: 30px;
    padding: 25px;
    background: #e8f5e8;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.guaranteed-service-section h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.guaranteed-service-section p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.guaranteed-service-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.guaranteed-service-section ul li {
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #27ae60;
    transition: all 0.3s ease;
}

.guaranteed-service-section ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.1);
}

.guaranteed-service-section ul li strong {
    color: #1e7e34;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Transparency and Security Policy Section */
.transparency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

.transparency-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.transparency-card h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.transparency-content {
    text-align: left;
}

.transparency-content p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.document-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.document-image {
    text-align: center;
    margin-bottom: 25px;
}

.document-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.document-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.document-content p {
    color: #34495e;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.document-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #34495e;
    font-size: 0.95rem;
}

.document-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-caption {
    color: white;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Zoom Icon */
.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.document-image:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon:hover {
    transform: scale(1.1);
}

.document-image {
    position: relative;
    overflow: hidden;
}

.document-image a {
    display: block;
    position: relative;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Page Header */
.transparency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

.transparency-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-top: 4px solid #e74c3c;
}

.transparency-card h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.transparency-content {
    text-align: left;
    line-height: 1.8;
}

.transparency-content p {
    color: #34495e;
    font-size: 1.1rem;
    margin-bottom: 0;
    padding: 25px;
    background: #fef9e7;
    border-left: 4px solid #f39c12;
    border-radius: 8px;
    position: relative;
}

.transparency-content p::before {
    content: "⚠️";
    position: absolute;
    left: -10px;
    top: 20px;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .company-info-section {
        padding: 60px 0;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .document-card {
        padding: 25px 20px;
    }
    
    .document-image {
        margin-bottom: 20px;
    }
    
    .document-content h3 {
        font-size: 1.3rem;
    }
    
    .document-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .document-features li {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .document-features li i {
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .company-info-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .company-info-card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .company-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .warranty-info {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .warranty-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .warranty-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .warranty-info ul li {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .warranty-info ul li strong {
        font-size: 0.9rem;
    }
    
    .spare-parts-section {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .spare-parts-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .spare-parts-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .spare-parts-section ul li {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .spare-parts-section ul li strong {
        font-size: 0.9rem;
    }
    
    .guaranteed-service-section {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .guaranteed-service-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .guaranteed-service-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .guaranteed-service-section ul li {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .guaranteed-service-section ul li strong {
        font-size: 0.9rem;
    }
    
    .transparency-section {
        padding: 60px 0;
    }
    
    .transparency-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .transparency-card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .transparency-content p {
        font-size: 1rem;
        padding: 20px;
    }
    
    .transparency-content p::before {
        left: -5px;
        top: 15px;
        font-size: 1rem;
    }
    
    .fixed-cta-container {
        bottom: 80px;
        left: 15px;
    }
    
    .fixed-cta-phone,
    .fixed-cta-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Lightbox Mobile Responsive */
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-height: 80vh;
        border-radius: 8px;
    }
    
    .lightbox-close {
        top: -35px;
        font-size: 1.5rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .zoom-icon {
        width: 35px;
        height: 35px;
        top: 8px;
        right: 8px;
    }
    
    .zoom-icon i {
        font-size: 0.9rem;
    }
}
