* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5ede1;
    /* warm sand base */
    color: #1e3a2b;
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

:root {
    --forest: #1d3e2c;
    --forest-deep: #0f2b1c;
    --sand: #eadbc4;
    --sand-light: #f8f0e2;
    --brown: #674f38;
    --gold: #b8864b;
    --gold-soft: #dab27c;
    --shadow: 0 20px 35px -10px rgba(20, 40, 20, 0.25);
}

/* textured bg (subtle leaf) */
.bg-texture {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%231f3b2c' fill-opacity='0.02' d='M40 8c-15 0-27 12-27 27 0 11 7 20 18 25-7 5-12 13-12 22 0 12 9 18 21 18s21-6 21-18c0-9-5-17-12-22 11-5 18-14 18-25 0-15-12-27-27-27z'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ----- HEADER (sticky, improved) ----- */
.navbar-custom {
    background: linear-gradient(45deg, #02294a 0, #011b31 65%);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px);
    padding: 15px 1.7rem;
    border-bottom: 1px solid rgba(184, 134, 75, 0.35);
    transition: 0.2s;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.2);
}

.navbar-brand img {
    height: 55px;
    filter: none;
    transition: 0.2s;
}

.navbar-nav .nav-link {
    color: #f0eadc;
    font-weight: 450;
    margin: 0 0.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 1.05rem;
    border-radius: 30px;
    transition: 0.2s;
}

.navbar-nav .nav-link:hover {
    background: rgba(184, 134, 75, 0.2);
    color: #ffefd5;
}

.btn-plan-header {
    background: transparent;
    border: 1.8px solid var(--gold);
    border-radius: 40px;
    color: #fff5e6;
    font-weight: 600;
    padding: 0.5rem 1.8rem;
    margin-left: 0.5rem;
    transition: 0.25s;
    white-space: nowrap;
}

.btn-plan-header:hover {
    background: var(--gold);
    color: #0f2b1c;
    border-color: var(--gold);
    transform: scale(1.02);
}

/* popup form modal – fully responsive, elegant */
.popup-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 40, 20, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-card {
    background: rgba(255, 248, 235, 0.98);
    backdrop-filter: blur(15px);
    max-width: 480px;
    width: 100%;
    border-radius: 48px;
    padding: 1.5rem 2rem;
    box-shadow: 0 35px 60px -15px #0b1f12;
    border: 1px solid rgba(184, 134, 75, 0.4);
    position: relative;
    animation: fadePop 0.3s ease;
}

@keyframes fadePop {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-card .close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--brown);
    line-height: 1;
    transition: 0.2s;
}

.popup-card .close-popup:hover {
    color: #b33;
    transform: rotate(90deg);
}

.popup-card h3 {
    font-size: 2.3rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.popup-card .form-control,
.popup-card .form-select {
    background: #fffcf0;
    border: 1px solid #d4bb9f;
    border-radius: 50px;
    padding: 0.5rem 1.4rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.popup-card .btn-gold {
    background: var(--gold);
    border: none;
    color: #1d2a1a;
    font-weight: 700;
    padding: 0.9rem;
    border-radius: 50px;
    width: 100%;
    font-size: 1.2rem;
    transition: 0.2s;
}

.popup-card .btn-gold:hover {
    background: #9f6e3a;
    color: white;
}

/* ----- HERO (perfected for mobile) ----- */
.hero-section {
    min-height: 80vh;
    background: linear-gradient(115deg, rgb(21 46 72 / 74%) 0%, rgb(29 55 82 / 0%) 70%), url(images/banner.png) center / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 5rem 1.5rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    color: white;
    text-shadow: 0 5px 15px #1f2e1b;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-content p {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    margin: 1.5rem 0 2rem;
    opacity: 0.95;
}

.btn-hero {
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    border: none;
    transition: 0.2s;
    display: inline-block;
}

.btn-hero.btn-gold {
    background: var(--gold);
    color: #142814;
    box-shadow: 0 10px 18px #00000033;
}

.btn-hero.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 235, 200, 0.9);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-hero:hover {
    transform: translateY(-5px);
}

/* ----- PACKAGES (premium cards, fully responsive) ----- */
.packages-section {
    padding: 4rem 6rem;
    background: linear-gradient(145deg, #f3e9db, #e7d9c4);
}

.section-title {
    font-size: clamp(2.8rem, 9vw, 4rem);
    color: var(--forest-deep);
    text-align: center;
    margin-bottom: 3rem;
}

.package-card {
    background: #fffcf2;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(184, 134, 75, 0.2);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 45px -12px #1f3b2c;
}

.card-img-wrap {
    height: 300px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.package-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

.card-body {
    padding: 1rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #17331f;
    line-height: 1.2;
}

.duration {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.highlights {
    list-style: none;
    padding: 0;
}

.highlights li {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    color: #2a412a;
}

.highlights i {
    color: var(--gold);
    width: 24px;
}

.btn-card {
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    transition: 0.2s;
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--forest);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.btn-card:hover {
    background: var(--gold);
    color: #0e2a14;
    border-color: var(--gold);
}

.btn-card-wa {
    background: #25d36620;
    border: 1.5px solid #25d366;
    color: #075e1b;
}

.btn-card-wa:hover {
    background: #075725;
    border: 1.5px solid #075725;
    color: white;
}

/* ----- CONTACT / ENQUIRY (responsive, card style) ----- */
.contact-section {
    padding: 5rem 1.2rem;
    background: var(--sand-light);
    position: relative;
}

.contact-card {
    background: rgba(255, 250, 235, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 60px;
    padding: 2.8rem 2rem;
    box-shadow: 0 35px 55px -15px #1f3b1f;
    border: 1px solid rgba(184, 134, 75, 0.3);
    background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?q=80&w=1470&auto=format');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.contact-card h2 {
    font-size: clamp(2.5rem, 8vw, 3.6rem);
    color: #05200e;
}

.contact-card .form-control,
.contact-card .form-select {
    background: rgba(255, 250, 240, 0.9);
    border: 1.5px solid #bc9f7c;
    border-radius: 60px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.contact-card .btn-gold {
    background: var(--gold);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.3rem;
    width: 100%;
    transition: 0.2s;
}

.contact-card .btn-gold:hover {
    background: #755531;
    color: white;
}

/* minor responsive */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 36px;
    }

    .btn-plan-header {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .popup-card {
        padding: 2rem 1.2rem;
    }

    .popup-card h3 {
        font-size: 2rem;
    }

    .card-body {
        padding: 1.5rem 1rem;
    }
}

/* Highlights Section */
.highlights-section {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.section-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
    padding: 15px;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    padding: 20px;
}

.highlight-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: serif;
    font-size: 21px;
}

.highlight-content p {
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    margin-bottom: 20px;
}

.highlight-content p:not(:last-child)::before {
    border-bottom: 1px solid #bfbbbbd6;
    position: absolute;
    content: "";
    width: 100%;
    left: 0%;
    bottom: -6px;
}

/* Responsive */
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .highlight-card {
        flex-direction: column;
        gap: 15px;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}



/* Footer Styles */

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ddccb0;
}

footer li {
    margin-bottom: 12px;
    display: flex;
}

footer a:hover {
    color: #e67e22 !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #e67e22;
    color: #fff !important;
    transform: translateY(-3px);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 10 - 40px * 9));
        /* Adjust based on logo count */
    }
}

/* Mobile Responsive CSS for all devices */
@media screen and (max-width: 768px) {

    /* Header */
    .navbar-custom {
        padding: 8px 15px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-toggler {
        padding: 4px 8px;
        border: 1px solid rgba(184, 134, 75, 0.5);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-collapse {
        background: rgba(25, 45, 30, 0.98);
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        border: 1px solid rgba(184, 134, 75, 0.3);
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 5px 0;
        padding: 12px;
        font-size: 1.1rem;
    }

    .btn-plan-header {
        display: block;
        text-align: center;
        margin: 10px 0 0;
        padding: 12px;
        width: 100%;
    }

    /* Popup Form */
    .popup-card {
        padding: 1.8rem 1.2rem;
        border-radius: 35px;
        margin: 15px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-card h3 {
        font-size: 2rem;
        padding-right: 30px;
    }

    .popup-card .close-popup {
        top: 1.2rem;
        right: 1.5rem;
        font-size: 1.8rem;
    }

    .popup-card .form-control,
    .popup-card .form-select {
        padding: 0.5rem 1.2rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
        margin-bottom: 0.8rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 4rem 1.2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-content p {
        font-size: 1.1rem;
        margin: 1rem 0 1.5rem;
    }

    .btn-hero {
        padding: 0.8rem 1.5rem;
        margin-right: 0.5rem;
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        display: inline-block;
        width: auto;
        min-width: 140px;
    }

    /* Packages Section */
    .packages-section {
        padding: 3rem 1.2rem;
    }

    .section-title {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 2rem;
    }

    .package-card {
        border-radius: 28px;
        margin-bottom: 20px;
    }

    .card-img-wrap {
        height: 220px;
    }

    .card-body {
        padding: 1.5rem 1.2rem;
    }

    .card-title {
        font-size: 1.9rem;
    }

    .highlights li {
        font-size: 0.9rem;
    }

    .btn-card {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }

    /* Contact Section */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-card {
        padding: 2rem 1.2rem;
        border-radius: 40px;
    }

    .contact-card h2 {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.8rem 1.2rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
        margin-bottom: 1rem;
    }

    .contact-card .btn-gold {
        padding: 0.9rem 1.5rem;
        font-size: 1.1rem;
    }

    /* Highlights Section */
    .highlights-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }

    .highlight-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .highlight-content h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .highlight-content p {
        text-align: center;
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 30px 15px !important;
    }

    footer .row {
        text-align: center;
    }

    footer h5 {
        margin-top: 20px;
        margin-bottom: 15px !important;
        font-size: 1.2rem;
    }

    footer ul {
        padding-left: 0;
    }

    footer li {
        justify-content: center;
        margin-bottom: 10px;
    }

    footer .col-md-4:first-child h5 {
        margin-top: 0;
    }

    footer .text-md-end {
        text-align: center !important;
        margin-top: 25px;
    }

    .social-icons {
        justify-content: center;
        margin: 20px 0 15px;
    }

    .social-icons a {
        margin: 0 8px;
    }

    /* General Utility Classes */
    .container {
        padding: 0 15px;
    }

    .text-center-mobile {
        text-align: center;
    }

    .mt-mobile-3 {
        margin-top: 1rem;
    }

    .mb-mobile-3 {
        margin-bottom: 1rem;
    }
}

/* Small phones (up to 375px) */
@media screen and (max-width: 375px) {
    .popup-card .btn-gold {
        padding: 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.7rem 1.2rem;
        min-width: 120px;
        font-size: 0.9rem;
    }

    .card-title {
        font-size: 1.7rem;
    }

    .card-img-wrap {
        height: 180px;
    }

    .btn-card {
        padding: 0.35rem 0.8rem;
        font-size: 0.85rem;
    }

    .btn-card i {
        margin-right: 3px;
    }

    .popup-card h3 {
        font-size: 1.8rem;
    }

    .popup-card .form-control,
    .popup-card .form-select {
        padding: 0.5rem 1rem;
        font-size: 15px;
    }

    .popup-card {
        padding: 1.2rem 1.2rem;
    }

    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.5rem 1.2rem;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
}

/* Medium phones (376px to 425px) */
@media screen and (min-width: 376px) and (max-width: 425px) {
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .card-img-wrap {
        height: 200px;
    }


    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.5rem 1.2rem;
        font-size: 16px;
        margin-bottom: 0.5rem;
    }
}

/* Fix for iOS input zoom */
@media screen and (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Landscape mode */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 6rem 1.5rem 4rem;
    }

    .popup-card {
        max-height: 85vh;
        overflow-y: auto;
    }

    .package-card {
        margin-bottom: 20px;
    }

}

/* Tablet devices */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .packages-section {
        padding: 4rem 2rem;
    }

    .card-img-wrap {
        height: 250px;
    }

}

/* Fix for notched phones */
@supports (padding: max(0px)) {
    @media screen and (max-width: 768px) {
        .popup-form-modal {
            padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
        }

        .navbar-custom {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
        }
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    @media screen and (max-width: 768px) {
        .navbar-collapse {
            background: rgba(20, 35, 25, 0.98);
        }
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {

    .btn-card,
    .btn-plan-header,
    .btn-hero {
        border-width: 2px;
    }

    .popup-card .form-control,
    .popup-card .form-select {
        border-width: 2px;
    }
}

/* Smooth transitions for mobile */
@media (hover: none) and (pointer: coarse) {
    .package-card:hover {
        transform: none;
    }

    .package-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    .btn-card:hover,
    .btn-gold:hover {
        transform: none;
    }

    .btn-card:active,
    .btn-gold:active {
        opacity: 0.8;
    }
}

/* Fix for foldable devices */
@media screen and (max-width: 280px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-hero {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 1.5rem;
    }


    .contact-card .form-control,
    .contact-card .form-select {
        padding: 0.3rem 0.8rem;
        font-size: 16px;
        margin-bottom: 0rem;
    }

    .navbar-nav .nav-link {
        text-align: center;
        margin: 5px 0;
        padding: 2px 12px;
        font-size: 1.1rem;
    }
}

/* Make all popup trigger buttons visually consistent */
.open-popup-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

.open-popup-trigger:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Ensure the popup appears above everything */
.popup-form-modal {
    z-index: 99999;
}

/* Mobile responsive adjustments for trigger buttons */
@media (max-width: 768px) {
    .open-popup-trigger {
        display: inline-block;
        text-align: center;
        width: 100%;
        margin: 5px 0;
    }

    /* Specific fix for hero section buttons */
    .hero-content .open-popup-trigger {
        width: auto;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero-content .open-popup-trigger {
        min-width: 140px;
        padding: 12px 15px;
        font-size: 14px;
    }
}




/* Inclusions & Exclusions Section Styles */
.inclusions-exclusions {
  background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
}

.inclusions-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(196,154,43,0.1);
}

.inclusions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(196,154,43,0.15);
}

.card-header {
  padding: 30px 30px 20px;
  text-align: center;
  position: relative;
}

.inclusions-header {
  background: linear-gradient(135deg, rgba(196,154,43,0.1) 0%, rgba(196,154,43,0.05) 100%);
  border-bottom: 3px solid var(--primary);
}

.exclusions-header {
  background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(220,53,69,0.05) 100%);
  border-bottom: 3px solid #dc3545;
}

.header-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.inclusions-header .header-icon i {
  font-size: 2.5rem;
  color: #28a745;
}

.exclusions-header .header-icon i {
  font-size: 2.5rem;
  color: #dc3545;
}

.card-header h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.card-header p {
  color: #666;
  margin-bottom: 0;
}

.card-body {
  padding: 30px;
}

.inclusions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusion-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.inclusion-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.inclusion-item .item-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inclusions-list .item-icon {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.exclusions-list .item-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.item-content {
  flex: 1;
}

.item-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

.card-footer {
  padding: 20px 30px 30px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196,154,43,0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.exclusions-badge {
  background: rgba(220,53,69,0.1);
  color: #dc3545;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .card-header {
    padding: 25px 20px 15px;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .inclusion-item {
    gap: 12px;
  }

  .item-content p {
    font-size: 0.85rem;
  }

}

@media (max-width: 480px) {
  .card-header h3 {
    font-size: 1.6rem;
  }
  
  .inclusion-item {
    flex-direction: column;
    text-align: center;
  }
  
  .item-icon {
    margin: 0 auto;
  }
}