/* =========== Global Reset & Variables =========== */
:root {
    --primary-color: #e0b48a;
    --secondary-color: #3b302c;
    --bg-dark: #0f0f0f;
    --bg-light-dark: #1c1c1c;
    --text-light: #e0e0e0;
    --text-dark: #121212;
    --border-color: #443c36;
    --shadow-light: rgba(0, 0, 0, 0.4);
    --shadow-dark: rgba(0, 0, 0, 0.7);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #d4a574);
    --gradient-dark: linear-gradient(135deg, #2a2a2a, #1c1c1c);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 2px 10px var(--shadow-dark);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.section-padding {
    padding: 5rem 0;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

/* =========== Header / Navigation =========== */
header {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(224, 180, 138, 0.1);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.logo:hover img {
    transform: scale(1.08);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* =========== Hero Section =========== */
#hero {
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1574375927938-d5a98e8ffe85?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2069&q=80') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(224, 180, 138, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 180, 138, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: slideInDown 0.8s ease-out;
}

.hero-badge i {
    font-size: 1.1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1rem;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(224, 180, 138, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(224, 180, 138, 0.5);
}

.cta-button.primary:active {
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(59, 48, 44, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(224, 180, 138, 0.3);
}

.secondary-cta {
    background: rgba(59, 48, 44, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
}

.secondary-cta:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(224, 180, 138, 0.3);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* =========== Package Sections =========== */
.package-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 0 15px;
}

.package-card {
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 180, 138, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-card.premium .card-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
}

.package-card.platinum .card-badge {
    background: linear-gradient(135deg, #e5e4e2, #c0c0c0);
    color: #1a1a1a;
}

.package-card.party .card-badge {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 180, 138, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

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

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(224, 180, 138, 0.3);
    box-shadow: 0 16px 40px rgba(224, 180, 138, 0.2);
    background: rgba(35, 35, 35, 0.9);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    display: block;
}

.package-card.platinum .card-icon {
    color: #c0c0c0;
}

.package-card:hover .card-icon {
    transform: scale(1.15);
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 1.2rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.currency {
    font-size: 1rem;
    opacity: 0.8;
}

.amount {
    font-size: 2.5rem;
    margin: 0 0.3rem;
}

.price-note {
    font-size: 1rem;
    font-weight: 400;
    color: #b0b0b0;
    margin-left: 0.5rem;
}

.features {
    margin-top: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.features li {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: #d0d0d0;
    transition: color 0.3s ease;
}

.package-card:hover .features li {
    color: #fff;
}

.features li i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.package-card.platinum .features li i {
    color: #c0c0c0;
}

.features li span {
    flex: 1;
}

.card-cta {
    display: block;
    background: var(--gradient-primary);
    color: var(--text-dark);
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    margin-top: 2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(224, 180, 138, 0.2);
    letter-spacing: 0.5px;
}

.card-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(224, 180, 138, 0.4);
}

.card-cta:active {
    transform: translateY(-1px);
}

.package-card.platinum .card-cta {
    background: linear-gradient(135deg, #c0c0c0, #e5e4e2);
    color: #1a1a1a;
}

.package-card.special {
    border-color: rgba(224, 180, 138, 0.2);
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(37, 32, 27, 0.8) 100%);
}

.package-card.special .card-icon {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(224, 180, 138, 0.3);
}

.package-card.party {
    border-color: rgba(160, 80, 160, 0.2);
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.9) 0%, rgba(46, 30, 46, 0.8) 100%);
}

.package-card.party .card-icon {
    color: #f0d0f0;
}

.package-card.party h3 {
    color: #e6a8e6;
}

.package-card.party .price {
    color: #f0d0f0;
}

.package-card.party .features li {
    color: #e0c0e0;
}

.package-card.party .features li i {
    color: #f0d0f0;
}

.package-card.party .card-cta {
    background: linear-gradient(135deg, #a050a0, #c070c0);
    color: #fff;
    box-shadow: 0 4px 15px rgba(160, 80, 160, 0.3);
}

.package-card.party .card-cta:hover {
    box-shadow: 0 8px 25px rgba(160, 80, 160, 0.5);
}

/* =========== Add-ons Section =========== */
#add-ons {
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(224, 180, 138, 0.1);
    border-bottom: 1px solid rgba(224, 180, 138, 0.1);
}

.add-on-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    padding: 2.5rem 0;
    flex-wrap: wrap;
}

.add-on-list li {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid rgba(224, 180, 138, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.add-on-list li:hover {
    transform: translateY(-6px);
    background-color: rgba(25, 25, 25, 0.9);
    border-color: rgba(224, 180, 138, 0.3);
    box-shadow: 0 8px 25px rgba(224, 180, 138, 0.2);
}

.addon-icon {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(224, 180, 138, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.addon-title {
    display: block;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.addon-price {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* =========== Contact Section Updates =========== */
#contact {
    text-align: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    padding: 0 15px;
}

.detail-card {
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 180, 138, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.detail-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 180, 138, 0.3);
    box-shadow: 0 12px 40px rgba(224, 180, 138, 0.15);
}

.detail-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

.detail-card p {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 0.8rem;
}

.detail-highlight {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* =========== Footer =========== */
footer {
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    color: #888;
    text-align: center;
    padding: 3rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(224, 180, 138, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}

footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.8rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(224, 180, 138, 0.05);
    border: 1px solid rgba(224, 180, 138, 0.1);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-4px);
    background: rgba(224, 180, 138, 0.15);
    border-color: rgba(224, 180, 138, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(224, 180, 138, 0.1);
    padding-top: 2rem;
}

.dev-by {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
    letter-spacing: 0.3px;
}

.dev-by a {
    color: #888;
    transition: color 0.3s ease;
}

.dev-by a:hover {
    color: var(--primary-color);
}

/* =========== Responsive (Mobile-First Overrides) =========== */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .package-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .contact-details {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    #hero {
        height: 70vh;
        min-height: 500px;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        gap: 1rem;
        margin-bottom: 0;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(224, 180, 138, 0.1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        padding: 1rem 0;
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

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

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
        transition: all 0.3s ease;
    }

    .nav-links a:active {
        background: rgba(224, 180, 138, 0.1);
    }

    .package-container {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 0;
    }

    .package-card {
        padding: 1.8rem 1.5rem;
    }

    .package-card h3 {
        font-size: 1.5rem;
    }

    .features li {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .amount {
        font-size: 2rem;
    }

    .card-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .add-on-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 2rem 0;
    }

    .add-on-list li {
        padding: 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .detail-card {
        padding: 2rem 1.5rem;
    }

    #contact p {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-cta {
        gap: 0.8rem;
        flex-direction: column;
        margin-bottom: 0;
    }

    .hero-cta .cta-button {
        width: 100%;
    }

    .card-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }

    .package-card {
        padding: 1.5rem 1.2rem;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .package-card h3 {
        font-size: 1.3rem;
    }

    .price {
        margin: 0.8rem 0;
    }

    .amount {
        font-size: 1.8rem;
    }

    .features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .add-on-list {
        gap: 1rem;
    }

    .add-on-list li {
        padding: 1rem 1.2rem;
    }

    .addon-icon {
        width: 45px;
        height: 45px;
    }

    .detail-card {
        padding: 1.5rem 1.2rem;
    }

    .detail-icon {
        font-size: 2.5rem;
    }

    .detail-card h3 {
        font-size: 1.2rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .package-card {
        padding: 1.3rem 1rem;
    }

    .detail-card {
        padding: 1.3rem 1rem;
    }
}
