/* Custom Navbar Styling */
header .navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

header .navbar-brand {
    font-size: 1.5rem;
    color: #1a1a1a !important;
    letter-spacing: -0.5px;
}

header .navbar-nav .nav-link {
    color: #4a4a4a !important;
    font-weight: 500 !important;
    position: relative;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

header .navbar-nav .nav-link:hover {
    color: #1a1a1a !important;
}

header .navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

header .navbar .btn-primary {
    background-color: transparent !important;
    border: 2px solid #1a1a1a !important;
    color: #1a1a1a !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

header .navbar .btn-primary:hover {
    background-color: #1a1a1a !important;
    color: white !important;
    transform: translateY(-2px);
}

header .navbar-toggler {
    border: none;
}

@media (min-width: 992px) {
    header .navbar-nav {
        gap: 0.5rem;
    }
}

/* Hero Section Adjustments */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/hero-bg.webp') center/cover no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Adjust Navbar on Mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px; /* Prevent hero text overlap */
    }
}

.accordion-item {
    border: none;
    background-color: #fff;
    border-radius: 8px;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: none;
    transition: background-color 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background-color: #e2e6ea;
}

.accordion-body {
    color: #6c757d;
    line-height: 1.6;
    padding: 1rem 1.5rem;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* =============================
   Pricing Section Styles
   ============================= */
.pricing-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.pricing-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-section .section-header p {
    font-size: 1.125rem;
    color: #6c757d;
}

/* =============================
   Pricing Card Base Styles
   ============================= */
.pricing-card {
    background: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.pricing-card .card-header {
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.pricing-card .card-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-card .card-header .badge {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Badge Styles */
.badge-popular {
    background-color: #ffc107;
    color: #212529;
}

.badge-best-value {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

/* Price Section */
.pricing-card .card-price {
    padding: 20px;
    text-align: center;
}

.pricing-card .card-price h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.pricing-card .card-price small {
    font-size: 1rem;
    color: #6c757d;
}

/* Description Section */
.pricing-card .card-description {
    padding: 0 20px;
    text-align: center;
    margin-bottom: 20px;
}

/* Feature List */
.pricing-card .pricing-features {
    padding: 0 20px 20px;
}

.pricing-features li {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Card Footer */
.pricing-card .card-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.pricing-card .card-footer p {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 15px;
}

/* Button Styling */
.pricing-card .btn {
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* =============================
   Special Styles for the Replenish Card
   ============================= */
.pricing-card.replenish .card-header {
    background-color: #007bff;
    color: #fff;
    border-bottom: none;
}

.pricing-card.replenish .card-header h4 {
    color: #fff;
}

.pricing-card.replenish .badge {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.pricing-card.replenish .btn {
    background-color: #007bff;
    color: #fff;
    border: none;
}

/* Custom styling for form inputs */
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="time"], textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Custom focus effect */
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, input[type="time"]:focus, textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Custom label styling */
label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

/* Custom textarea styling */
textarea {
    resize: vertical;
    min-height: 120px;
}

/* Button styling */
button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}