body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    top: 0;
    z-index: 1000;
}

.back-btn-minimal {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

.back-btn-minimal:hover {
    color: #00d4a5;
    transform: translateX(-5px);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
}

.logo-text span {
    color: #00d4a5;
}

.full-service-hero {
    text-align: center;
    margin-bottom: 50px;
}

.full-service-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #111;
    margin-bottom: 15px;
}

.full-service-hero .accent {
    color: #00d4a5;
}

.hero-subtitle {
    color: #666;
    font-size: 18px;
}

.packages-section {
    padding: 140px 8% 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfb 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card-simple {
    background: #fff;
    border: 1px solid #eee;
    padding: 50px 40px;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.package-card-simple:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 212, 165, 0.1);
    border-color: #00d4a5;
}

.pkg-badge {
    position: absolute;
    top: 25px;
    right: 35px;
    background: #f0fdfa;
    color: #00d4a5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.business-highlight {
    background: #fff;
    border: 2px solid #00d4a5;
}

.business-highlight .pkg-badge {
    background: #00d4a5;
    color: #fff;
}

.pkg-type {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #888;
}

.pkg-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #111;
    line-height: 1.2;
}

.pkg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.pkg-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.dot {
    width: 8px;
    height: 8px;
    background: #00d4a5;
    border-radius: 50%;
    flex-shrink: 0;
}

.pkg-price-box {
    margin-top: auto;
    margin-bottom: 30px;
}

.price {
    font-size: 38px;
    font-weight: 900;
    color: #111;
}

.pkg-btn {
    display: block;
    text-align: center;
    padding: 18px;
    background: #f4f4f4;
    color: #111;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    transition: 0.3s;
    border: none;
}

.pkg-btn:hover {
    background: #111;
    color: #fff;
}

.business-highlight .pkg-btn {
    background: #00d4a5;
    color: #fff;
}

.business-highlight .pkg-btn:hover {
    background: #00b38a;
    transform: scale(1.02);
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 13px;
    color: #888;
    background: #fff;
    border-top: 1px solid #eee;
    letter-spacing: 1px;
}

.single-package-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.featured-card {
    width: 100%;
    padding: 60px !important;
    background: linear-gradient(145deg, #ffffff, #f0fdfa) !important;
}

.pkg-grid-internal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.price-label {
    font-size: 16px;
    color: #666;
    margin-left: 10px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .pkg-grid-internal {
        grid-template-columns: 1fr;
    }
    .featured-card {
        padding: 40px 25px !important;
    }
}

@media (max-width: 768px) {
    .logo-text {
        display: none; 
    }
    .packages-section {
        padding-top: 100px;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .package-card-simple {
        padding: 40px 30px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #00d4a5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
}

.benefit-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

