/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Header ve Navigasyon */
.navbar {
    background: var(--white);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.4)), url('../images/s.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Hizmetler Section */
.services {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Neden Biz Section */
.why-us {
    padding: 5rem 5%;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* İletişim Section */
.contact {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: #666;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Responsive Tasarım */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

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

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero p {
        font-size: 1rem;
    }
}

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

.service-card, .feature {
    animation: fadeIn 0.5s ease-out;
}

/* Sayfa Başlığı */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Hizmetler Sayfası */
.services-detailed {
    padding: 5rem 5%;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary-color);
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-top: 1rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li:before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Hakkımızda Sayfası */
.about-content {
    padding: 5rem 5%;
}

.about-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-section ul {
    list-style: none;
    margin-top: 1rem;
}

.about-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-section ul li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.team {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary-color);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Blog Sayfası */
.blog-content {
    padding: 5rem 5%;
}

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

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

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

.post-image {
    height: 200px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--secondary-color);
}

.post-content {
    padding: 1.5rem;
}

.post-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

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

.read-more {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 5px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a.active {
    background: var(--secondary-color);
    color: var(--white);
}

.pagination a:hover:not(.active) {
    background: var(--light-bg);
}

.pagination a.next {
    width: auto;
    padding: 0 1rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-image {
        margin-bottom: 1rem;
    }

    .service-content ul li {
        text-align: left;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Telefon ve WhatsApp Stilleri */
.phone-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--secondary-color);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    background: #25D366 !important;
    transition: background 0.3s ease !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Hizmet Bölgeleri */
.service-areas {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.areas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-list {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.area-list h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.area-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.area-list li:last-child {
    border-bottom: none;
}

/* Çalışma Saatleri */
.working-hours {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
}

.hours-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hours-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hours-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hours-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.hours-item.emergency {
    background: rgba(231,76,60,0.2);
}

/* Müşteri Yorumları */
.testimonials {
    padding: 4rem 2rem;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #3498db;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 50px;
    height: 50px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    margin: 0;
    color: #2c3e50;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Sertifikalar */
.certificates {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.certificate-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.certificate-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.certificate-card p {
    color: #666;
}

/* Öncesi Sonrası */
.before-after {
    padding: 4rem 2rem;
    background-color: #fff;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.before, .after {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
}

.before h3, .after h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.before img, .after img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.before img:hover, .after img:hover {
    transform: scale(1.05);
}

.comparison-card p {
    text-align: center;
    color: #666;
    margin: 0;
    padding: 0.5rem 0;
    font-weight: 500;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .testimonials {
        padding: 2rem 2vw;
    }
    .testimonials-grid {
        gap: 1rem;
    }
    .testimonial-card {
        padding: 1rem;
    }
    .testimonial-content p {
        font-size: 0.95rem;
    }
    .testimonial-author h4 {
        font-size: 1rem;
    }
    .areas-container {
        gap: 1rem;
    }
    .area-list ul {
        padding-left: 1rem;
    }
    .certificates {
        padding: 2rem 2vw;
    }
    .certificates-grid {
        gap: 1rem;
    }
    .certificate-card {
        padding: 1rem;
    }
    .certificate-card h3 {
        font-size: 1rem;
    }
    .before-after {
        padding: 2rem 2vw;
    }
    .before-after-grid {
        gap: 1rem;
    }
    .comparison-card p {
        font-size: 0.95rem;
    }
}

/* Hızlı İletişim Butonu */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

/* Hızlı İletişim Formu */
.quick-contact {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
}

.quick-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.quick-contact-btn:hover {
    transform: scale(1.1);
}

.quick-contact-form {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    width: 300px;
    display: none;
}

.quick-contact-form.active {
    display: block;
}

.quick-contact-form h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.quick-contact-form input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quick-contact-form button {
    width: 100%;
}

/* Blog Styles */
.blog {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

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

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

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.blog-excerpt.expanded {
    max-height: none;
}

.blog-excerpt p {
    margin-bottom: 1rem;
}

.read-more-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.read-more-btn:hover {
    background: #2980b9;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 180px;
    }
}

/* Manşet Slider */
.main-slider {
    width: 100%;
    max-width: 100vw;
    margin: 70px 0 0 0;
    position: relative;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(44,62,80,0.08);
}
.slider-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
}
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.7s;
    opacity: 0;
    z-index: 1;
}
.slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}
.slide img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 0;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(44,62,80,0.6);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
    transition: background 0.2s;
}
.slider-btn:hover {
    background: rgba(44,62,80,0.9);
}
.slider-btn.prev {
    left: 20px;
}
.slider-btn.next {
    right: 20px;
}
.slider-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 0 4px 24px rgba(44,62,80,0.7), 0 1px 8px #000;
    text-align: center;
    z-index: 10;
    width: 90vw;
    max-width: 1000px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .slider-wrapper, .slide img {
        height: 160px;
        width: 100%;
    }
    .slider-slogan {
        font-size: 1.1rem;
        width: 90vw;
        max-width: 90vw;
        padding: 0 4vw;
    }
    .main-slider {
        max-width: 100vw;
        border-radius: 0;
        margin-top: 50px;
    }
    .big-social-media {
        gap: 1rem;
        margin: 1rem 0 1rem 0;
    }
    .big-social-link {
        font-size: 1.5rem;
    }
    .services {
        padding: 2rem 2vw;
    }
    .service-grid {
        gap: 1rem;
    }
    .navbar {
        padding: 0.5rem 2vw;
    }
}

/* Büyük Sosyal Medya İkonları */
.big-social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2rem 0 1.5rem 0;
}

.big-social-link {
    font-size: 2.8rem;
    color: var(--secondary-color);
    transition: color 0.3s, transform 0.3s;
}

.big-social-link:hover {
    color: var(--accent-color);
    transform: scale(1.15);
}

.floating-call-btn {
    display: none;
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    background: var(--accent-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(44,62,80,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: background 0.2s, transform 0.2s;
}
.floating-call-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.08);
}
@media (max-width: 768px) {
    .floating-call-btn {
        display: flex;
    }
} 