/* 
   LourdeBella Website Stylesheet - Updated Design
   Modern, bold aesthetic with glassmorphism and vibrant gradients
*/

/* Color Variables - Enhanced Palette */
:root {
    --navy: #0F172A;
    --gold: #F59E0B;
    --cream: #FFFBEB;
    --green: #059669;
    --dark-navy: #020617;
    --light-gold: #FCD34D;
    --light-cream: #FEF3C7;
    --accent-purple: #7C3AED;
    --accent-pink: #EC4899;
    --gradient-primary: linear-gradient(135deg, #f3c679 0%, #ffc078 50%, #ffa46b 100%);
    --gradient-button: linear-gradient(135deg, #ffc561 0%, #fda846 50%, #fd7825 100%);
    --gradient-secondary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    color: var(--light-gold);
}

/* Modern Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(20px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
}

.logo img {
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--light-gold);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}


/* Services Section */
.services {
    background: var(--navy);
    color: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

.services .section-header h2 {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.service-boxes {
    display: flex;
    justify-content: space-evenly;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    text-align: center;
    box-sizing: border-box;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}
    
.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-content {
    text-align: center;
}

.service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-style: italic;
}

.service-list {
    list-style: none;
    text-align: left;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding-bottom: 40px;
}

.service-list li {
    position: relative;
    padding-left: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
    margin-top: -10px;
}

.service-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.service-actions {
    position: absolute; /* Position the button inside the box */
    bottom: 20px; /* Adjust the distance from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Exact horizontal center */
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between buttons if there are more than one */
    width: 100%; /* Take full width of the service box */
    stroke: #e68a00;
}

.service-actions a {
    padding: 10px 20px; /* Smaller button size */
    font-size: 0.9rem; /* Smaller text size */
    background-color: #f5a70b00; /* Customize button color */
    border: 2px solid #fff; /* Add a white border */
    border-radius: 5px; /* Round button edges */
    color: white;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    min-width: 260px; /* Ensure button has a minimum width */
    width: auto; /* Let the width adapt to text content, but not shrink below min-width */
    text-align: center;
    transition: all 0.3s ease;
}

.service-actions a:hover {
    background-color: #e68a00; /* Hover effect */
}

/* Targeting the third service box */
.third-service-box {
    border: 1px solid #f5a80b; /* Custom border color (orange in this case) */
    height: 500px; /* Adjust this value to make the box taller */
    padding-bottom: 20px; /* Ensure padding at the bottom */
}

/* Targeting the third service box using nth-child */
.service-box:nth-child(2) {
    border: 2px solid #f5a80b; /* Custom border color */
    height: auto; /* Adjust the height as needed */
    padding-bottom: 20px; /* Adjust padding for better spacing */
}

/* Bottom Box Styling */
.bottom-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 30px;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    text-align: center;
    box-sizing: border-box;
    height: auto;
}

/* Flexbox for Bottom Box Content */
.bottom-box-content {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* Space between the two sections */
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Left: Core Services */
.core-services {
    flex: 1;
    text-align: left;
    font-size: 16px;
    color: #ffffff;
}

/* Service Items */
.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #ffffff; 
}

.service-item .icon {
    color: #22c55e;
    font-size: 18px;
}

/* Button Styling */
.bottom-box-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.bottom-box-actions a {
    padding: 12px 25px;
    font-size: 1rem;
    background-color: #f5a80b;
    border: 2px solid #fff;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect for Button */
.bottom-box-actions a:hover {
    background-color: #e68a00;
    border-color: #f5a80b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Contact */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        /* Updated Contact Section - Horizontal Layout */
        .contact {
            background: var(--dark-navy);
            color: white;
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at bottom, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .contact-lead {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            text-align: center;
            margin-bottom: 60px;
        }

        /* Horizontal Contact Content */
        .contact-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 2;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: 40px 50px;
        }

        .contact-info {
            display: flex;
            gap: 50px;
            flex: 1;
        }

        .info-item {
            text-align: center;
            transition: all 0.3s ease;
        }

        .info-item:hover {
            transform: translateY(-5px);
        }

        .info-item i {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 15px;
            display: block;
        }

        .info-item h3 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .info-item p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.4;
        }

        .info-item a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .info-item a:hover {
            color: var(--light-gold);
        }

        /* Contact CTA Button Container - UPDATED */
        .contact-cta {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        /* OR Divider Styling */
        .or-divider {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 200px;
            margin: 5px 0;
        }

        .or-divider::before,
        .or-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
        }

        .or-divider::before {
            margin-right: 15px;
        }

        .or-divider::after {
            margin-left: 15px;
        }

        .or-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .btn {
            display: inline-block;
            padding: 18px 35px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            min-width: 350px;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
                gap: 30px;
                padding: 30px 25px;
            }

            .contact-info {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .info-item {
                padding: 0 20px;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .contact-lead {
                font-size: 1.1rem;
            }

            /* Button responsiveness */
            .contact-cta {
                width: 100%;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                gap: 25px;
            }

            .info-item i {
                font-size: 2rem;
            }

            .info-item h3 {
                font-size: 1.1rem;
            }

            .btn {
                padding: 15px 25px;
                font-size: 1rem;
                min-width: auto;
            }

            .contact-cta {
                gap: 12px;
            }

            /* OR divider responsive adjustments */
            .or-divider {
                max-width: 150px;
            }

            .or-divider::before,
            .or-divider::after {
                margin-left: 10px;
                margin-right: 10px;
            }

            .or-text {
                font-size: 0.8rem;
            }
        }

        /* Additional responsive breakpoint for very small screens */
        @media (max-width: 320px) {
            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

/* Footer */
footer {
    background: var(--dark-navy);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Feedback */
.form-success {
    background: linear-gradient(135deg, #059669, #10B981);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.form-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 22px;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        gap: 0;
        padding: 40px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .service-box {
        padding: 40px 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .hero-logo {
        margin-top: 20px;
    }

    .about section {
        margin-top: 5;
    }

    .hero h1  {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero h3  {
        font-size: 1.2rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .service-box {
        padding: 30px 20px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-size: 16px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-item .service-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.service-item p {
    margin-left: 26px;
    margin-top: 4px;
    margin-bottom: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.note {
  font-style: italic;                /* Italicize the text */
  font-size: 16px;                   /* Adjust font size for readability */
  color: white;                       /* Light gray color for text */
  margin-top: 15px;                  /* Space above the note */
  padding: 10px;                     /* Add some padding for better spacing */
}

/* Optional: Add some additional styling */
.description-two {
    text-align: left;
    margin-bottom: 5px; /* Reduced from 15px */
    font-style: italic;
    color: #666;
}

.service-box {
    display: flex;
    flex-direction: column;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.description-bottom {
    margin-top: auto;
    text-align: center;
    font-size: 12px;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Package Services Styling - Space Optimized */
.package-service-box {
    background: rgba(26, 26, 26, 0);
    margin: 15px 0;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.package-header {
    grid-column: 1 / -1;
    text-align: left;
    margin-bottom: 15px;
    border-bottom: 2px solid #F59E0B;
    padding-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.package-title {
    color: rgb(247, 239, 239);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;
}

.package-subtitle {
    color: #F59E0B;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
    font-style: italic;
    flex-shrink: 0;
}

.package-content {
    display: contents;
}

.package-description {
    text-align: left;
    font-size: 15px;
    line-height: 1.5;
    color: #e0e0e0;
    margin: 0;
    padding-right: 15px;
}

.package-includes {
    background: rgba(245, 159, 11, 0.03);
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid #F59E0B;
}

.package-includes h4 {
    color: #F59E0B;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.package-services-list li {
    text-align: left;
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.3;
    color: #f0f0f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-services-list li:last-child {
    border-bottom: none;
}

.package-services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F59E0B;
    font-weight: bold;
    font-size: 14px;
}

/* Alternative compact layout for many services */
.package-services-list.compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4px;
}

.package-services-list.compact li {
    padding: 4px 0 4px 18px;
    font-size: 13px;
    border-bottom: none;
}

.package-services-list.compact li::before {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .package-service-box {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 18px;
    }
    
    .package-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .package-title {
        font-size: 24px;
    }
    
    .package-subtitle {
        font-size: 15px;
    }
    
    .package-description {
        padding-right: 0;
        font-size: 14px;
    }
    
    .package-services-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .package-service-box {
        padding: 15px;
        margin: 10px 0;
    }
    
    .package-title {
        font-size: 20px;
    }
    
    .package-subtitle {
        font-size: 14px;
    }
    
    .package-description {
        font-size: 13px;
    }
    
    .package-includes {
        padding: 12px;
    }
}

/* For packages with many services, add this class to the PHP */
.package-service-box.many-services .package-services-list {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 3px;
}

.package-service-box.many-services .package-services-list li {
    padding: 3px 0 3px 16px;
    font-size: 12px;
    line-height: 1.2;
}

/* Add-on Services Styling - Package Design */
.addon-services-container {
    background:rgba(26, 26, 26, 0);
    width: 100%;
    padding: 40px;
    color: #fff;
}

.addon-services-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 2px solid #F59E0B;
    padding-bottom: 25px;
}

.addon-services-title {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.addon-services-subtitle {
    color: #F59E0B;
    font-size: 19px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    font-style: italic;
}

.addon-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.addon-service-item {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.addon-service-item:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: #F59E0B;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
}

.addon-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}


.addon-service-name {
    color:rgb(255, 255, 255);
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.addon-service-content {
    margin-top: 10px;
}

.addon-service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin: 0;
    text-align: left;
}

/* Alternative grid layout for 2 columns */
.addon-services-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

/* Alternative grid layout for 3 columns */
.addon-services-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .addon-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .addon-services-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .addon-services-container {
        padding: 25px;
        margin: 15px 0;
    }
    
    .addon-services-title {
        font-size: 28px;
    }
    
    .addon-services-subtitle {
        font-size: 16px;
    }
    
    .addon-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .addon-service-item {
        padding: 20px;
    }
    
    .addon-service-name {
        font-size: 16px;
    }
    
    .addon-service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .addon-services-container {
        padding: 20px;
    }
    
    .addon-services-title {
        font-size: 24px;
    }
    
    .addon-services-subtitle {
        font-size: 14px;
    }
    
    .addon-service-item {
        padding: 15px;
    }
    
    .addon-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .addon-service-name {
        font-size: 14px;
    }
}