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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

/* Top Header */
.top-header {
    background-color: #f5f5f5;
    border-bottom: 3px solid #FFD700;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-brand h2 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.header-phone {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #FFD700;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

strong {
    color: #FFD700;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #FFD700;
    color: #000000;
}

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

.btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000000;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.trust-chips {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.chip {
    background-color: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #111111;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: #e0e0e0;
}

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

.service-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Quick Solutions Section */
.quick-solutions {
    padding: 80px 0;
    background-color: #000000;
}

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

.quick-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

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

.emergency-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #333;
    transition: border-color 0.3s ease;
}

.emergency-item:hover {
    border-color: #FFD700;
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.emergency-item h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    background-color: #000000;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-highlights {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #FFD700;
}

.coverage-highlights h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.coverage-list {
    list-style: none;
    margin-top: 1rem;
}

.coverage-list li {
    padding: 0.5rem 0;
    color: #FFD700;
    position: relative;
    padding-left: 1.5rem;
}

.coverage-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

.map-placeholder {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #333;
}

.map-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.map-btn {
    background-color: #FFD700;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.map-btn:hover {
    background-color: #FFC107;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #111111;
}

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

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

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

/* References Section */
.references {
    padding: 80px 0;
    background-color: #000000;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    background-color: #1a1a1a;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 2px solid #333;
    transition: border-color 0.3s ease;
}

.stat-item:hover {
    border-color: #FFD700;
}

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

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-preview h3 {
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #FFD700;
    font-weight: 600;
}

.instagram-showcase {
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #333;
    text-align: center;
}

.instagram-header {
    margin-bottom: 2rem;
}

.instagram-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instagram-header h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.instagram-header p {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.instagram-preview {
    margin: 2rem 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.instagram-item:hover .work-image {
    transform: scale(1.05);
}

.instagram-item:hover .work-overlay {
    transform: translateY(0);
}

.work-overlay h4 {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.work-overlay p {
    font-size: 0.85rem;
    margin: 0;
    color: #e0e0e0;
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.instagram-placeholder:hover {
    transform: scale(1.05);
}

.instagram-placeholder span {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instagram-placeholder p {
    font-size: 0.8rem;
    margin: 0;
}



.instagram-note {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #000000;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #1a1a1a;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.faq-item h3 {
    background-color: #222;
    padding: 1.5rem;
    color: #FFD700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0;
    position: relative;
}

.faq-item h3:hover,
.faq-item h3:focus {
    background-color: #333;
    outline: 2px solid #FFD700;
    outline-offset: -2px;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item h3.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 1.5rem;
    margin: 0;
    display: none;
}

.faq-item h3.active + p {
    display: block;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFC107;
}

.contact-cta {
    text-align: center;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #FFD700;
}

.contact-cta h3 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.footer-services h4,
.footer-contact h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

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

.footer-services li {
    padding: 0.25rem 0;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #FFD700;
    text-decoration: none;
}

.footer-seo {
    background-color: #111;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-seo p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    line-height: 1.4;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-chips {
        justify-content: center;
    }
    
    .chip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .references-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .instagram-showcase {
        padding: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .work-overlay {
        padding: 0.75rem;
    }
    
    .work-overlay h4 {
        font-size: 0.9rem;
    }
    
    .work-overlay p {
        font-size: 0.75rem;
    }
    
    .testimonial-cards {
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-services,
    .footer-contact {
        margin-bottom: 2rem;
    }
    
    .map-placeholder {
        padding: 2rem;
    }
    
    .contact-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-card,
    .emergency-item,
    .why-item {
        padding: 1.5rem;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
}

/* Mobile Header Responsive - Consolidated */
@media (max-width: 768px) {
    .header-brand h2 {
        font-size: 1.2rem;
    }
    
    .header-phone {
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Instagram Grid Mobile */
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .work-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .work-overlay h4 {
        font-size: 1rem;
    }
    
    .work-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .top-header {
        padding: 8px 0;
    }
    
    .header-brand h2 {
        font-size: 1.1rem;
    }
    
    .header-phone {
        font-size: 0.9rem;
    }
}
/* Instagram Grid Updates */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.instagram-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #1a1a1a;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

.instagram-item:hover .work-image {
    transform: scale(1.05);
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.work-overlay h4 {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.work-overlay p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin: 0;
}

/* Testimonial Cards Update */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.testimonial-author {
    color: #FFD700;
    font-weight: 600;
    font-size: 0.9rem;
}


/* Performance optimization - will-change for animated elements */
.btn,
.service-card,
.emergency-item,
.stat-item,
.testimonial-card,
.instagram-item {
    will-change: transform;
}

.btn:hover,
.service-card:hover,
.emergency-item:hover,
.stat-item:hover,
.testimonial-card:hover,
.instagram-item:hover {
    will-change: auto;
}

/* Work Gallery Button - Professional Theme Colors */
.btn-work-gallery {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 50%, #000000 100%);
    color: #000000;
    border: 2px solid #FFD700;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-work-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-work-gallery:hover {
    background: linear-gradient(135deg, #000000 0%, #FFD700 50%, #FFFFFF 100%);
    color: #000000;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-work-gallery:hover::before {
    left: 100%;
}

.btn-work-gallery:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Instagram button styles removed - no longer needed */
/* Accessibility improvements */
.btn:focus,
.map-btn:focus,
.contact-link:focus,
.faq-item h3:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .top-header,
    .cta-buttons,
    .btn,
    .instagram-showcase {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    h1, h2, h3 {
        color: #000;
    }
}

/* Service Card Icon Fixes */
.service-card:nth-child(4) .service-icon {
    font-size: 0;
}

.service-card:nth-child(4) .service-icon::before {
    content: "💡";
    font-size: 3rem;
}
/* Sticky WhatsApp Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    min-width: 60px;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    font-size: 24px;
    line-height: 1;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobile: Sadece icon göster */
@media (max-width: 768px) {
    .whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        min-width: auto;
    }
    
    .whatsapp-text {
        display: none;
    }
    .whatsapp-icon {
        font-size: 28px;
    }
    
    .whatsapp-sticky {
        bottom: 15px;
        right: 15px;
    }
}

/* Desktop: Icon + Text göster */
@media (min-width: 769px) {
    .whatsapp-btn {
        padding: 15px 25px;
    }
    
    .whatsapp-text {
        display: block;
    }
}

/* Hover animasyonu için ek efekt */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.whatsapp-btn:hover::before {
    transform: translateX(100%);
}

/* Z-index ayarlaması - header'dan yüksek olsun */
.whatsapp-sticky {
    z-index: 10000;
}
/* WhatsApp Button - Clean Version */
.whatsapp-sticky-clean {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.whatsapp-btn-clean {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    gap: 8px;
    border: none;
    outline: none;
}

.whatsapp-btn-clean:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn-clean:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-clean {
    font-size: 24px;
    line-height: 1;
    display: block;
}

.whatsapp-text-clean {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: block;
}

/* Mobile: Sadece icon göster */
@media (max-width: 768px) {
    .whatsapp-btn-clean {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
    }
    
    .whatsapp-text-clean {
        display: none;
    }
    
    .whatsapp-icon-clean {
        font-size: 28px;
    }
    
    .whatsapp-sticky-clean {
        bottom: 15px;
        right: 15px;
    }
}

/* Desktop: Icon + Text göster */
@media (min-width: 769px) {
    .whatsapp-btn-clean {
        padding: 15px 25px;
        border-radius: 30px;
    }
    
    .whatsapp-text-clean {
        display: block;
    }
    
    .whatsapp-icon-clean {
        font-size: 20px;
    }
}
/* WhatsApp Icon Fix - PNG Version */
.whatsapp-icon {
    font-size: 0;
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url('https://img.icons8.com/?size=100&id=84937&format=png&color=FFFFFF');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 769px) {
    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

/* Remove old CSS icon fix */
.whatsapp-icon-clean {
    font-size: 0;
}

.whatsapp-icon-clean::before {
    content: "";
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url('https://img.icons8.com/?size=100&id=84937&format=png&color=FFFFFF');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .whatsapp-icon-clean::before {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 769px) {
    .whatsapp-icon-clean::before {
        width: 20px;
        height: 20px;
    }
}