:root {
    --primary: #e9a8bc;
    --primary-light: #f8e6eb;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f4f4f4;
    --text: #333333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.6) 18%, rgba(255, 255, 255, 0.4) 21%, rgba(255, 255, 255, 0.2) 24%, rgba(255, 255, 255, 0) 27%);
    z-index: 5;
    pointer-events: none;
    display: none;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

h3 {
    color: #333333;
}

.container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
	width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    margin-left: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.btn-login {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-login-outline {
    background: white;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    padding: 8px 25px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s;
}

.btn-login-outline:hover {
    background: var(--primary);
    color: white !important;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0.6) 23%, rgba(255, 255, 255, 0.4) 26%, rgba(255, 255, 255, 0.2) 29%, rgba(255, 255, 255, 0) 32%);
    z-index: 10;
    pointer-events: none;
    display: none;
}

.hero-slider.bg-fixed {
    background-attachment: fixed;
}

.main-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .swiper-slide {
        background-image: var(--bg-mob) !important;
    }
}

.slide-content {
    max-width: 800px;
    padding: 20px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.slide-content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.btn-primary {
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #d88ba2;
    transform: translateY(-3px);
}

.btn-primary.small {
    padding: 8px 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Swiper Navigation Styling (KAN160) */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    width: 44px;
    height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
}

/* Sections */
.section {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
}

.section-title, .landing-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after, .landing-section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: var(--primary);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
}

.section-header-flex .landing-section-title {
    margin-bottom: 0;
    position: relative;
    padding-bottom: 10px;
}

.section-header-flex .btn-primary {
    position: absolute;
    right: 0;
}

@media (max-width: 1024px) {
    .section-header-flex {
        flex-direction: column;
        gap: 25px;
    }
    .section-header-flex .btn-primary {
        position: static;
    }
}

/* Subdomain Search Section */
.subdomain-search {
    background: white;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.subdomain-search.bg-fixed {
    background-attachment: fixed;
}

.search-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.search-text {
    margin-bottom: 40px;
}

.search-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.highlight-inline {
    color: var(--primary);
    font-weight: bold;
    background: #6d6b6b;
    padding: 2px 8px;
    border-radius: 4px;
}

.search-box-container {
    width: 100%;
}

.search-box {
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 2px solid #eee;
    transition: all 0.3s;
    width: 100%;
    overflow: hidden;
}

.input-group:focus-within {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.1);
}

.input-group input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 1.4rem;
    outline: none;
    color: var(--dark);
    font-weight: 500;
}

.input-group input::placeholder {
    font-size: 0.85rem;
    color: #bbb;
    font-weight: 400;
}

.input-group .suffix {
    color: #999;
    font-weight: 600;
    font-size: 1.4rem;
}

.btn-container {
    display: flex;
    justify-content: center;
}

.search-box .btn-primary {
    width: auto;
    min-width: 250px;
    font-size: 1.1rem;
    padding: 15px 45px;
}

.search-result {
    margin-top: 25px;
    text-align: center;
    min-height: 24px;
    font-size: 1.1rem;
}

.search-result .success {
    color: #28a745;
    font-weight: 600;
}

.search-result .error {
    color: #dc3545;
    font-weight: 600;
}

/* Features Section */
.features {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.features .container {
    max-width: 100vw;
}

.features.bg-fixed {
    background-attachment: fixed;
}

/* Features Swiper */
.features-swiper {
    padding: 20px 0;
    width: 100%;
}

.features-swiper .swiper-wrapper {
    width: 70vw;
}

.features-swiper .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
    min-height: 40vh;
}

.feature-item {
    text-align: center;
    padding: 30px 25px;
    background: rgba(248, 230, 235, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    min-height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 100%;
}

.feature-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.feature-item h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

/* Pricing */
.pricing {
    background: #fafafa;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.pricing.bg-fixed {
    background-attachment: fixed;
}

.pricing-swiper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.pricing-swiper .swiper-wrapper {
    display: flex;
}

.pricing-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.package-card {
    background: white;
    padding: 2vh 1.5vw;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
    height: 60vh;
    margin: 0 auto;
}

.package-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5vh;
    min-height: auto;
    font-weight: 700;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5vh;
    color: var(--primary);
    min-height: auto;
}

.price span {
    font-size: 0.5em;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 2vh;
    text-align: center;
    flex: 1;
    overflow: visible;
}

.features-list li {
    padding: 1vh 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    position: relative; /* KAN177: Added for correct tooltip positioning */
}

.features-list li:first-child {
    border-top: 1px solid #eee;
}

.features-list li.prev-package-plus {
    color: #333;
}

.features-list li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

/* Tooltip and Info Icon (KAN177) */
.feature-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.2px solid #ccc;
    color: #999;
    font-size: 10px;
    cursor: help;
    transition: all 0.3s;
    margin-left: 5px;
    vertical-align: middle;
}

.feature-info-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff9e6;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    width: 220px;
    max-width: 80vw; /* KAN177: Ensure it fits on mobile */
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    z-index: 100;
    font-weight: 400;
    line-height: 1.4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    white-space: normal; /* KAN177: Ensure text wraps */
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.feature-info-icon:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .tooltip {
        width: 180px;
    }
}

.btn-outline {
    display: inline-flex;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    padding: 1.2vh 2.5vw;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.nav-logo {
    display: none;
}

@media (min-width: 1024px) {
    .pricing .container {
        max-width: 1200px;
    }
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* How It Works Section (KAN325) */
.how-it-works {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.how-it-works.bg-fixed {
    background-attachment: fixed;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    margin-top: 60px;
    padding: 0 40px;
    z-index: 2;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-item:nth-child(2) {
    margin-top: 40px;
}

.step-item:nth-child(3) {
    margin-top: -20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: #444;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35% 65% 70% 30% / 30% 40% 60% 70%;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(233, 168, 188, 0.4);
    transition: transform 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.blobs-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.25;
    animation: blobFloat 25s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #fbcfe8;
    bottom: 0%;
    right: 15%;
    animation-delay: -5s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: var(--primary);
    top: 20%;
    right: 5%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(250px, 150px) scale(1.3) rotate(20deg); }
    66% { transform: translate(-150px, 300px) scale(0.9) rotate(-150deg); }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        padding: 0;
    }
    
    .step-item:nth-child(n) {
        margin-top: 0;
    }
    
    .blobs-container {
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: hidden;
        justify-content: center;
        padding: 80px 40px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateY(0);
        visibility: visible;
    }

    .nav-logo {
        display: block;
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .nav-logo img {
        max-height: 50px;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
        color: var(--primary);
        margin: 0;
    }

    .main-nav a {
        margin-left: 0;
        padding: 15px;
        text-align: center;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .hamburger-menu {
        display: flex !important;
    }

    .package-card {
        min-height: 40vh;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    body::before {
        display: block;
    }
    
    .main-header {
        padding: 10px 15px !important;
        background: transparent !important;
        box-shadow: none !important;
        position: fixed !important;
		width: 100% !important;
        left: 0 !important;
    }
    
    .hero-slider {
		height: 100vh;
    }
    
    .hero-slider::before {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
        order: 2;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative;
        width: 100%;
        gap: 10px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        order: 1;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .hamburger-menu {
        order: 2;
        padding: 8px;
        flex-shrink: 0;
    }
    
    .hamburger-menu span {
        width: 26px;
        height: 3px;
    }
    
    .main-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        padding: 68px 18px 20px;
        gap: 12px;
        z-index: 1000;
        backdrop-filter: blur(5px);
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .nav-logo {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-logo img {
        max-height: 50px;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
        color: var(--primary);
        margin: 0;
    }
    
    @media (max-width: 768px) {
        .nav-logo {
            display: block;
        }
    }
    
    .main-nav a {
        margin-left: 0;
        padding: 13px 15px;
        text-align: center;
        font-size: 1rem;
        border-radius: 8px;
        transition: background 0.2s;
        display: block;
    }
    
    .main-nav a:hover {
        background: var(--gray);
    }
    
    .btn-login, .btn-login-outline {
        width: 100%;
        padding: 11px 18px;
        font-size: 0.95rem;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
		padding-top: 10vh;
    }
	
	.landing-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
		padding-top: 16vh;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .features-swiper {
        padding: 10px 0;
    }
    
    .features-swiper .swiper-wrapper {
        width: 70vw;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    .pricing-swiper {
        padding: 10px 0;
    }
    
    .package-card {
        padding: 2vh 1.5vw;
        min-height: 400px;
        max-width: 320px;
        height: auto;
    }
    
    .price {
        font-size: 2rem;
        margin-bottom: 1vh;
    }
    
    .package-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1vh;
    }
    
    .features-list {
        margin-bottom: 1.5vh;
    }
    
    .features-list li {
        padding: 0.8vh 0;
        font-size: 0.85rem;
    }
    
    .btn-outline {
        width: 100%;
        padding: 1.2vh 1.5vw;
        font-size: 0.9rem;
    }
    
    .search-wrapper {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .input-group {
        flex-direction: column;
        padding: 12px 15px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .input-group input {
        margin-bottom: 10px;
        font-size: 16px;
        text-align: center;
    }
    
    .input-group .suffix {
        display: inline;
        font-size: 1.1rem;
    }
    
    .search-box .btn-primary {
        width: 100%;
        font-size: 0.95rem;
        padding: 12px 20px;
        min-width: auto;
    }
    
    .search-text {
        margin-bottom: 30px;
    }
    
    .search-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .highlight-inline {
        padding: 1px 4px;
        font-size: 0.9rem;
    }
    
}

@media (max-width: 480px) {
    body::before {
        display: block;
    }
    
    .main-header {
        padding: 9px 12px;
        background: transparent !important;
        box-shadow: none !important;
        position: fixed !important;
		width: 100% !important;
        left: 0 !important;
    }
    
    .hero-slider {
		height: 100vh;
    }
    
    .hero-slider::before {
        display: none;
    }
    
    .hamburger-menu {
        order: 2;
    }
    
    .header-container {
        padding: 0 12px;
        gap: 8px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        order: 1;
    }
    
    .logo h1 {
        font-size: 0.95rem;
        margin: 0;
    }
    
    .logo img {
        max-height: 32px;
    }
    
    .hamburger-menu {
        padding: 6px;
        flex-shrink: 0;
    }
    
    .hamburger-menu span {
        width: 24px;
        height: 2.5px;
    }
    
    .main-nav {
        padding: 65px 14px 15px;
        gap: 8px;
    }
    
    .main-nav a {
        padding: 12px 12px;
        font-size: 0.95rem;
    }
    
    .btn-login, .btn-login-outline {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
		padding-top: 10vh;
    }
	
	.landing-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
		padding-top: 16vh;
    }
    
    .section-title::after, .landing-section-title::after {
        width: 40px;
    }
    
    .feature-icon {
        font-size: 2rem;
        height: 60px;
    }
    
    .features-swiper .swiper-wrapper {
        width: 70vw;
    }
    
    .feature-item h3 {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
    
    .package-card {
        height: auto;
        min-height: 450px;
        padding: 20px;
    }
    
    .package-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .price {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .features-list {
        margin-bottom: 15px;
        font-size: 0.85rem;
    }
    
    .features-list li {
        padding: 6px 0;
        font-size: 0.8rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .btn-outline {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .badge {
        top: 10px;
        right: 10px;
        font-size: 0.65rem;
        padding: 3px 8px;
    }
    
    .main-footer {
        padding: 25px 0;
    }
    
    .footer-content {
        gap: 10px;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
    
    .footer-links a {
        display: inline;
        margin: 5px 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .logo h1 {
        font-size: 0.95rem;
    }
    
    .logo img {
        max-height: 32px;
    }
    
    .hamburger-menu span {
        width: 22px;
        height: 2px;
        gap: 4px;
    }
    
    .main-nav a {
        padding: 10px 10px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
		padding-top: 10vh;
    }
	
	.landing-section-title {
        font-size: 2rem;
        margin-bottom: 40px;
		padding-top: 16vh;
    }
        
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .features-swiper .swiper-wrapper {
        width: 95vw;
        max-width: 95vw;
    }
    
    .feature-item {
        padding: 15px 10px;
    }
    
    .package-card {
        padding: 15px;
        min-height: 400px;
    }
	.hero-slider {
		height: 100vh;
	}
	.hero-slider::before {
		height: 100vh;
	}
}

/* Custom Styles for KAN322 */
.swiper-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 100;
}
.swiper-progress-bar .progress {
    width: 0%;
    height: 100%;
    background: var(--primary);
}

.welcome-slide {
    background: #ffffff !important;
    background-image: radial-gradient(circle at 100% 100%, #fbe9ef 0%, #ffffff 50%) !important;
    color: var(--text) !important;
}

.welcome-slide .slide-content {
    max-width: 1000px;
}

.welcome-slide h1 {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: wave 3.5s infinite ease-in-out;
    transform-origin: 70% 70%;
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}

.welcome-slide h1 span {
    color: var(--primary);
}

.welcome-slide h1 span.black-exclamation {
    color: var(--text) !important;
}

.welcome-slide .subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: none !important;
}

@keyframes wave {
    0% { transform: rotate( 0.0deg) }
    10% { transform: rotate( 2.0deg) }
    20% { transform: rotate(-1.5deg) }
    30% { transform: rotate( 2.0deg) }
    40% { transform: rotate(-1.0deg) }
    50% { transform: rotate( 1.5deg) }
    60% { transform: rotate( 0.0deg) }
    100% { transform: rotate( 0.0deg) }
}

.swiper-slide-active .subtitle {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: textFocus 1.2s ease-out;
}

@keyframes textFocus {
    0% { filter: blur(5px); letter-spacing: 2px; }
    100% { filter: blur(0); letter-spacing: normal; }
}

.btn-scroll-down {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-scroll-down:hover {
    color: var(--primary);
}

.btn-scroll-down span {
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d88ba2;
}

.btn-scroll-down .arrow-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #d88ba2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d88ba2;
    animation: bounce 2s infinite;
}

.btn-scroll-down .arrow-icon svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@media (max-width: 768px) {
    .welcome-slide h1 {
        font-size: 2.5rem;
    }
    .welcome-slide .subtitle {
        font-size: 1.1rem;
    }
    .btn-scroll-down span {
        font-size: 1.2rem;
    }
}

