/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* CSS Custom Properties - Updated Palette from Logo */
:root {
    --primary-color: #00A9E0;   /* Bright Blue from F & D */
    --secondary-color: #1A2954; /* Dark Navy from N */
    --accent-color: #00C4FF;    /* A more vibrant cyan for highlights */
    --light-accent: #f0f8ff;    /* Very light blue background */
    --text-dark: #1A2954;
    --text-light: #5a6482;      /* Lighter, softer text color */
    --gradient-primary: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    --shadow-light: 0 4px 12px rgba(0, 169, 224, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 169, 224, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif; /* New Modern Font */
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 70px;
}

/* Navbar Styles */
.navbar {
    background: white;
    box-shadow: var(--shadow-light);
    height: 70px;
    transition: all 0.3s ease;
    padding: 0 1rem;
}

.navbar-brand img {
    height: 45px;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    /* Force custom bars to avoid data-URL issues */
    background-image: none !important;
    width: 1.6em;
    height: 1.6em;
    position: relative;
}

.navbar-toggler-icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2.5px;
    background-color: var(--secondary-color); /* bar color */
    border-radius: 2px;
    box-shadow: 0 -6px 0 0 var(--secondary-color), 0 6px 0 0 var(--secondary-color);
}

/* Improve toggler button visibility */
.navbar-toggler {
    border: 1px solid rgba(0,0,0,0.4); /* Siyah çerçeve görünümü */
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
}

.navbar-toggler:hover {
    background-color: var(--light-accent);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(26,41,84,0.25);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Section */
#hero {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero-badge {
    background: var(--light-accent);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    cursor: default;
    user-select: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: white;
    text-decoration: none;
}

.trust-title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-badges-hero {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.trust-badge-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
}

.trust-badge-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.tech-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 169, 224, 0.3);
}

.tech-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tech-item h5 {
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

/* Projects Section - Redesigned to Vertical Timeline */
.projects-section {
    padding: 80px 0;
    background: #fff;
    overflow-x: hidden;
}

.projects-container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
}

.projects-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--light-accent);
    border-radius: 2px;
}

.project-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.project-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.project-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.project-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 5px solid var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
}

.project-item:nth-child(odd)::after {
    right: -12px;
}

.project-item:nth-child(even)::after {
    left: -12px;
}

.project-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    cursor: default;
}

.project-circle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.project-circle h5 {
    font-weight: 600;
    margin: 0;
    font-size: 1.25rem;
    word-break: break-word;
}

/* Services Section */
.services-section {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.service-card {
    background: #fff;
    color: var(--text-dark);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--light-accent);
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    width: auto;
    transition: all 0.3s ease;
    align-self: center;
}

.product-card:hover .product-logo {
    transform: scale(1.05);
}

.product-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.product-card ul {
    margin-bottom: 20px;
}

.product-card ul li {
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-card .btn {
    margin-top: auto;
    align-self: center;
    min-width: 140px;
}

/* Stats Section */
.stats-section {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

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

/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-logo-container {
    background: var(--light-accent);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.about-logo {
    max-width: 570px;
    height: auto;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.about-section h2 {
    color: var(--text-dark);
    font-weight: 700;
}

.about-section p, .about-section ul li {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0;
}

.contact-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info h4 {
    color: white;
    font-weight: 600;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 196, 255, 0.25);
}

.contact-form .btn {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 196, 255, 0.3);
}

/* Footer */
.footer {
    background: #111a36; /* Darker than secondary for contrast */
    color: rgba(255,255,255,0.8);
    padding: 30px 0;
    text-align: center;
}

/* Carousel Styles */
.service-carousel-container, .product-carousel-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-50%);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 169, 224, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.indicator:hover {
    background: rgba(0, 169, 224, 0.6);
    transform: scale(1.1);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.2);
}

.service-slide, .product-slide {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease-in-out;
}

.service-slide.active, .product-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideInFromRight 0.6s ease-in-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Touch-friendly carousel improvements */
.service-carousel-container, .product-carousel-container {
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

/* Mobile carousel improvements */
@media (max-width: 768px) {
    .service-carousel-container, .product-carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev { left: 5px; }
    .carousel-next { right: 5px; }
    
    .carousel-indicators {
        gap: 8px;
        margin-top: 20px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .service-carousel-container, .product-carousel-container {
        padding: 0 30px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Responsive Design */
@media (max-width: 991px) {
    #about .row { text-align: center; }
    .about-section .list-unstyled { display: inline-block; text-align: left; }
    .about-logo-container { min-height: 250px; margin-top: 20px; }
    .about-logo { max-width: 300px; }
    
    /* Tablet improvements */
    .service-card, .product-card {
        margin-bottom: 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .tech-item {
        padding: 20px 15px;
    }
}

@media (max-width: 767px) {
    .navbar { height: auto; }
    .hero-title { font-size: 2.5rem; }
    .stat-number { font-size: 2rem; }
    .services-section, .products-section, .about-section, .contact-section, .projects-section { padding: 40px 0; }
    .stats-section { padding: 30px 0; }
    
    /* Responsive Timeline */
    .projects-container::before { left: 30px; transform: translateX(0); }
    .project-item { width: 100%; padding-left: 70px; padding-right: 20px; }
    .project-item:nth-child(odd), .project-item:nth-child(even) { left: 0; text-align: left; }
    .project-item::after { left: 18px; }
    .project-circle { width: 150px; height: 150px; }
    
    /* Mobile navigation improvements */
    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 10px 20px !important;
        margin: 5px 0;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(0, 169, 224, 0.1);
    }
    
    /* Mobile hero improvements */
    .hero-content {
        text-align: center;
    }
    
    .trust-badges-hero {
        justify-content: center;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
    }
    
    .tech-item {
        padding: 25px 20px;
    }
    
    /* Mobile Services Section Improvements */
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .service-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Mobile Products Section Improvements */
    .product-card {
        padding: 25px 20px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .product-logo {
        height: 50px;
        margin-bottom: 15px;
    }
    
    .product-card h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .product-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .product-card ul li {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .product-card .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    /* Mobile contact form improvements */
    .contact-form .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile stats improvements */
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Mobil yatay kaydırmalı kart listesi - genel kullanım */
@media (max-width: 767px) {
    .card-list-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        scroll-snap-type: x mandatory;
        gap: 0;
        padding: 0 16px;
    }

    .card-list-container::-webkit-scrollbar { display: none; }
    .card-list-container { -ms-overflow-style: none; scrollbar-width: none; }

    .item-card {
        flex: 0 0 85%;
        max-width: 85%;
        box-sizing: border-box;
        margin-right: 20px;
        scroll-snap-align: start;
        display: inline-block;
    }

    .card-list-container .item-card:last-child { margin-right: 8px; }

    /* Mobilde okları gizle (mevcut karuseller için) */
    .arrow-left,
    .arrow-right,
    .carousel-prev,
    .carousel-next {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-badge { font-size: 0.9rem; padding: 8px 16px; }
    h2.fw-bold { font-size: 1.9rem; }
    .btn-custom, .btn-lg { padding: 12px 20px; font-size: 1rem; }
    #hero .d-flex { flex-direction: column; }
    #hero .btn { width: 100%; }
    
    /* Extra small mobile Services */
    .service-card { 
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .service-card i {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Extra small mobile Products */
    .product-card { 
        padding: 20px 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    
    .product-logo { 
        height: 45px;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-card p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .product-card ul li {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .product-card .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 110px;
    }
    
    /* Improved mobile carousel buttons */
    .carousel-btn { 
        width: 35px; 
        height: 35px; 
        font-size: 0.9rem;
    }
    .carousel-prev { left: 0; }
    .carousel-next { right: 0; }
    
    /* Better mobile spacing */
    .service-carousel-container, .product-carousel-container {
        padding: 0 25px;
    }
    
    /* Mobile-friendly indicators */
    .carousel-indicators {
        gap: 6px;
        margin-top: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Touch improvements */
    .service-card, .product-card {
        touch-action: manipulation;
    }
    
    /* Section spacing for small screens */
    .services-section, .products-section {
        padding: 30px 0;
    }
    
    /* Better mobile section titles */
    .services-section h2, .products-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .services-section .lead, .products-section .lead {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Mobile-specific improvements for better visibility */
@media (max-width: 480px) {
    /* Ultra small screens */
    .service-card, .product-card {
        padding: 18px 12px;
        margin-bottom: 12px;
    }
    
    .service-card i {
        font-size: 2rem;
    }
    
    .product-logo {
        height: 40px;
    }
    
    .service-card h4, .product-card h4 {
        font-size: 1rem;
    }
    
    .service-card p, .product-card p {
        font-size: 0.85rem;
    }
    
    .product-card ul li {
        font-size: 0.8rem;
    }
    
    .product-card .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    /* Section titles for very small screens */
    .services-section h2, .products-section h2 {
        font-size: 1.6rem;
    }
    
    .services-section .lead, .products-section .lead {
        font-size: 0.95rem;
    }
}

/* Enhanced mobile touch targets */
@media (max-width: 768px) {
    .service-card, .product-card {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    /* Better mobile card shadows */
    .service-card {
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .product-card {
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    /* Mobile card hover effects */
    .service-card:active, .product-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Utility */
.btn-loading { display: none; }
.btn-loading.d-none { display: none; }
.btn-loading:not(.d-none) { display: inline-flex; align-items: center; }
.counter-value { display: inline-block; }
.custom-alert { animation: slideInRight 0.3s ease-in-out; }
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
[role="button"] { cursor: pointer; }
