/* ===== CSS RESET VE TEMEL STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* ===== CONTAINER VE LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HERO SLIDER BÖLÜMÜ ===== */
.hero-slider {
    position: relative;
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow: visible;
}

/* Mobil için: tek slide */
.slide {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.slide::before {
    content: '🔍 Detaylar için tıklayın';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(46, 125, 50, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.slide:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 50px rgba(46, 125, 50, 0.25);
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    transform: scale(1.05);
    /* Performans optimizasyonları */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Bahçe temizliği görseli için özel boyutlandırma */
.slide[href="bahce-temizligi-ot-bicme.html"] .slide-image img {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.1);
    min-height: 100%;
}

.slide[href="bahce-temizligi-ot-bicme"]:hover .slide-image img {
    transform: scale(1.15);
}

.slide:hover .slide-image img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        transparent 0%, 
        rgba(0, 0, 0, 0.3) 30%, 
        rgba(0, 0, 0, 0.7) 100%
    );
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: background 0.3s ease;
}

.slide:hover .slide-overlay {
    background: linear-gradient(
        transparent 0%, 
        rgba(46, 125, 50, 0.4) 30%, 
        rgba(46, 125, 50, 0.8) 100%
    );
}

.slide-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-description {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    opacity: 0.9;
    font-weight: 400;
    margin: 0 0 1rem 0;
}

/* Slide CTA Elements */
.slide-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.75rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    min-width: 150px;
    margin-bottom: 0.5rem;
}

.slide:hover .cta-button {
    background: linear-gradient(135deg, #388e3c, #4caf50);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
    letter-spacing: 0.8px;
}

.cta-hint {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 15px;
    font-size: 0.65rem;
    opacity: 0.9;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    animation: none;
    text-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 0.3rem;
    display: inline-block;
}

.slider-nav {
    margin-top: 2rem;
}

/* ===== SERVICES INFO ===== */
.services-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 40vh;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.info-card {
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(76, 175, 80, 0.2);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 24px 24px 0 0;
}

.info-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(76, 175, 80, 0.5),
        0 0 20px rgba(76, 175, 80, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4caf50, #66bb6a);
    border-radius: 2px;
}

.info-card p {
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.about-section h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 3rem;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #388e3c);
    border-radius: 2px;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #388e3c);
    border-radius: 12px 12px 0 0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* ===== REGIONAL SERVICES ===== */
.regional-services {
    padding: 4rem 0;
    background: #ffffff;
}

.regional-services h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 3rem;
    position: relative;
}

.regional-services h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #388e3c);
    border-radius: 2px;
}

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

.region-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2e7d32;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

.region-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 1rem;
}

.region-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.region-card strong {
    color: #2e7d32;
    font-weight: 600;
}

/* ===== SPECIAL SERVICES ===== */
.special-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
}

.special-services h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 3rem;
    position: relative;
}

.special-services h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #2e7d32, #388e3c);
    border-radius: 2px;
}

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

.service-detail {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2e7d32;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

.service-detail h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.service-detail li {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 0.5rem;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

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

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 520px;
    width: 100%;
    max-height: 95vh;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.4s ease;
    border: 3px solid #2e7d32;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #666;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.popup-close:hover {
    background: white;
    color: #2e7d32;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.popup-header {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
    color: white;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="popup-dots" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23popup-dots)"/></svg>') repeat;
    opacity: 0.3;
}

.popup-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Countdown Container */
.countdown-container {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

#countdown-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffeb3b;
    text-shadow: 
        0 0 10px rgba(255, 235, 59, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: glow-timer 1.5s ease-in-out infinite alternate;
    letter-spacing: 1px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 235, 59, 0.3);
}

.countdown-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
    color: #e8f5e8;
    margin-top: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes glow-timer {
    from {
        text-shadow: 
            0 0 5px rgba(255, 235, 59, 0.5),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 235, 59, 0.8),
            0 0 30px rgba(255, 235, 59, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes pulse-urgent {
    0%, 100% {
        transform: scale(1);
        color: #ffeb3b;
    }
    50% {
        transform: scale(1.05);
        color: #ff5722;
        text-shadow: 
            0 0 15px rgba(255, 87, 34, 0.8),
            0 0 25px rgba(255, 87, 34, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

.popup-body {
    padding: 2rem;
}

.popup-features {
    margin-bottom: 2rem;
}

.popup-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-radius: 10px;
    border-left: 4px solid #2e7d32;
    transition: transform 0.3s ease;
}

.popup-feature:hover {
    transform: translateX(5px);
}

.popup-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.popup-feature span:last-child {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

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

.popup-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
}

.popup-btn-call {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.popup-btn-call:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.popup-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.popup-btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVE TASARIM ===== */

/* ===== RESPONSIVE TASARIM ===== */

/* Tablet için (768px ve üzeri) */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-slider {
        padding: 3rem 0;
    }
    
    .slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-content: center;
    }
    
    .slide {
        max-width: none;
    }
    
    .slide-title {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 0.75rem;
        padding: 0.7rem 1.4rem;
    }
    
    .cta-hint {
        font-size: 0.65rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .info-card {
        padding: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .popup-content {
        max-width: 600px;
    }
    
    .popup-buttons {
        flex-direction: row;
    }
}

/* Masaüstü için (1024px ve üzeri) */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-slider {
        padding: 4rem 0;
    }
    
    .slider {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .slide {
        min-height: 500px;
    }
    
    .slide-overlay {
        padding: 2rem;
    }
    
    .slide-title {
        font-size: 1.7rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .services-info {
        padding: 5rem 0;
    }
    
    .info-card {
        padding: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .regional-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 400px;
    }
}

/* Büyük ekranlar için (1200px ve üzeri) */
@media (min-width: 1200px) {
    .hero-slider {
        padding: 5rem 0;
    }
    
    .slider {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .slide {
        min-height: 520px;
    }
    
    .slide-overlay {
        padding: 2.5rem;
    }
    
    .regional-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.slide:focus-visible {
    outline: 2px solid #2e7d32;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .slide,
    .feature,
    .info-card,
    .region-card,
    .service-detail {
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

@media print {
    .slide {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .slide-overlay {
        background: rgba(0, 0, 0, 0.9) !important;
    }
    
    .map-container {
        display: none;
    }
}

@media (prefers-contrast: high) {
    .slide-overlay {
        background: rgba(0, 0, 0, 0.95) !important;
    }
}

@media (prefers-color-scheme: dark) {
    .services-info {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    }
    
    .info-card {
        background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
        box-shadow: 
            0 20px 50px rgba(0, 0, 0, 0.5),
            0 0 0 1px rgba(76, 175, 80, 0.3);
    }
    
    .info-card:hover {
        box-shadow: 
            0 30px 70px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(76, 175, 80, 0.6),
            0 0 25px rgba(76, 175, 80, 0.4);
    }
}

/* Mobile CTA Button Styles */
@media (max-width: 768px) {
    /* Mobil ve tablet'te CTA butonlarını her zaman göster */
    .slide .cta-button {
        background: linear-gradient(135deg, #388e3c, #4caf50) !important;
        transform: translateY(-2px) scale(1.02) !important;
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5) !important;
        letter-spacing: 0.8px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .slide-cta {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Mobilde hover efektini devre dışı bırak */
    .slide:hover .cta-button {
        transform: translateY(-2px) scale(1.02) !important;
    }
    
    /* Mobilde scroll sırasında "Detaylar için tıklayın" göster */
    .slide.in-view::before {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* ===== REVIEWS SECTION - MODERN DESIGN ===== */
.reviews-section {
    padding: 5rem 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(129, 199, 132, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f8f9fa 50%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="review-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(76,175,80,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23review-pattern)"/></svg>') repeat;
    opacity: 0.4;
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reviews-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    text-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
    letter-spacing: -0.02em;
}

.reviews-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #81c784, #a5d6a7);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 1rem 2rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    display: inline-flex;
    animation: rating-float 3s ease-in-out infinite;
}

@keyframes rating-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.stars {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #ffc107, #ffeb3b, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.2rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    filter: drop-shadow(0 3px 6px rgba(255, 193, 7, 0.3));
    animation: star-glow 2s ease-in-out infinite alternate;
}

@keyframes star-glow {
    from { filter: drop-shadow(0 3px 6px rgba(255, 193, 7, 0.3)); }
    to { filter: drop-shadow(0 6px 12px rgba(255, 193, 7, 0.5)); }
}

.rating-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2e7d32, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.review-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(76, 175, 80, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(76, 175, 80, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transform-style: preserve-3d;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4caf50, #81c784, #a5d6a7, #4caf50);
    background-size: 200% 100%;
    animation: gradient-flow 3s ease infinite;
    border-radius: 24px 24px 0 0;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(76, 175, 80, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 30px rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.3);
}

.review-card:hover::after {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviewer-name {
    font-weight: 800;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #2e7d32, #4caf50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.reviewer-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    transition: width 0.5s ease;
    border-radius: 1px;
}

.review-card:hover .reviewer-name::after {
    width: 100%;
}

.review-location {
    font-size: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    background: rgba(76, 175, 80, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    backdrop-filter: blur(10px);
}

.review-stars {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
    transform-origin: center;
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 1rem;
    background: rgba(248, 249, 250, 0.6);
    border-radius: 16px;
    border-left: 4px solid #4caf50;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #4caf50;
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    opacity: 0.2;
    z-index: -1;
    transform: rotate(-5deg);
}

.review-text::after {
    content: '"';
    font-size: 4rem;
    font-family: Georgia, serif;
    color: #4caf50;
    position: absolute;
    bottom: -2rem;
    right: 0.5rem;
    opacity: 0.2;
    z-index: -1;
    transform: rotate(5deg);
}

.review-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: right;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.review-date::before {
    content: '📅';
    margin-right: 0.5rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.reviews-cta .cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 50%, #388e3c 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 35px rgba(76, 175, 80, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reviews-cta .cta-btn::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;
}

.reviews-cta .cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(76, 175, 80, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 0 30px rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #45a049 0%, #388e3c 50%, #2e7d32 100%);
}

.reviews-cta .cta-btn:hover::before {
    left: 100%;
}

/* Cemetery Reviews - Modern Mezarlık Yorumları */
.cemetery-reviews {
    padding: 5rem 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(160, 82, 45, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f7f7f7 50%, #f3f1ed 100%);
    position: relative;
    overflow: hidden;
}

.cemetery-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cemetery-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="rgba(139,69,19,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23cemetery-pattern)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.cemetery-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.cemetery-review-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid rgba(139, 69, 19, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(139, 69, 19, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transform-style: preserve-3d;
}

.cemetery-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b4513, #a0522d, #cd853f, #d2b48c, #8b4513);
    background-size: 200% 100%;
    animation: cemetery-gradient 4s ease infinite;
    border-radius: 20px 20px 0 0;
}

@keyframes cemetery-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cemetery-review-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cemetery-review-card:hover {
    transform: translateY(-12px) rotateX(3deg) scale(1.02);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(139, 69, 19, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 0 25px rgba(139, 69, 19, 0.2);
    border-color: rgba(139, 69, 19, 0.2);
}

.cemetery-review-card:hover::after {
    opacity: 1;
}

/* Cemetery Review Content Styling */
.cemetery-review-card .reviewer-name {
    background: linear-gradient(135deg, #8b4513, #a0522d, #cd853f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2rem;
}

.cemetery-review-card .reviewer-name::after {
    background: linear-gradient(90deg, #8b4513, #a0522d);
}

.cemetery-review-card .review-location {
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    color: #5d4e37;
}

.cemetery-review-card .review-text {
    background: rgba(250, 248, 245, 0.7);
    border-left: 4px solid #8b4513;
    color: #2c2420;
}

.cemetery-review-card .review-text::before,
.cemetery-review-card .review-text::after {
    color: #8b4513;
}

.cemetery-review-card .review-date {
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
    color: #6d5a47;
}

.cemetery-review-card .review-date::before {
    content: '🕊️';
}

/* Responsive Reviews - Modern Mobile Design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .cemetery-reviews {
        padding: 3rem 0;
    }
    
    .reviews-header {
        margin-bottom: 3rem;
    }
    
    .reviews-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }
    
    .reviews-header h2::after {
        width: 80px;
        height: 3px;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .stars {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
    
    .rating-text {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .cemetery-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .review-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .cemetery-review-card {
        padding: 2rem;
        border-radius: 18px;
    }
    
    .review-header {
        margin-bottom: 1.5rem;
    }
    
    .reviewer-name {
        font-size: 1.2rem;
    }
    
    .review-location {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
    
    .review-stars {
        font-size: 1.2rem;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .review-text::before {
        font-size: 3rem;
        top: -0.3rem;
        left: 0.3rem;
    }
    
    .review-text::after {
        font-size: 3rem;
        bottom: -1.5rem;
        right: 0.3rem;
    }
    
    .review-date {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
    
    .reviews-cta {
        margin-top: 2.5rem;
    }
    
    .reviews-cta .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        border-radius: 50px;
    }
    
    /* Mobile Hover Effects - Touch Friendly */
    .review-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .cemetery-review-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

/* Tablet Screens - CTA Butonları Her Zaman Görünür */
@media (max-width: 1024px) and (min-width: 769px) {
    .slide .cta-button {
        background: linear-gradient(135deg, #388e3c, #4caf50) !important;
        transform: translateY(-2px) scale(1.02) !important;
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5) !important;
        letter-spacing: 0.8px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .slide-cta {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Tablet'te de scroll efekti */
    .slide.in-view::before {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .reviews-section,
    .cemetery-reviews {
        padding: 2.5rem 0;
    }
    
    .reviews-header h2 {
        font-size: 1.6rem;
    }
    
    .rating-summary {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
    
    .review-card,
    .cemetery-review-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .reviewer-name {
        font-size: 1.1rem;
    }
    
    .review-text {
        font-size: 0.95rem;
        padding: 0.7rem;
    }
    
    .reviews-cta .cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* Küçük mobil ekranlarda da CTA butonlarını göster */
    .slide .cta-button {
        background: linear-gradient(135deg, #388e3c, #4caf50) !important;
        transform: translateY(-2px) scale(1.02) !important;
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5) !important;
        letter-spacing: 0.6px !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.7rem !important;
        padding: 0.6rem 1.2rem !important;
    }
    
    .slide-cta {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        margin-top: 0.8rem !important;
    }
    
    .cta-hint {
        font-size: 0.6rem !important;
        padding: 0.25rem 0.7rem !important;
    }
    
    /* Küçük mobilde de scroll efekti */
    .slide.in-view::before {
        opacity: 1 !important;
        transform: translateY(0) !important;
        font-size: 0.65rem !important;
        padding: 0.3rem 0.7rem !important;
    }
    

    
    .armut-widget-container span {
        width: 250px !important;
        max-width: 90% !important;
    }
}

/* Large Screens - Enhanced Effects */
@media (min-width: 1200px) {
    .reviews-section,
    .cemetery-reviews {
        padding: 6rem 0;
    }
    
    .reviews-header {
        margin-bottom: 5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 3rem;
    }
    
    .cemetery-reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }
    
    .review-card {
        padding: 3rem;
    }
    
    .cemetery-review-card {
        padding: 2.5rem;
    }
    
    .review-card:hover {
        transform: translateY(-20px) rotateX(8deg) scale(1.03);
    }
    
    .cemetery-review-card:hover {
        transform: translateY(-15px) rotateX(5deg) scale(1.02);
    }
}

/* ===== BLOG SECTION STYLES ===== */

.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8ff 100%);
    position: relative;
}

.blog-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 800;
}

.blog-section-subtitle {
    font-size: 1.1rem;
    color: #2e7d32;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-main-card {
    background: linear-gradient(135deg, #fff 0%, #f8fff8 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(76, 175, 80, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.blog-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #66bb6a, #81c784);
}

.blog-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 24px rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.3);
}

.blog-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(76, 175, 80, 0.3));
}

.blog-main-card h3 {
    font-size: 1.8rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-main-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-cta {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.blog-main-card:hover .blog-card-cta {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.blog-featured-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-featured-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #4caf50;
    position: relative;
}

.blog-featured-card:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.blog-featured-card h4 {
    color: #1b5e20;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.blog-featured-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Mobile Blog Cards */
@media (max-width: 768px) {
    .blog-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-main-card {
        padding: 2rem 1.5rem;
    }
    
    .blog-featured-articles {
        gap: 1rem;
    }
    
    .blog-featured-card {
        padding: 1.5rem;
    }
}

.blog-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin-top: 0.5rem;
}

.blog-link-btn:hover {
    background: linear-gradient(135deg, #388e3c 0%, #4caf50 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white !important;
}

/* ===== ARMUT PROFILE SECTION STYLES ===== */

.armut-profile-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    border-top: 3px solid #6cb745;
    border-bottom: 3px solid #6cb745;
    position: relative;
    overflow: hidden;
}

.armut-profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%236cb745" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%236cb745" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%236cb745" opacity="0.1"/><circle cx="70" cy="30" r="1.5" fill="%236cb745" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.armut-profile-content {
    position: relative;
    z-index: 1;
}

.armut-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.armut-badge {
    flex-shrink: 0;
}

.armut-badge img {
    filter: drop-shadow(0 4px 12px rgba(107, 183, 69, 0.3));
    transition: transform 0.3s ease;
}

.armut-badge img:hover {
    transform: scale(1.05);
}

.armut-info h2 {
    font-size: 2.2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    font-weight: 700;
}

.armut-info p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

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

.armut-feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.armut-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6cb745, #5ba037);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.armut-feature:hover::before {
    transform: scaleX(1);
}

.armut-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(107, 183, 69, 0.2);
    border-color: #6cb745;
}

.armut-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.armut-feature h3 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.armut-feature p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.armut-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.armut-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #6cb745, #5ba037);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(107, 183, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.armut-profile-btn:hover {
    background: linear-gradient(135deg, #5ba037, #4a8c2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 183, 69, 0.4);
    color: white;
}

.armut-widget-showcase {
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.armut-widget-showcase:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(107, 183, 69, 0.15);
    border-color: #6cb745;
}

.armut-widget-showcase span {
    max-width: 100%;
}

.armut-widget-showcase img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.armut-widget-showcase:hover img {
    transform: scale(1.02);
}

/* Armut Mobile Responsive */
@media (max-width: 768px) {
    .armut-profile-section {
        padding: 3rem 0;
    }
    
    .armut-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .armut-badge img {
        width: 100px;
    }
    
    .armut-info h2 {
        font-size: 1.8rem;
    }
    
    .armut-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .armut-feature {
        padding: 1.5rem;
    }
    
    .armut-profile-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .armut-widget-showcase {
        padding: 1rem;
    }
    
    .armut-widget-showcase span {
        width: 250px !important;
        max-width: 90% !important;
    }
}

/* ===== SERVICE PAGES STYLES ===== */

/* Service Hero Sections */
.service-hero {
    padding: 4rem 0 6rem 0;
    position: relative;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

/* Villa Hero - Purple */
.villa-hero {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 50%, #ba68c8 100%);
}

/* Plaza Hero - Green */
.plaza-hero {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
}

/* AVM Hero - Red */
.avm-hero {
    background: linear-gradient(135deg, #c62828 0%, #e53935 50%, #ef5350 100%);
}

/* Restaurant Hero - Orange */
.restaurant-hero {
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 50%, #ffb74d 100%);
}

/* Hospital Hero - Light Blue */
.hospital-hero {
    background: linear-gradient(135deg, #0277bd 0%, #03a9f4 50%, #4fc3f7 100%);
}

/* School Hero - Purple */
.school-hero {
    background: linear-gradient(135deg, #7b1fa2 0%, #9c27b0 50%, #ba68c8 100%);
}

.service-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
}

.service-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    margin-right: 0.5rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Service Overview */
.service-overview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

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

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Service Details */
.service-details {
    padding: 4rem 0;
    background: white;
}

.service-details h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.location-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

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

.location-card h3 {
    font-size: 1.3rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.location-card li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Service Pricing */
.service-pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
}

.service-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #4caf50;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 1.2rem;
    color: #4caf50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: #e8f5e8;
    border-radius: 8px;
    display: inline-block;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    color: white;
}

/* Service CTA */
.service-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.cta-btn.primary {
    background: white;
    color: #2e7d32;
}

.cta-btn.primary:hover {
    background: #f1f8e9;
    transform: translateY(-2px);
    color: #1b5e20;
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #2e7d32;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 0 4rem 0;
        min-height: 400px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-subtitle {
        font-size: 1.1rem;
    }

    .service-stats {
        gap: 1rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .overview-content h2 {
        font-size: 2rem;
    }

    .service-details h2,
    .service-pricing h2 {
        font-size: 2rem;
    }

    .location-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 2rem 0 3rem 0;
        min-height: 350px;
    }

    .service-title {
        font-size: 1.8rem;
    }

    .service-subtitle {
        font-size: 1rem;
    }

    .stat-item {
        min-width: 90px;
        padding: 0.6rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .location-card {
        padding: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-btn {
        min-width: 200px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Specialized services section (for homepage) */
.specialized-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specialized-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

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

.specialized-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #4caf50;
}

.specialized-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.specialized-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.specialized-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.specialized-header h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.specialized-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.specialized-content h4 {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialized-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.specialized-content li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.specialized-content li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.specialized-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.specialized-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.price-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4caf50;
}

.specialized-btn {
    display: block;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.specialized-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    color: white;
}

.specialized-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specialized-cta h3 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.specialized-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Commercial services section (for homepage) */
.commercial-services {
    padding: 4rem 0;
    background: white;
}

.commercial-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.commercial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #4caf50;
}

.commercial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.commercial-header {
    margin-bottom: 1.5rem;
}

.commercial-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.commercial-header h3 {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.commercial-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.commercial-content h4 {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.commercial-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.commercial-content li {
    padding: 0.4rem 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.commercial-content li::before {
    content: "🏢";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.commercial-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.commercial-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-align: center;
}

.commercial-btn {
    display: block;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.commercial-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    color: white;
}

.commercial-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
    border-radius: 20px;
}

.commercial-cta h3 {
    font-size: 2rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 700;
}

.commercial-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive for specialized and commercial sections */
@media (max-width: 768px) {
    .specialized-services,
    .commercial-services {
        padding: 3rem 0;
    }

    .specialized-services h2,
    .commercial-services h2 {
        font-size: 2rem;
    }

    .specialized-grid,
    .commercial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .specialized-card,
    .commercial-card {
        padding: 1.5rem;
    }

    .specialized-cta,
    .commercial-cta {
        padding: 2rem 1rem;
    }

    .specialized-cta h3,
    .commercial-cta h3 {
        font-size: 1.6rem;
    }

    .specialized-cta-buttons,
    .commercial-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}