/* Global Styles */
:root {
    --primary-color: #00bcd4;
    /* Cyan/Ice */
    --secondary-color: #0288d1;
    /* Deep Blue */
    --accent-color: #e0f7fa;
    /* Very Light Ice */
    --text-color: #37474f;
    /* Blue Grey */
    --bg-color: #f0faff;
    /* Alice Blue/Snow tint */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

section {
    scroll-margin-top: 100px;
}

/* Navbar Styles */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Dark Ice Theme */
    background: rgba(0, 21, 36, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
}

.logo a {
    text-decoration: none;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-family: 'Iceland', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #80deea 0%, #00bcd4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.4));
    background-size: 200% auto;
    animation: flow-text 5s linear infinite;
}

.logo img {
    height: 50px;
    width: auto;
    animation: float-logo 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    /* Slight zoom on hover */
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #e0f7fa;
    /* Ice White */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid transparent;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #fff;
    background: rgba(0, 188, 212, 0.15);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), var(--primary-color), transparent);
    background-size: 200% 100%;
    animation: ice-shimmer 2s infinite linear paused;
    transition: width 0.4s ease-out, opacity 0.3s;
    opacity: 0;
    box-shadow: 0 0 8px rgba(0, 188, 212, 0.8);
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
    animation-play-state: running;
}

@keyframes ice-shimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}



@keyframes flow-text {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.3));
    }

    50% {
        transform: translateY(-8px);
        filter: drop-shadow(0 10px 20px rgba(0, 188, 212, 0.5));
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

@media (max-width: 768px) {
    .nav-links {
        display: block;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 21, 36, 0.95);
        /* Darker, more solid background */
        backdrop-filter: blur(15px);
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(0, 188, 212, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 400px;
        /* Check max height needed */
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animations for list items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #e0f7fa;
    }

    .nav-link:hover {
        background: rgba(0, 188, 212, 0.1);
        transform: none;
        box-shadow: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Hero Section Styles - Theme Antartika */
/* Hero Section Styles - Theme Terang Dingin (Bright Ice) */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at top right, #e0f7fa 0%, #ffffff 80%);
    color: #37474f;
    padding-top: 100px;
    padding-bottom: 50px;
}

/* Ice Overlay & Snow - Subtle for Bright Theme */
.ice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(0, 188, 212, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 188, 212, 0.08), transparent 25%);
    z-index: 1;
    pointer-events: none;
}

.snow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.snow {
    background: #b2ebf2;
    /* Light Cyan Snow */
    border-radius: 50%;
    box-shadow: 2vw 2vh 2px 2px #e0f7fa;
    width: 6px;
    height: 6px;
    opacity: 0.6;
    animation: snowfall 30s linear infinite;
}

.snow.layer2 {
    background: #80deea;
    width: 4px;
    height: 4px;
    opacity: 0.5;
    animation-duration: 45s;
    animation-direction: reverse;
}

.snow.layer3 {
    background: #4dd0e1;
    width: 2px;
    height: 2px;
    opacity: 0.4;
    animation-duration: 60s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh);
    }

    100% {
        transform: translateY(100vh);
    }
}

/* Ice Mountains Background (Massive) */
.mountain-range {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85%;
    /* Massive height */
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.mountain {
    position: absolute;
    bottom: -2px;
    width: 100%;
    background-size: cover;
}

.m-back {
    left: -20%;
    width: 150%;
    height: 100%;
    background: linear-gradient(180deg, #b2ebf2 0%, #ffffff 90%);
    clip-path: polygon(0% 100%, 15% 45%, 35% 65%, 55% 20%, 75% 55%, 100% 100%);
    opacity: 0.3;
}

.m-mid {
    right: -10%;
    width: 100%;
    height: 85%;
    background: linear-gradient(180deg, #80deea 0%, #ffffff 90%);
    clip-path: polygon(10% 100%, 35% 15%, 55% 50%, 75% 25%, 95% 100%);
    opacity: 0.5;
}

.m-front {
    left: 5%;
    width: 90%;
    height: 40%;
    /* Lower for foreground shelf */
    background: linear-gradient(180deg, #4dd0e1 0%, #ffffff 80%);
    clip-path: polygon(0% 100%, 10% 40%, 30% 20%, 60% 35%, 80% 25%, 100% 100%);
    filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.3));
    opacity: 0.8;
}

/* Ice Chunks */
.ice-chunks {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
    pointer-events: none;
}

.chunk {
    position: absolute;
    bottom: -10px;
    background: linear-gradient(180deg, #e0f7fa 0%, #fff 100%);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.2);
    opacity: 0.9;
}

.c1 {
    width: 140px;
    height: 90px;
    left: 8%;
    clip-path: polygon(20% 0%, 80% 10%, 100% 100%, 0% 100%);
    animation: float-chunk 6s ease-in-out infinite;
}

.c2 {
    width: 180px;
    height: 110px;
    right: 12%;
    clip-path: polygon(10% 20%, 60% 0%, 90% 30%, 100% 100%, 0% 100%);
    animation: float-chunk 8s ease-in-out infinite reverse;
}

.c3 {
    width: 90px;
    height: 70px;
    left: 45%;
    bottom: -20px;
    clip-path: polygon(40% 0%, 100% 40%, 80% 100%, 0% 100%);
    animation: float-chunk 7s ease-in-out infinite 1s;
}

@keyframes float-chunk {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Real Penguins - Walking Animation */
.penguins-group {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.penguins-group img {
    width: 150px;
    height: auto;
    display: block;
}

.p-left {
    bottom: 8%;
    left: 5%;
    /* Walk path: 0 -> 200px -> 0 */
    animation: penguin-patrol-left 25s linear infinite;
}

.p-right {
    bottom: 12%;
    right: 10%;
    /* Walk path: 0 -> -200px -> 0 */
    animation: penguin-patrol-right 30s linear infinite;
}

@keyframes penguin-patrol-left {
    0% {
        transform: translateX(0) scaleX(1);
    }

    45% {
        transform: translateX(30vw) scaleX(1);
    }

    49% {
        transform: translateX(30vw) scaleX(-1);
    }

    /* Turn */
    50% {
        transform: translateX(30vw) scaleX(-1);
    }

    95% {
        transform: translateX(0) scaleX(-1);
    }

    99% {
        transform: translateX(0) scaleX(1);
    }

    /* Turn back */
    100% {
        transform: translateX(0) scaleX(1);
    }
}

@keyframes penguin-patrol-right {
    0% {
        transform: translateX(0) scaleX(-1);
    }

    /* Face Left */
    45% {
        transform: translateX(-30vw) scaleX(-1);
    }

    /* Walk Left */
    49% {
        transform: translateX(-30vw) scaleX(1);
    }

    /* Turn Right */
    50% {
        transform: translateX(-30vw) scaleX(1);
    }

    95% {
        transform: translateX(0) scaleX(1);
    }

    /* Walk Right */
    99% {
        transform: translateX(0) scaleX(-1);
    }

    /* Turn back */
    100% {
        transform: translateX(0) scaleX(-1);
    }
}

/* Content Styling - Split Layout */
.hero-content {
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column */
.hero-left {
    text-align: left;
}

.hero-title {
    font-family: 'Iceland', cursive;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #006064;
    /* Dark Cyan */
    text-shadow: none;
}

.highlight-ice {
    background: linear-gradient(180deg, #00bcd4 0%, #0097a7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.2));
    display: inline-block;
    animation: flow-text 4s linear infinite;
    background-size: 200% auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #546e7a;
    /* Blue Grey */
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.6;
    font-weight: 500;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 188, 212, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 188, 212, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #00838f;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.1);
}

/* Right Column - Glass Panel (Light) */
.glass-panel {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.glass-panel:hover {
    transform: perspective(1000px) rotateY(0deg);
    background: rgba(255, 255, 255, 0.8);
}

.panel-title {
    font-family: 'Iceland', sans-serif;
    font-size: 1.5rem;
    color: #006064;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    padding-bottom: 0.5rem;
}

/* Feature Grid inside Panel */
.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    font-size: 0.9rem;
    color: #455a64;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
}

.check-icon {
    color: #00bcd4;
    font-weight: bold;
}

/* Stats Grid inside Panel */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    padding-top: 1.5rem;
}

.stat-box {
    text-align: center;
}

.stat-val {
    display: block;
    font-family: 'Iceland', sans-serif;
    font-size: 1.8rem;
    color: #0097a7;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-lbl {
    font-size: 0.75rem;
    color: #78909c;
    text-transform: uppercase;
}

/* CTAs */
.cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-ice-glow {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ice-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.5);
}

.btn-ice-glow .liquid {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-ice-glow:hover .liquid {
    opacity: 1;
    top: -20%;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.6);
    color: #00838f;
    backdrop-filter: blur(10px);
    border: 1px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-glass:hover {
    background: #fff;
    border-color: #00bcd4;
    color: #006064;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #000000;
    /* Pure Black */
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 20;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    text-decoration: none;
    cursor: pointer;
}

.arrow-down {
    width: 16px;
    height: 16px;
    border-right: 3px solid #00acc1;
    /* Bright accent */
    border-bottom: 3px solid #00acc1;
    transform: rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section Styles - Bright */
/* About Section Styles - Bright (Extra Compact) */
.about-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #e1f5fe 100%);
    color: #37474f;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-title {
    font-family: 'Iceland', cursive;
    font-size: 2rem;
    color: #006064;
    margin-bottom: 0.4rem;
    letter-spacing: 2px;
}

.divider-ice {
    height: 3px;
    width: 50px;
    background: linear-gradient(90deg, transparent, #00acc1, transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    /* Center align image and text */
}

.about-image {
    position: relative;
    max-width: 60%;
    /* Reduced width */
    margin: 0 auto;
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.15);
    border: 1px solid #fff;
    /* Rich icy background */
    background: radial-gradient(circle at 30% 30%, #e0f7fa 0%, #ffffff 60%, #b2ebf2 100%);
}

.about-img-real {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
    /* Above shape */
}

.about-image-wrapper:hover .about-img-real {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #00bcd4, #00838f);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
    z-index: 2;
}

/* Real Wind Animation (Clear & Strong) */
.wind-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.wind {
    position: absolute;
    /* Brighter white with slight cyan tail for visibility */
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1) 40%, rgba(128, 222, 234, 0.3) 100%);
    border-radius: 4px;
    /* Drop shadow makes it pop against light background */
    filter: drop-shadow(0 1px 4px rgba(0, 131, 143, 0.3));
    opacity: 0;
}

.w1 {
    top: 35%;
    left: 35%;
    width: 120px;
    height: 4px;
    /* Thicker */
    animation: blow-hard 1.2s infinite cubic-bezier(0.1, 0.7, 1.0, 0.1);
}

.w2 {
    top: 50%;
    left: 25%;
    width: 200px;
    height: 6px;
    /* Thick stream */
    animation: blow-hard 1.5s infinite cubic-bezier(0.1, 0.7, 1.0, 0.1) 0.2s;
}

.w3 {
    top: 65%;
    left: 40%;
    width: 100px;
    height: 3px;
    animation: blow-hard 1.3s infinite cubic-bezier(0.1, 0.7, 1.0, 0.1) 0.5s;
}

.w4 {
    top: 42%;
    left: 30%;
    width: 250px;
    height: 5px;
    animation: blow-hard 1.8s infinite cubic-bezier(0.1, 0.7, 1.0, 0.1) 0.8s;
}

/* Mist Effect (Clearer) */
.mist {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(178, 235, 242, 0.4) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(5px);
    /* Less blur for clarity */
    opacity: 0;
}

.m1 {
    top: 30%;
    left: 45%;
    width: 80px;
    height: 80px;
    animation: mist-float 2s infinite linear;
}

.m2 {
    top: 55%;
    left: 35%;
    width: 100px;
    height: 60px;
    animation: mist-float 2.5s infinite linear 1s;
}

@keyframes blow-hard {
    0% {
        transform: translateX(0) scaleX(0.2);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateX(400px) scaleX(1.5);
        opacity: 0;
    }
}

@keyframes mist-float {
    0% {
        transform: translateX(0) scale(0.5);
        opacity: 0;
    }

    30% {
        opacity: 0.7;
    }

    100% {
        transform: translateX(250px) scale(1.8);
        opacity: 0;
    }
}

.about-badge .year {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
}

.about-badge .text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #e0f7fa;
}

.abstract-ice-shape {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 188, 212, 0.08), transparent 60%);
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-text {
    padding-top: 0;
}

.narrative-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #fff;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.15);
    backdrop-filter: blur(5px);
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #00838f;
    line-height: 1.3;
}

.about-desc {
    color: #546e7a;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    /* Slightly improved readability */
    font-size: 0.8rem;
    text-align: justify;
    height: auto;
    width: 100%;
    overflow: visible;
    word-wrap: break-word;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid #fff;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
}

.value-item:hover {
    transform: translateX(5px);
    background: #fff;
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.1);
}

.value-icon {
    font-size: 1rem;
    background: rgba(0, 188, 212, 0.1);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0097a7;
}

.value-info h4 {
    color: #006064;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.value-info p {
    color: #607d8b;
    font-size: 0.75rem;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .glass-panel {
        transform: none;
        padding: 1.5rem;
        margin: 0 1rem;
        /* Add margin to prevent edge touching */
    }

    .glass-panel:hover {
        transform: none;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller title for mobile */
    }

    /* Mobile About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr 1fr;
        /* Keep horizontal on mobile */
        gap: 0.5rem;
    }

    .stat-val {
        font-size: 1.2rem;
    }

    .stat-lbl {
        font-size: 0.6rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .feature-item {
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    .btn {
        width: auto;
        /* Allow buttons to be natural width */
        padding: 0.8rem 1.5rem;
        flex: 1;
        /* Equal width buttons */
        font-size: 0.8rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    /* Mobile Badge adjustments */
    .about-badge {
        top: auto;
        bottom: 5px;
        right: 5px;
        padding: 0.25rem 0.5rem;
        box-shadow: 0 3px 10px rgba(0, 188, 212, 0.4);
        border-radius: 6px;
    }

    .about-badge .year {
        font-size: 0.9rem;
    }

    /* ... existing mobile styles ... */
    .about-badge .text {
        font-size: 0.45rem;
        line-height: 1.1;
    }
}

/* Service Section Styles */
.service-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #e1f5fe 0%, #ffffff 50%, #e0f7fa 100%);
    position: relative;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #00838f;
    margin-top: 0.5rem;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(178, 235, 242, 0.4);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2);
    border-color: #b2ebf2;
}

.service-icon-box {
    width: 100%;
    height: 220px;
    /* Much larger area */
    background: transparent;
    border-radius: 0;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.service-icon-img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 188, 212, 0.2));
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-img {
    transform: scale(1.1) translateY(-5px);
}

.service-name {
    font-family: 'Iceland', sans-serif;
    font-size: 1.8rem;
    color: #006064;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-desc {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tags span {
    background: rgba(0, 188, 212, 0.1);
    color: #00838f;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-card-action {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
}

.btn-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
    color: #fff;
}

/* Mobile Service Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #e1f5fe 0%, #ffffff 100%);
}

.contact-container {
    padding: 3rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-heading {
    font-size: 1.8rem;
    color: #006064;
    margin-bottom: 2rem;
    font-family: 'Iceland', sans-serif;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
}

.c-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00bcd4, #00838f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
    flex-shrink: 0;
    /* Prevent shrinking */
}

.c-text {
    display: flex;
    flex-direction: column;
}

.c-text .label {
    font-size: 0.8rem;
    color: #78909c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-text .value {
    font-size: 1.1rem;
    color: #37474f;
    font-weight: 600;
}

.contact-cta {
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #fff;
    text-align: center;
}

.contact-cta h3 {
    color: #006064;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #546e7a;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        padding: 1.5rem;
    }
}

/* Footer Styles */
.site-footer {
    background: #001524;
    color: #b0bec5;
    padding: 60px 0 20px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #00bcd4;
}

.site-footer .container {
    max-width: 1150px;
    padding: 0 4rem;
    margin: 0 auto;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00bcd4, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo .brand-text {
    font-family: 'Iceland', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #90a4ae;
}

.footer-col h4 {
    color: #e0f7fa;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00bcd4;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #00bcd4;
    padding-left: 5px;
}

.contact-list-sm li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.contact-list-sm i {
    color: #00bcd4;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #00bcd4;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse-green 2s infinite;
}

.float-wa:hover {
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list-sm li {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #e1f5fe 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid rgba(0, 188, 212, 0.15);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.1);
    transform: translateY(-2px);
    border-color: #00bcd4;
}

.faq-item details summary {
    padding: 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #37474f;
    transition: color 0.3s;
}

.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details[open] summary {
    color: #00838f;
    border-bottom: 1px solid rgba(0, 188, 212, 0.1);
    background: rgba(224, 247, 250, 0.3);
}

.faq-item .q-text {
    font-size: 1.05rem;
}

.faq-item .icon {
    transition: transform 0.3s ease;
    color: #00bcd4;
    font-size: 0.9rem;
}

.faq-item details[open] .icon {
    transform: rotate(180deg);
}

.faq-item .a-content {
    padding: 1.5rem;
    color: #546e7a;
    line-height: 1.6;
    background: #fff;
    animation: slideInBottom 0.3s ease;
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating WhatsApp Premium */
.float-wa-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-wa-tooltip {
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: #455a64;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    right: 80px;
    white-space: nowrap;
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.float-wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.float-wa-wrapper:hover .float-wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Left Float Variant */
.float-wa-wrapper.float-wa-left {
    right: auto;
    left: 30px;
}

.float-wa-wrapper.float-wa-left .float-wa-tooltip {
    right: auto;
    left: 80px;
    transform: translateX(-20px);
}

.float-wa-wrapper.float-wa-left .float-wa-tooltip::after {
    right: auto;
    left: -6px;
    border-left: none;
    border-right: 6px solid #fff;
}

.float-wa-wrapper.float-wa-left:hover .float-wa-tooltip {
    transform: translateX(0);
}

.float-wa-btn {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.2rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    animation: floatBob 3s ease-in-out infinite;
}

.float-wa-btn:hover {
    transform: scale(1.1);
}

.float-wa-btn i {
    z-index: 2;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseRing 2s infinite;
    z-index: 1;
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 180%;
        height: 180%;
        opacity: 0;
    }
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 188, 212, 0.1);
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.chat-header {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
}

.agent-details {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.agent-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00e676;
    border-radius: 50%;
    display: inline-block;
}

.close-chat {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.8;
}

.chat-body {
    padding: 15px;
    height: 250px;
    overflow-y: auto;
    background: #f5f7f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-date {
    text-align: center;
    font-size: 0.75rem;
    color: #90a4ae;
    margin-bottom: 5px;
}

.message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.message.received {
    align-self: flex-start;
}

.message.sent {
    align-self: flex-end;
}

.message .msg-bubble {
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.message.received .msg-bubble {
    background: #fff;
    border-top-left-radius: 2px;
    color: #37474f;
}

.message.sent .msg-bubble {
    background: #e0f7fa;
    border-top-right-radius: 2px;
    color: #006064;
}

.msg-time {
    font-size: 0.7rem;
    color: #b0bec5;
    margin-left: 5px;
}

.message.sent .msg-time {
    text-align: right;
    margin-right: 5px;
}

.chat-footer {
    padding: 10px 15px;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    border: none;
    background: #f5f7f9;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    outline: none;
}

.send-btn {
    background: #00bcd4;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.send-btn:hover {
    background: #0097a7;
}

/* Price Badge Styling for Service Cards */
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    margin: 0.8rem 0 1rem 0;
    box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-price 2s ease-in-out infinite;
}

.price-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer-price 3s linear infinite;
}

.price-badge span {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
    margin-left: 0.3rem;
}

@keyframes pulse-price {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 188, 212, 0.6);
    }
}

@keyframes shimmer-price {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}