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

body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1d2c47;
    background-color: #f0f8ff; /* AliceBlue, very light blue */
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: -webkit-fill-available;
    overflow: hidden;
    background-image: url('bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
}

/* Smooth fade transition to the next section */
.hero-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8vh;
    background: linear-gradient(to bottom, rgba(247,251,255,0) 0%, rgba(247,251,255,1) 100%);
    z-index: 5;
    pointer-events: none;
}

/* Creating the fade overlay on the left to make text readable */
/* Keyframes for animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45%;
    min-width: 650px;
    background: linear-gradient(to right, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, black 70%, transparent 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem 4rem;
    min-height: 80px;
    gap: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 4rem;
}

.header-social {
    display: flex;
    gap: 1.25rem;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    align-items: center;
}

.header-social a {
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-social a:hover {
    color: #48c4b7;
    transform: translateY(-2px);
}

.logo {
    position: absolute;
    top: calc(50% + 20px);
    left: 4rem;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled .logo {
    top: 50%;
    transform: translateY(-50%) scale(0.85);
}


.main-logo-img {
    max-height: 144px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.main-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.9));
}

.bottom-features {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
    width: max-content;
}

.badge-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    filter: drop-shadow(0 8px 15px rgba(174, 242, 230, 0.4));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.special-offers-banner {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 0.5rem 2rem 0.5rem 4rem; /* REDUCED VERTICAL PADDING */
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    max-width: 850px;
    width: calc(100% - 1rem);
    margin: 1.5rem auto 0;
    height: 120px; /* SLIMMER HEIGHT */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3rem;

}

.special-offers-banner.holiday-banner {
    background: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 2rem 0.5rem 4rem; /* Match original exactly */
}

.special-offers-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--green-main);
    opacity: 0.8;
}

.banner-content-left {
    flex-shrink: 0;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-header {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--blue-main);
    letter-spacing: 1.5px;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
}

.banner-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0;
}

.banner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-list li {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.banner-list li:last-child {
    margin-bottom: 0;
}

.banner-list li span.light-text {
    font-size: 0.8rem;
    color: #4a5c7c;
    margin-left: 0.3rem;
    font-weight: 400;
}
    font-weight: 700;
    color: #1d2c47;
    margin-bottom: 0;
}

.special-offers-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.badge-wrapper:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 12px 20px rgba(174, 242, 230, 0.8));
}

.badge-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #eaf1f4;
    border-radius: 50%;
    border: 6px solid #d3dbdf;
    box-shadow: inset 0 0 15px rgba(255,255,255,1), inset 0 4px 5px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 40s linear infinite;
    z-index: 2;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-center {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 3px solid #71ad29;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eaf1f4;
    z-index: 3;
}

.badge-logo-img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.badge-leaves {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    z-index: 4;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

nav {
    display: flex;
    gap: 2.5rem;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #48c4b7; /* Green-blue hover */
}

.main-content {
    margin-top: 5vh;
    max-width: 550px;
}

.subheading {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.main-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1d2c47;
    font-weight: 700;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
}



.strikethrough {
    text-decoration: line-through;
    color: #3b4b6b;
    text-decoration-color: rgba(29, 44, 71, 0.5);
    text-decoration-thickness: 2px;
}

.highlight-text {
    color: #1d2c47;
    font-weight: 800;
}

.text-content {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

.text-content .license-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b4b6b;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #aef2e6 0%, #b2e6f5 100%); /* very light blue and green tones */
    color: #1d2c47;
    text-decoration: none;
    padding: 1.2rem 3rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(174, 242, 230, 0.4);
    transition: all 0.3s ease;
    border-radius: 4px; /* Slight rounding for a clean look */
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(174, 242, 230, 0.6);
    background: linear-gradient(135deg, #96e8d9 0%, #9dddf0 100%);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 60px 0;
    background: #f8fbff;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    margin-top: 50px;
}

.pricing-category {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-category.highlighted {
    background: linear-gradient(135deg, #1d2c47 0%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #1d2c47;
}

.highlighted .category-title {
    color: #48c4b7;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.price-item:hover {
    background: #f0f7ff;
    border-color: #e0e9f5;
    transform: translateX(12px);
}

.price-icon {
    font-size: 2rem;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7ff;
    border-radius: 15px;
}

.price-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #1d2c47;
}

.price-info p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.price-info strong {
    color: #48c4b7;
    font-size: 1.3rem;
}

/* Packages Grid */
.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.package-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.package-card:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.2);
}

.package-card.popular {
    border: 2px solid #48c4b7;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #48c4b7;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-card h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.package-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 5px 0;
}

.package-price {
    font-size: 1rem;
    margin: 12px 0;
}

.package-price span {
    font-size: 2rem;
    font-weight: 800;
    color: #48c4b7;
}

.package-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 22px;
    background: #48c4b7;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.package-btn:hover {
    background: white;
    color: #1d2c47;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* TwinPixel Credit */
.twinpixel-credit {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #48c4b7;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tp-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.tp-logo {
    height: 20px;
    width: auto;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.tp-link:hover .tp-logo {
    transform: scale(1.1);
}

.tp-name {
    font-weight: 700;
}



@media (max-width: 1024px) {
    .hero-container {
        height: auto;
        min-height: auto; /* Remove 100vh to avoid large gaps on iPad */
        display: block; /* Use block flow instead of flex centering */
        overflow-x: hidden;
        background-position: center;
        background-image: none;
        background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    }

    .hero-overlay {
        width: 100%;
        min-width: 0;
        background: rgba(255,255,255,0.85);
        -webkit-mask-image: none;
        mask-image: none;
        backdrop-filter: blur(5px);
    }

    .content-wrapper {
        padding: 0.5rem 1rem 2rem; /* Reduced top padding */
    }
    .logo {
        top: 1rem;
        left: 1rem;
    }
    .main-heading {
        font-size: 2.8rem;
    }

    header {
        display: contents;
    }

    /* Keep the header from being fixed on mobile scroll via desktop class */
    header.scrolled {
        position: relative;
        top: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .logo {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0.75rem 1rem 0.1rem; /* Reduced top padding to 0.75rem and bottom to 0.1rem */
        margin-bottom: 0;
        left: auto;
        top: auto;
        transform: none;
    }

    header.scrolled .logo {
        transform: none;
        top: auto;
    }

    .main-logo-img {
        max-height: 173px !important; /* Increased from 144px by another 20% */
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    }

    nav {
        position: sticky;
        top: 0;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem 0.5rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1001;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        opacity: 1;
        animation: none;
    }

    nav a {
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }


    .header-social {
        display: none;
    }

    .main-content {
        margin-top: 0.5rem; /* Reduced margin from 2rem */
        text-align: center;
        max-width: 100%;
    }

    .main-heading {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    

    .subheading {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .bottom-features {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        margin-top: 2rem;
        align-items: center;
    }

    .special-offers-banner {
        margin-left: 0;
        height: auto;
        min-height: 120px;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .banner-content-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 0.75rem;
        width: 100%;
    }

    .banner-list li {
        justify-content: center;
    }

    .contact-item {
        margin: 0 0 1rem 0 !important;
        justify-content: flex-start !important;
    }

    .contact-info, 
    .contact-info .section-title {
        text-align: left !important;
    }

    .contact-details {
        align-items: flex-start !important;
    }

    /* Pull up pricing tables on mobile */
    .pricing-section {
        padding: 30px 0;
    }
    .pricing-container {
        margin-top: 20px;
        gap: 1.5rem;
    }
    .pricing-category {
        padding: 25px 20px;
    }
    .category-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
        font-size: 1.5rem;
        text-align: center;
    }

    /* Fix overlapping badge on mobile */
    .package-card.popular {
        padding-top: 25px;
    }
    .package-badge {
        position: relative;
        top: 0;
        right: 0;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-bottom: 12px;
        transform: none;
    }
}

.mobile-social-bar {
    display: none;
}

@media (max-width: 1024px) {
    header .header-social {
        display: none;
    }
    
    .mobile-social-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        justify-content: space-evenly;
        align-items: center;
        padding: 15px 0;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .mobile-social-bar a {
        color: #1d2c47;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    .mobile-social-bar a:active {
        transform: scale(1.2);
    }

    footer {
        padding-bottom: 80px !important;
    }
}
