@import url('base.css?v=4');
/* Global Hide for Mobile Elements */
.swipe-hint, .swipe-hint-left { display: none; }
/* V2 Additions: Images & Animations */
.hero-image-wrapper {
    background: none; /* Remove old bg */
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Remove the old gradient overlay pseudo-element */
.hero-image-wrapper::before {
    display: none !important;
}

.hero-real-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* --- ESKİ TASARIM (Yorum Satırına Alındı) ---
.hero-stats {
    bottom: -30px;
    left: 20px;
}
/* --- YENİ TASARIM (Zarif ve Ortalı 3'lü) --- */
.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 95%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 119, 182, 0.15);
    display: flex;
    justify-content: space-around;
    padding: 15px 5px;
    z-index: 10;
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
}

.hero-stats .stat i {
    font-size: 1.6rem;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    margin: -35px auto 5px auto;
    border: 3px solid white;
    box-shadow: 0 8px 15px rgba(0, 119, 182, 0.2);
}

.hero-stats .stat-info {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.2;
}

.hero-stats .stat-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Service Card Images */
.service-img-box {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.v2-card:hover .service-img-box img {
    transform: scale(1.1);
}

.service-icon.float-icon {
    position: relative;
    margin: -55px auto 15px auto;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
    border: 3px solid white;
    background: white; /* Make sure it has a background if not already */
    color: var(--primary); /* from base style, but let's ensure it's correct */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.v2-card {
    padding-top: 20px;
    position: relative;
}

/* Animations */
.float-anim {
    animation: float 6s ease-in-out infinite;
}
.float-anim-reverse {
    animation: float 5s ease-in-out infinite reverse;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.bounce-hover:hover {
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 119, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
}

.pulse-bg {
    animation: pulseBg 4s infinite alternate;
}
@keyframes pulseBg {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}

/* WhatsApp Balloon */
.wa-balloon-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: balloon-float 8s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
}

@keyframes balloon-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    25% { transform: translateY(-15px) translateX(5px) rotate(2deg); }
    50% { transform: translateY(5px) translateX(-5px) rotate(-1deg); }
    75% { transform: translateY(-10px) translateX(3px) rotate(1deg); }
}

.wa-balloon {
    width: 70px;
    height: 80px;
    background: #25D366;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.1), 0 15px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: 0.3s;
}

.wa-balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #25D366;
}

.wa-balloon:hover {
    transform: scale(1.1);
    background: #1eb956;
}

.wa-string {
    width: 2px;
    height: 50px;
    background: rgba(0,0,0,0.2);
    margin-top: 5px;
    border-radius: 2px;
    transform-origin: top;
    animation: string-sway 3s ease-in-out infinite;
}

@keyframes string-sway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Premium Mobile & Tablet Experience */

.desktop-only { display: inline-flex; }
.tablet-only { display: none; }
.mobile-app-nav { display: none; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: 0.3s;
}
.mobile-menu-btn:hover { color: var(--primary); transform: scale(1.1); }

.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease-in-out;
    transform: translateY(-20px);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 25px; right: 25px;
    background: none; border: none;
    font-size: 2.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: 0.3s;
}
.mobile-menu-close:hover { transform: rotate(90deg); color: #E94560; }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
}
.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    transition: 0.3s;
}
.mobile-nav-links a:hover { color: var(--primary); transform: scale(1.05); }
.mt-4 { margin-top: 20px; font-size: 1.2rem !important; }

/* About Us Section */
.about-section {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    margin-top: 15px;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image img.main-radius {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-contact {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 119, 182, 0.2);
    border-left: 5px solid var(--primary);
}

.floating-contact i {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(0, 119, 182, 0.1);
    padding: 12px;
    border-radius: 50%;
}

.floating-contact span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    display: block;
}

.floating-contact strong {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 800;
}

/* Why Us Section */
.why-us {
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Expertise / Accordion Section */
.expertise-section {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-text h2 {
    font-size: 2.6rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.expertise-text .subtitle {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 700;
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 25px;
    background: #fafafa;
}

.accordion-item.active .accordion-body {
    padding-bottom: 20px;
}

.accordion-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 15px;
}

.accordion-body ul {
    margin-top: 10px;
    margin-left: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.accordion-body ul li {
    margin-bottom: 8px;
}

.expertise-image .img-wrapper {
    position: relative;
}

.expertise-image img {
    width: 100%;
    border-radius: 20px;
}

.badge-overlay {
    position: absolute;
    top: 30px;
    left: -25px;
    background: linear-gradient(135deg, #FF6B6B 0%, #E94560 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
    border: 4px solid white;
}

.badge-overlay i {
    font-size: 2rem;
}

.badge-overlay span {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.why-us-text .subtitle {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.features-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.features-list i {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(0, 119, 182, 0.1);
    padding: 15px;
    border-radius: 15px;
    flex-shrink: 0;
}

.features-list h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.features-list p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.why-us-image {
    position: relative;
    border-radius: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05) 0%, rgba(0, 119, 182, 0.05) 100%);
}

.why-us-image img.main-radius {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
    border: 8px solid white;
}

.experience-badge .number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .nav-links, .desktop-only { display: none !important; }
    .mobile-menu-btn { display: block; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-buttons { justify-content: center; }
    .hero-image-wrapper { display: block; position: relative; margin-top: 20px; margin-bottom: 30px; height: auto !important; }
    
    .hero-stats {
        position: absolute !important;
        bottom: -20px !important; 
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        width: 95% !important;
        max-width: 420px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255,255,255,0.5) !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(0,119,182,0.15) !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 10px 5px 5px 5px !important;
        z-index: 10 !important;
        gap: 2px !important;
        box-sizing: border-box !important;
        transform: none !important;
    }
    .hero-stats .stat { 
        display: flex !important;
        flex-direction: column !important; 
        align-items: center !important; 
        justify-content: flex-start !important;
        gap: 2px !important; 
        text-align: center !important;
        width: 33% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .hero-stats .stat-info {
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .hero-stats .stat i { 
        flex-shrink: 0 !important;
        font-size: 1rem !important; 
        padding: 6px !important; 
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important; 
        color: white !important; 
        margin: -25px auto 2px auto !important; 
        border-radius: 50% !important;
        border: 2px solid white !important; 
        box-shadow: 0 4px 8px rgba(0, 119, 182, 0.2) !important; 
        position: static !important;
        transform: none !important;
    }
    .hero-stats .stat-number { font-size: 0.95rem !important; color: var(--primary-dark) !important; font-weight: 800 !important; display: block !important; margin-top: 0 !important; line-height: 1.1 !important; }
    .hero-stats .stat-text { font-size: 0.8rem !important; font-weight: 600 !important; display: block !important; margin: 0 !important; line-height: 1.1 !important; }
    
    .why-us-content, .about-content, .expertise-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .about-actions { justify-content: center; }
    .features-list li { flex-direction: column; align-items: center; text-align: center; }
    .why-us-image, .about-image, .expertise-image { margin-top: 20px; }
    .expertise-text { text-align: left; } /* Keep accordion text aligned left even on mobile */
    .experience-badge { width: 120px; height: 120px; left: 50%; bottom: -30px; transform: translateX(-50%); }
    .experience-badge .number { font-size: 1.8rem; }
    .floating-contact { left: 50%; bottom: -20px; right: auto; transform: translateX(-50%); width: auto; min-width: 200px; max-width: 90%; justify-content: center; padding: 12px 15px; border-radius: 15px; }
    .floating-contact i { font-size: 1.5rem; padding: 8px; }
    .floating-contact span { font-size: 0.75rem; }
    .floating-contact strong { font-size: 1rem; }
    
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    /* Hide top nav items, hamburger, and floating whatsapp to replace with bottom bar */
    .mobile-menu-btn, .mobile-menu-overlay, .wa-balloon-container { display: none !important; }
    
    body { padding-bottom: 100px; } /* Space for bottom nav */
    
    .contact-banner {
        padding-bottom: 100px !important;
    }
    
    .mobile-app-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 3000;
        padding-bottom: env(safe-area-inset-bottom, 10px);
        box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    }
    
    .mobile-app-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding: 12px 0;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 600;
        transition: 0.3s;
    }
    .mobile-app-nav a i {
        font-size: 1.5rem;
        margin-bottom: 4px;
        color: var(--primary-dark);
        transition: 0.3s;
    }
    .mobile-app-nav a.active, .mobile-app-nav a:hover, .mobile-app-nav a.active i, .mobile-app-nav a:hover i {
        color: var(--primary);
    }
    .mobile-app-nav a[href*="wa.me"] i { color: #25D366; }

    /* Vertical stacking for services on mobile (easier to discover than horizontal swipe without cues) */
    .services-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 20px;
    }
    .v2-card {
        width: 100%;
        margin-bottom: 0;
    }

    h1 { font-size: 2.5rem !important; line-height: 1.2; }
    h2 { font-size: 2rem !important; }
    p { font-size: 1.05rem; }
    
    /* Mobile Performance & Static Look */
    .hero-bg, .animated-bg, .pulse-bg { display: none !important; }
    .hero-image-wrapper, .hero-stats, .float-anim, .float-anim-reverse { animation: none !important; }
    
    .hero { padding-top: 75px; min-height: auto; padding-bottom: 20px; background: var(--bg-light); }
    .hero-real-img { max-height: 350px; border-radius: 20px; }
    
    .btn { padding: 14px 24px; font-size: 1rem; width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; gap: 15px; width: 100%; }
    
    .v2-card { padding: 30px 20px 20px 20px; margin-bottom: 20px; }
    .service-img-box { height: 180px; }
    
    .section-padding { padding: 60px 0; }
    
    .contact-banner h2 { font-size: 1.8rem; }
    .contact-actions { flex-direction: column; gap: 15px; }
}

/* ==========================================================================
   V3: MODERN TABBED SERVICES
   ========================================================================== */
.tabbed-services {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.tabs-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn i {
    font-size: 1.3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

.tab-btn.active i {
    color: white;
}

/* Tab Content */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Re-use Expertise Styles for inside the tab */
.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.expertise-text {
    padding-right: 20px;
}

.expertise-image .img-wrapper {
    position: relative;
    border-radius: 20px;
    z-index: 1;
}

.expertise-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Badge Overlay */
.badge-overlay {
    position: absolute;
    top: auto;
    bottom: -25px;
    left: -25px;
    background: linear-gradient(135deg, #e63946 0%, #ff5252 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
    z-index: 2;
}

.badge-overlay i {
    font-size: 2.5rem;
}

.badge-overlay span {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

/* Accordion Specific Overrides */
.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.accordion-header i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.accordion-item.active .accordion-body {
    padding: 0 20px 20px 20px;
}

.accordion-body p, .accordion-body ul {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-body ul {
    padding-left: 20px;
    margin-top: 10px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .expertise-text {
        padding-right: 0;
        order: 2;
    }
    .expertise-image {
        order: 1;
    }
    .badge-overlay {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {

    .service-tabs-container {
        position: sticky;
        top: 65px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 10px 15px -5px rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        margin: 0 0 20px 0;
        padding-top: 10px;
    }

    .service-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 15px 12px 15px;
        margin-bottom: 0;
    }

    .tab-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px 5px;
        font-size: 0.85rem;
        border-radius: 12px;
        justify-content: center;
        text-align: center;
        transition: all 0.3s ease;
    }

    .tab-btn:not(.active) {
        background: transparent;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .tab-btn i {
        font-size: 1.4rem;
        margin-right: 0;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }
}

/* Lightbox Styles */
.expertise-image img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.expertise-image img:hover {
    transform: scale(1.02);
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Social Links in Footer */
.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-btn:hover {
    transform: translateY(-5px);
    background: white;
}

.social-btn.instagram:hover {
    color: #E1306C;
}

.social-btn.facebook:hover {
    color: #1877F2;
}

