/* ============================================
   Precise Tech - Custom CSS
   ============================================ */

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d99;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --muted-color: #6c757d;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* ============================================
   General Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   Navigation Bar
   ============================================ */

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
    transition: var(--transition);
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   Top Trust Banner
   ============================================ */

.top-banner {
    background: linear-gradient(90deg, #ffb000 0%, #ff7a00 100%);
    color: #fff;
    font-weight: 700;
    padding: 6px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 1060; /* above navbar (which is sticky) */
}

.top-banner .banner-stars i {
    color: #fff;
    margin-right: 3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.top-banner .banner-text {
    font-size: 0.95rem;
}

.top-banner .btn-link {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 576px) {
    .top-banner .banner-text { font-size: 0.85rem; }
    .top-banner .banner-stars { display: none; }
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    min-height: 200px;
    background: linear-gradient(135deg, #007dfb 0%, #0062f6 100%);
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: slideInDown 0.8s ease;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Form Styles
   ============================================ */

.form-control,
.form-select {
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 12px 15px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.card {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ============================================
   Service Cards
   ============================================ */

.service-card {
    background: #fff;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    margin: 0 auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: white;
    transform: scale(1.1);
}

/* ============================================
   Why Choose Us Cards
   ============================================ */

.why-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: white;
}

/* ============================================
   Testimonial Cards
   ============================================ */

.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.stars {
    font-size: 0.8rem;
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.page-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   About Page
   ============================================ */

.about-image-placeholder {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.value-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: white;
    transform: scale(1.1);
}

.reason-card {
    background: #fff;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-8px);
}

.reason-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

/* ============================================
   Offerings Page
   ============================================ */

.offering-image-placeholder {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.bundle-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 204, 0.15);
}

.bundle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.bundle-badge.bg-primary {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%) !important;
}

.bundle-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.bundle-price .h3 {
    color: var(--primary-color);
    font-weight: 900;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-info-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: white;
}

.map-container {
    border: 1px solid #e0e0e0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid var(--primary-color);
    margin-top: 80px;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

/* ============================================
   Utility Classes
   ============================================ */

.rounded-lg {
    border-radius: var(--border-radius);
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.text-muted {
    color: var(--muted-color) !important;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-image-placeholder,
    .offering-image-placeholder {
        min-height: 200px;
    }

    .nav-link {
        margin-left: 0;
        margin-right: 0;
    }

    .reason-number {
        font-size: 2rem;
    }

    .row {
        --bs-gutter-x: 1rem;
    }

    .container,
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 150px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .bundle-badge {
        top: 10px;
        right: 10px;
    }

    footer {
        margin-top: 40px;
    }

    .row.g-4 {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
    }
}

/* ============================================
   Animation Classes
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-in {
    animation: slideIn 0.5s ease;
}

/* ============================================
   Accessibility
   ============================================ */

a {
    text-decoration: none;
    transition: var(--transition);
}

a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }

    body {
        color: #000;
        background-color: #fff;
    }

    a {
        color: inherit;
        text-decoration: underline;
    }
}
 /* Home Page Specific Styles */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .navbar-brand img {
            height: auto;
        }

        /* Image Slider Styles */
        .image-slider {
            position: relative;
            width: 100%;
            height: 600px;
            overflow: hidden;
        }

        .slider-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-slide.active {
            opacity: 1;
        }

        .slider-content {
            text-align: center;
            color: white;
            z-index: 10;
            position: relative;
        }

        .slider-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        }

        .slider-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .slider-buttons .btn {
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 5px;
            font-weight: 600;
        }

        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 15;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Authorized Dealers Section */
        .dealers-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .dealers-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
            color: #333;
        }

        .dealers-carousel {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: nowrap;
            overflow-x: clip;
        }

        .dealer-logo {
            width: 190px;
            height: 60px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .dealer-logo:hover {
            transform: translateY(-5px);
        }

        .dealer-logo img {
            max-width: 90%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Internet Plans Section */
        .plans-section {
            padding: 80px 0;
            background: white;
        }

        .plans-section h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
        }

        .plan-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .plan-card:hover {
            border-color: #0d6efd;
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
            transform: translateY(-10px);
        }

        .plan-card h5 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: #0d6efd;
            margin-bottom: 10px;
        }

        .plan-period {
            color: #999;
            margin-bottom: 20px;
        }

        .plan-card .btn {
            margin-top: auto;
        }

        /* Service Availability Section */
        .service-availability {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/service.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }

        .service-availability h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-availability p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Two Column Section */
        .two-column-section {
            padding: 80px 0;
            background: white;
        }

        .column-box {
            padding: 50px;
            text-align: center;
            background: #f8f9fa;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .column-box h3 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .column-box p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .why-choose-us h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 50px;
            color: #333;
        }

        .reason-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
        }

        .reason-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .reason-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .reason-card h5 {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .reason-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            text-align: center;
        }

        .newsletter-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 250px;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }

        .newsletter-form button {
            padding: 12px 40px;
            background: white;
            color: #0d6efd;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: #f0f0f0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .slider-content h1 {
                font-size: 2rem;
            }

            .slider-buttons {
                gap: 10px;
            }

            .slider-buttons .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .plan-card {
                margin-bottom: 20px;
            }

            .column-box {
                padding: 30px;
                margin-bottom: 20px;
            }

            .image-slider {
                height: 400px;
            }

            .reason-card img {
                width: 100px;
                height: 100px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                width: 100%;
            }

            .newsletter-form button {
                width: 100%;
            }
        }
         .floating-call-btn {
            position: fixed;
            right: 20px;
            bottom: 30px;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            font-size: 28px;
        }

        .floating-call-btn:hover {
            width: auto;
            padding: 12px 20px;
            border-radius: 50px;
            background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
            box-shadow: 0 6px 16px rgba(13, 110, 253, 0.6);
        }

        .floating-call-btn .phone-label {
            display: none;
            margin-left: 10px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

        .floating-call-btn:hover .phone-label {
            display: inline;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .floating-call-btn {
                right: 15px;
                bottom: 20px;
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .floating-call-btn:hover {
                width: auto;
                padding: 10px 16px;
            }
        }
 .service-availability {
            padding: 100px 0;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 50%, #084298 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .availability-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .availability-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .availability-header .subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Features Grid */
        .availability-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .feature-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            transform: translateY(0);
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.15) rotate(-10deg);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
        }

        .feature-item h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        /* Stats Section */
        .satisfaction-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .stat-card:hover {
            transform: scale(1.08);
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* CTA Button */
        .availability-cta {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            padding: 15px 50px !important;
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            border-radius: 50px !important;
            background: white !important;
            color: #0d6efd !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
            border: 2px solid white !important;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
            background: rgba(255, 255, 255, 0.95) !important;
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        /* Decorative Shapes */
        .availability-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: white;
            top: -50px;
            right: -50px;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: white;
            bottom: -30px;
            left: -30px;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            background: white;
            top: 50%;
            right: 5%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .availability-header h2 {
                font-size: 2rem;
            }

            .availability-header .subtitle {
                font-size: 1rem;
            }

            .availability-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .satisfaction-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .cta-button {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .availability-features {
                grid-template-columns: 1fr;
            }

            .satisfaction-stats {
                grid-template-columns: 1fr;
            }
        }

         .plans-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
        }

        .plans-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .plans-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #0d3f87;
            margin-bottom: 15px;
        }

        .plans-header p {
            font-size: 1.1rem;
            color: #666;
            font-weight: 400;
        }

        /* Plan Cards */
        .plan-card {
            background: white;
            border-radius: 18px;
            padding: 40px 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(13, 110, 253, 0.08);
            box-shadow: 0 8px 24px rgba(13, 110, 253, 0.08);
            overflow: hidden;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0d6efd, #0a58ca);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .plan-card:hover::before {
            opacity: 1;
        }

        .plan-card:hover {
            transform: translateY(-20px) rotateY(-2deg);
            box-shadow: 0 24px 50px rgba(13, 110, 253, 0.18);
            border-color: rgba(13, 110, 253, 0.15);
        }

        .plan-card.featured {
            border: 2px solid #0d6efd;
            transform: scale(1.05);
            box-shadow: 0 16px 40px rgba(13, 110, 253, 0.15);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-20px);
        }

        /* Plan Badge */
        .plan-badge {
            position: absolute;
            top: -12px;
            left: 20px;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 5;
        }

        .plan-badge.featured-badge {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
        }

        /* Plan Icon */
        .plan-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
        }

        .plan-card:hover .plan-icon {
            transform: scale(1.15) rotateY(-20deg);
        }

        /* Plan Content */
        .plan-content {
            flex-grow: 1;
        }

        .plan-card h5 {
            font-size: 1.4rem;
            font-weight: 800;
            color: #0d3f87;
            margin-bottom: 15px;
        }

        .plan-price {
            display: flex;
            align-items: flex-start;
            margin-bottom: 5px;
        }

        .plan-price .currency {
            font-size: 1.2rem;
            color: #0d6efd;
            font-weight: 700;
        }

        .plan-price .amount {
            font-size: 2.8rem;
            font-weight: 900;
            color: #0d6efd;
            line-height: 1;
        }

        .plan-period {
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .plan-description {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        /* Features List */
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .features-list li {
            font-size: 0.9rem;
            color: #555;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-weight: 500;
        }

        .features-list i {
            color: #0d6efd;
            margin-right: 12px;
            font-size: 0.85rem;
        }

        /* Get Started Button */
        .get-started-btn {
            padding: 14px 20px !important;
            font-weight: 700 !important;
            border-radius: 12px !important;
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%) !important;
            border: none !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25) !important;
        }

        .get-started-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(13, 110, 253, 0.35) !important;
            background: linear-gradient(135deg, #0a58ca 0%, #084298 100%) !important;
        }

        .get-started-btn:active {
            transform: translateY(-1px);
        }

        /* Plan specific styles */
        .basic-plan .plan-icon {
            background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
        }

        .ultra-plan .plan-icon {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
        }

        .gig-plan .plan-icon {
            background: linear-gradient(135deg, #ffa502 0%, #ff8c00 100%);
        }

        .bundle-plan .plan-icon {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }

        /* Decorative Shapes */
        .plans-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            overflow: hidden;
        }

        .deco-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .deco-1 {
            width: 400px;
            height: 400px;
            background: #0d6efd;
            top: -100px;
            right: -100px;
        }

        .deco-2 {
            width: 300px;
            height: 300px;
            background: #0a58ca;
            bottom: -80px;
            left: -80px;
        }

        .deco-3 {
            width: 250px;
            height: 250px;
            background: #084298;
            top: 50%;
            right: 10%;
            animation: drift 6s ease-in-out infinite;
        }

        @keyframes drift {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -20px); }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .plan-card.featured {
                transform: scale(1.02);
            }

            .plan-card.featured:hover {
                transform: scale(1.02) translateY(-15px);
            }
        }

        @media (max-width: 768px) {
            .plans-header h2 {
                font-size: 2rem;
            }

            .plan-card {
                padding: 30px 20px;
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .plan-card.featured:hover {
                transform: translateY(-15px);
            }

            .plan-price .amount {
                font-size: 2.2rem;
            }

            .get-started-btn {
                padding: 12px 16px !important;
                font-size: 0.95rem !important;
            }

            .deco-1, .deco-2, .deco-3 {
                opacity: 0.03;
            }
        }

        @media (max-width: 480px) {
            .plans-header h2 {
                font-size: 1.6rem;
            }

            .plan-card {
                padding: 25px 15px;
            }

            .plan-card h5 {
                font-size: 1.1rem;
            }

            .plan-price .amount {
                font-size: 1.8rem;
            }
        }