/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Blog Page Enhancements */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.sticky-top {
    position: sticky;
    top: 2rem;
    z-index: 1020;
}

.card {
    transition: all 0.3s ease;
}

.badge {
    font-size: 0.75rem;
    font-weight: 500;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
}

.social-share .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-share .btn:hover {
    transform: translateY(-2px);
}

/* Header Styles */
.header-section {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.search-form {
    min-width: 300px;
}

.search-input {
    border: 2px solid #e0e0e0;
    border-right: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.search-input:focus {
    border-color: #007bff;
    box-shadow: none;
}

.search-btn {
    border: 2px solid #e0e0e0;
    border-left: none;
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
}

.search-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: #007bff;
    text-decoration: none;
}

.nav-icon i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.nav-text {
    font-size: 0.7rem;
}

/* Hero Section */
.hero-section {
    background: transparent;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    background: transparent;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    flex: 1;
    color: #333;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #666;
}

.hero-keywords {
    margin-bottom: 2rem;
}

.keyword-tag {
    display: inline-block;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 20px auto 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        padding: 0 3%;
        height: 350px;
    }
    
    .hero-image {
        max-width: 75%;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        height: auto;
        padding: 2rem 3%;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 1.5rem 2%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 90%;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 1rem;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        max-width: 95%;
        margin-top: 1rem;
    }
    
    .keyword-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-container {
        padding: 0.5rem;
    }
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-date-badge {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.date-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.title-line1, .title-line2 {
    display: block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-stroke: 2px white;
    -webkit-text-stroke: 2px white;
}

.hero-offers {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.offer-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-header {
    margin-bottom: 1rem;
}

.offer-condition {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.offer-condition-sub {
    display: block;
    font-size: 0.7rem;
    color: #888;
}

.offer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.offer-discount {
    font-size: 2rem;
    font-weight: 900;
    color: #E74C3C;
    line-height: 1;
}

.offer-type {
    font-size: 0.9rem;
    color: #333;
    font-weight: 700;
    margin-top: 0.2rem;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 2rem;
}

.hero-nav-next {
    right: 2rem;
}

.hero-bottom {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem 2rem;
    text-align: center;
}

.hero-disclaimer {
    color: white;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-weight: bold;
}

.feature-icon.orange {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
}

.feature-icon.blue {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
}

.feature-icon.green {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
}

.feature-number {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.feature-label {
    font-size: 0.7rem;
    font-weight: 600;
}

.feature-text {
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
}

/* Services Info */
.services-info {
    background: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.service-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-info-item i {
    font-size: 1.2rem;
}

/* Featured Products Slider */
.featured-products .carousel-control-prev,
.featured-products .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,123,255,0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid #007bff;
    transition: all 0.3s ease;
}

.featured-products .carousel-control-prev {
    left: -25px;
}

.featured-products .carousel-control-next {
    right: -25px;
}

.featured-products .carousel-control-prev:hover,
.featured-products .carousel-control-next:hover {
    background: #007bff;
    transform: translateY(-50%) scale(1.1);
}

.featured-products .carousel-control-prev-icon,
.featured-products .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: invert(1);
}

.featured-products .carousel-control-prev:hover .carousel-control-prev-icon,
.featured-products .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}

#featuredProductsCarousel {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 768px) {
    #featuredProductsCarousel {
        padding: 0 30px;
    }
    
    .featured-products .carousel-control-prev {
        left: -15px;
    }
    
    .featured-products .carousel-control-next {
        right: -15px;
    }
}

/* Modern Product Cards */
.modern-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff6b35;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.bg-success {
    background: #28a745;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: white !important;
    color: #333 !important;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.product-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.85rem;
}

.rating-count {
    font-size: 0.8rem;
    color: #666;
}

.offer-info {
    margin-bottom: 16px;
}

.offer-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
    margin: 0;
    text-align: center;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.btn-offer {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
}

/* Product Cards - Legacy Support */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-price {
    margin: 1rem 0;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #E74C3C;
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .modern-product-card {
        margin-bottom: 20px;
        height: 280px;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-img {
        height: 180px;
    }
    
    .product-details {
        padding: 15px;
    }
}

/* Professional Login Modal Styles */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.modal-dialog {
    max-width: 450px;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem 2rem 2rem;
    border: none;
    position: relative;
}

.modal-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.modal-title i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

#authTabs {
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 0.3rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

#authTabs .nav-link {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: none;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#authTabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

#authTabs .nav-link:hover::before {
    left: 100%;
}

#authTabs .nav-link.active {
    background: rgba(255,255,255,0.25);
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.modal-body {
    padding: 2.5rem 2rem;
    background: #ffffff;
}

.tab-content {
    position: relative;
}

.tab-pane {
    animation: fadeInUp 0.5s ease-out;
}

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

/* Professional Form Styles */
.modal .form-control {
    border-radius: 12px;
    border: 2px solid #f1f3f4;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    background: #fafbfc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.modal .form-control:focus {
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(0,0,0,0.05);
    transform: translateY(-1px);
}

.modal .form-control::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.modal .input-group-text {
    background: #fafbfc;
    border: 2px solid #f1f3f4;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.modal .input-group:focus-within .input-group-text {
    background: #ffffff;
    border-color: #667eea;
    color: #667eea;
}

.modal .input-group .form-control {
    border-left: none;
    border-radius: 0 12px 12px 0;
}

/* Professional Button Styles */
.modal .btn {
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
}

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

.modal .btn:hover::before {
    left: 100%;
}

.modal .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal .btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.modal .btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.modal .btn-success:hover {
    background: linear-gradient(135deg, #0f766e 0%, #22c55e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
}

/* Form Labels and Text */
.modal .text-center h5 {
    color: #374151;
    font-weight: 600;
    margin-bottom: 2rem;
}

.modal .text-muted {
    color: #6b7280 !important;
}

.modal .text-muted a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.modal .text-muted a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Close Button */
.modal .btn-close {
    background-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Modal Responsive Design */
@media (max-width: 576px) {
    .modal-dialog {
        max-width: 95%;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-title i {
        font-size: 1.8rem;
    }
    
    #authTabs .nav-link {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .modal .btn {
        padding: 0.9rem 1.5rem;
    }
}

/* General Responsive Design */
@media (max-width: 768px) {
    .search-form {
        min-width: 200px;
        margin: 1rem 0;
    }
    
    .nav-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-offers {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .offer-card {
        min-width: 250px;
    }
    
    .hero-nav {
        display: none;
    }
    
    .hero-disclaimer {
        font-size: 0.7rem;
        padding: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .offer-card {
        min-width: 200px;
        padding: 1rem 0.5rem;
    }
    
    .offer-discount {
        font-size: 1.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 60px;
    text-align: center;
}

.mobile-nav-item:hover {
    color: #007bff;
    text-decoration: none;
    transform: translateY(-2px);
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-item span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Tekliflerim özel stili - beyaz arka plan */
.mobile-nav-offers {
    background: #ffffff;
    color: #007bff !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.mobile-nav-offers:hover {
    background: #f8f9ff;
    color: #0056b3 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
}

.mobile-nav-offers i {
    color: #007bff;
}

/* Dropdown için özel stiller */
.mobile-nav-item.dropdown {
    position: relative;
}

.mobile-nav-item.dropdown .mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 11px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 60px;
    text-align: center;
}

.mobile-nav-link:hover {
    color: #007bff;
    text-decoration: none;
    transform: translateY(-2px);
    background: #f8f9fa;
}

.mobile-nav-link:hover i {
    color: #007bff;
}

.mobile-nav-link i {
    font-size: 20px;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-link span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.mobile-nav-item.dropdown:hover .mobile-dropdown {
    display: block;
}

.mobile-dropdown {
    bottom: 100%;
    margin-bottom: 10px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
}

.mobile-dropdown .dropdown-item {
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: block;
    color: #333;
    text-decoration: none;
}

.mobile-dropdown .dropdown-item:hover {
    background: #f8f9ff;
    color: #007bff;
    transform: translateX(4px);
}

/* Desktop Dropdown Hover Styles */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.3s ease-in-out;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-nav .dropdown-item:hover {
    background: #f8f9fa;
    color: #007bff;
    border-left-color: #007bff;
    padding-left: 1.75rem;
}

.navbar-nav .dropdown-header {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem 0.25rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ana sayfa için özel hover efekti */
.mobile-nav-item:first-child:hover {
    color: #28a745;
}

.mobile-nav-item:first-child:hover i {
    color: #28a745;
}

/* Arama için özel hover efekti */
.mobile-nav-item:nth-child(2):hover {
    color: #ffc107;
}

.mobile-nav-item:nth-child(2):hover i {
    color: #ffc107;
}

/* Menü için özel hover efekti */
.mobile-nav-item:last-child:hover {
    color: #6f42c1;
}

.mobile-nav-item:last-child:hover i {
    color: #6f42c1;
}

/* Aktif sayfa için stil */
.mobile-nav-item.active {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.mobile-nav-item.active i {
    color: #007bff;
}

/* Responsive iyileştirmeler */
@media (max-width: 375px) {
    .mobile-nav-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .mobile-nav-item i {
        font-size: 18px;
    }
    
    .mobile-nav-item span {
        font-size: 9px;
    }
}

/* Ana içerik için padding ekleme */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 80px;
    }
}

/* Sektör Kategorileri */
.sector-categories {
    background: #f8f9fa;
}

.sector-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.sector-card:hover::before {
    left: 100%;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
}

.sector-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sector-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.sector-card:hover .sector-icon::before {
    transform: scale(1);
}

.sector-icon i {
    font-size: 2rem;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.sector-card:hover .sector-icon i {
    color: white;
    transform: scale(1.1);
}

.sector-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.sector-card:hover .sector-title {
    color: #007bff;
}

/* Responsive iyileştirmeler */
@media (max-width: 768px) {
    .sector-card {
        padding: 1.5rem 0.5rem;
        border-radius: 15px;
    }
    
    .sector-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .sector-icon i {
        font-size: 1.5rem;
    }
    
    .sector-title {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .sector-card {
        padding: 1rem 0.5rem;
    }
    
    .sector-icon {
        width: 50px;
        height: 50px;
    }
    
    .sector-icon i {
        font-size: 1.2rem;
    }
    
    .sector-title {
        font-size: 0.7rem;
    }
}

/* Referanslar */
.references {
    background: #f8f9fa;
}

.reference-logo {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.reference-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.reference-logo:hover img {
    filter: grayscale(0%);
}

/* Başarı Hikayeleri Bölümü */
.success-stories {
    background: #f8f9fa;
}

.success-story-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.client-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 15px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-name {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.client-sector {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.story-text {
    color: #495057;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.story-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #007bff;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.story-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog Bölümü */
.blog {
    background: white;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Modern Footer */
.modern-footer {
    background: white;
    color: #2c3e50;
    margin-top: 50px;
    border-top: 1px solid #e9ecef;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-section {
    height: 100%;
}

.footer-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Sosyal Medya Önizleme Bölümü */
.social-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.social-media-links {
    margin-bottom: 30px;
}

.social-media-links .social-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: auto;
    height: auto;
    margin: 0 10px;
}

.social-media-links .social-link i {
    font-size: 20px;
    margin-right: 8px;
}

.social-media-links .social-link span {
    font-weight: 600;
    font-size: 16px;
}

.social-media-links .social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.social-media-links .social-link.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-media-links .social-link.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.social-preview-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-post {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.social-post img {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-post:hover img {
    transform: scale(1.05);
}

/* Bootstrap 5 Categories Carousel */
.categories {
    background: #fff;
    padding: 40px 0;
}

#categoryCarousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(80, 200, 120, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.category-image-wrapper {
    position: relative;
    margin-bottom: 15px;
    z-index: 2;
}

.category-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.category-name {
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: #4a90e2;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    filter: invert(0.3);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0.2);
}

@media (max-width: 768px) {
    .category-card {
        padding: 20px;
        min-height: 160px;
    }
    
    .category-image {
        width: 100px;
        height: 100px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item i {
    color: #3498db;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 2px;
}

.contact-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #3498db;
}

.footer-bottom {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #3498db;
}

/* Animation */
.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .contact-item {
        gap: 10px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .reference-logo {
        height: 80px;
        padding: 15px;
    }
}

.hero-text, .hero-offers {
    animation: fadeInUp 0.8s ease-out;
}

.offer-card {
    animation: fadeInUp 0.8s ease-out;
}

.offer-card:nth-child(2) {
    animation-delay: 0.2s;
}

.offer-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* KVKK Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    border-top: 3px solid #3498db;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice.hide {
    transform: translateY(100%);
}

.cookie-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-notice-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-notice-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.cookie-notice-text a:hover {
    text-decoration: underline;
}

.cookie-notice-close {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-notice-close:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 12px 15px;
    }
    
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cookie-notice-text {
        font-size: 13px;
    }
}

/* AI Tabela ve Tasarım Slider Styles */
.ai-design-slider {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ai-design-slider::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.ai-content {
    position: relative;
    z-index: 2;
}

.ai-slider-container {
    position: relative;
    z-index: 2;
}

.ai-slide-content {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-icon {
    transition: transform 0.3s ease;
}

.carousel-item.active .ai-icon {
    animation: pulse 2s infinite;
}

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

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

.bg-gradient-primary {
    background: #ffffff !important;
}

@media (max-width: 768px) {
    .ai-design-slider {
        padding: 3rem 0 !important;
    }
    
    .ai-content h2 {
        font-size: 2rem !important;
    }
    
    .ai-slide-content {
        min-height: 220px;
        padding: 2rem !important;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
    }
}