/* 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 .logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-brand .logo-img:hover {
    transform: scale(1.02);
}

 .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;
}

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

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

/* 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%);
}

.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;
}

/* Service Areas Preview */
.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;
}

/* Districts Grid */
.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 Regions */
.service-regions {
    background: #f8f9fa;
}

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

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-header .section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 10px;
}

.google-rating-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.rating-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-brand {
    display: flex;
    align-items: center;
}

.google-logo {
    height: 30px;
    width: auto;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-count {
    color: #6c757d;
    font-size: 0.95rem;
}

.rating-buttons {
    display: flex;
    gap: 12px;
}

.rating-buttons .btn-outline {
    background: transparent;
    border: 2px solid #dee2e6;
    color: #495057;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rating-buttons .btn-outline:hover {
    border-color: #007bff;
    color: #007bff;
}

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

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details h4 {
    margin: 0;
    font-size: 1rem;
    color: #1a1a1a;
}

.reviewer-location {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 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-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.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-independence {
    background: rgba(255, 165, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #ffa500;
}

.footer-independence p {
    color: #ffa500;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.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;
}

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

.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;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.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: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.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;
}

.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;
}

/* Contact Form */
.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;
}

.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;
}

/* Map */
.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;
}

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

.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: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:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

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

.faq-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-question i {
    font-size: 1.5rem;
    color: #007bff;
    flex-shrink: 0;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer p {
    margin: 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 36px;
}

/* Company Info 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;
}

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

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

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

.company-details .info-item p {
    color: #555;
    margin: 0;
}

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

.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;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .advantages-grid,
    .service-areas-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .step-item {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .district-chip {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .google-rating-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .rating-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .rating-info {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .rating-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding-left: 0;
        font-size: 0.9rem;
    }
    
    .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;
    }
    
    .warranty-info {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .warranty-info h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .fixed-cta-container {
        bottom: 20px;
        left: 15px;
    }
    
    .fixed-cta-phone,
    .fixed-cta-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .map-container {
        padding: 1rem;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
}