/* ============================================
   RUMAH360 - Premium Landing Page
   Brand Colors:
     Primary: Deep Navy Blue (#0F2B4C)
     Secondary: Teal/Fresh Green (#1A8D5F)
   Typography: Poppins
   ============================================ */

/* --- CSS Variables --- */
:root {
    --navy: #0F2B4C;
    --navy-dark: #091D35;
    --navy-light: #1A3D6B;
    --teal: #1A8D5F;
    --teal-light: #22B573;
    --teal-dark: #14734D;
    --teal-glow: rgba(34, 181, 115, 0.25);
    --green-pale: #E8F5EE;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-light: #EEF1F5;
    --gray: #9EAAB8;
    --gray-dark: #5A6A7A;
    --text: #2C3E50;
    --text-light: #6B7D8D;
    --shadow-sm: 0 2px 8px rgba(15, 43, 76, 0.05);
    --shadow: 0 4px 20px rgba(15, 43, 76, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 43, 76, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 43, 76, 0.15);
    --shadow-teal: 0 8px 30px rgba(26, 141, 95, 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

::selection {
    background: var(--teal);
    color: var(--white);
}

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-white { color: var(--white) !important; }
.text-white-soft { color: rgba(255,255,255,0.7) !important; }
.text-left { text-align: left !important; }
.text-gradient {
    background: linear-gradient(135deg, var(--teal-light), #A8E6CF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 141, 95, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.92rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   SCROLLING TICKER BANNER
   ============================================ */
.ticker-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(34, 181, 115, 0.2);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 35s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.ticker-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    padding: 0 12px;
}

.ticker-item i {
    color: var(--teal-light);
    margin-right: 6px;
    font-size: 0.68rem;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
    opacity: 0.5;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 18px 0;
}

.navbar.scrolled {
    background: rgba(9, 29, 53, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

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

.logo-icon {
    height: 38px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
}

.logo-icon-sm {
    height: 22px;
}

.logo-footer {
    margin-bottom: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-sm .logo-text,
.logo-sm {
    font-size: 1.2rem;
}

.logo-accent {
    color: var(--teal-light);
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    margin-left: 8px;
    box-shadow: 0 2px 10px rgba(26, 141, 95, 0.3);
}

.nav-links .nav-cta:hover {
    box-shadow: 0 4px 20px rgba(26, 141, 95, 0.5);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s ease, transform 8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 29, 53, 0.92) 0%, rgba(15, 43, 76, 0.75) 50%, rgba(26, 141, 95, 0.55) 100%);
    z-index: 1;
}

/* Floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--white);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 20%;
    animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    animation: float 18s infinite ease-in-out 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-5deg); }
    75% { transform: translate(15px, 10px) rotate(3deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 140px;
    padding-bottom: 120px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(34, 181, 115, 0.15);
    border: 1px solid rgba(34, 181, 115, 0.3);
    border-radius: 50px;
    color: var(--teal-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--teal-light);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--teal-light);
}

.stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* Hero Slide Indicators */
.hero-indicators {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-indicator {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--white);
    border-radius: 2px;
    transition: none;
}

.hero-indicator.active::after {
    width: 100%;
    transition: width 6s linear;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-indicator.active {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    line-height: 0;
    overflow: hidden;
}

.wave-bottom {
    bottom: -2px;
}

.wave-divider svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ============================================
   SECTIONS - General
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-white { background: var(--white); }
.section-light { background: var(--off-white); }

.section-gradient {
    background: var(--teal-dark);
    padding-bottom: 140px;
}

.section-dark {
    background: linear-gradient(180deg, var(--navy-dark), var(--navy));
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 5px 16px;
    background: var(--green-pale);
    color: var(--teal);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag.tag-light {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--white);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-divider {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    border-radius: 2px;
    margin: 0 auto;
}

.divider-white {
    background: linear-gradient(90deg, rgba(255,255,255,0.6), var(--white));
}

.divider-left {
    margin: 0 0 28px 0;
}

/* --- Grid --- */
.grid {
    display: grid;
    gap: 28px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   PROBLEM CARDS
   ============================================ */
.problem-card {
    text-align: center;
    padding: 44px 30px 40px;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.problem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent, var(--teal-light), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green-pale), #D4F0E2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--teal);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.icon-ring {
    position: absolute;
    inset: -6px;
    border-radius: 24px;
    border: 2px dashed rgba(26, 141, 95, 0.15);
    transition: var(--transition);
}

.problem-card:hover .problem-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    transform: scale(1.05);
}

.problem-card:hover .icon-ring {
    border-color: rgba(26, 141, 95, 0.3);
    transform: rotate(30deg);
}

.problem-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================
   SOLUTION CARDS - Hover Reveal Style
   ============================================ */
.solution-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: 0 20px 60px rgba(26, 141, 95, 0.25),
                0 0 0 1px rgba(26, 141, 95, 0.15);
}

.solution-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    z-index: 2;
}

/* Step number badge - corner label */
.solution-step {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.2);
    z-index: 3;
    text-transform: uppercase;
}

/* Front content - always visible */
.solution-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease;
}

.solution-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(26, 141, 95, 0.35);
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reveal content - hidden by default */
.solution-reveal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 28px 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.solution-reveal p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin: 0;
}

/* Hover state - shift front up, reveal slides in */
.solution-card:hover .solution-front {
    transform: translateY(-30px);
}

.solution-card:hover .solution-icon {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(26, 141, 95, 0.4);
}

.solution-card:hover .solution-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing line at bottom on hover */
.solution-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--teal-light), transparent);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3;
}

.solution-card:hover::after {
    width: 80%;
}

/* ============================================
   GALLERY / COMPARE SLIDER
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.compare-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    aspect-ratio: 4/3;
}

.compare-slider:hover {
    box-shadow: var(--shadow-xl);
}

.compare-after {
    position: absolute;
    inset: 0;
}

.compare-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compare-before {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 1;
    border-right: 3px solid var(--white);
}

.compare-before img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

/* Handle */
.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.compare-handle-line {
    width: 3px;
    flex: 1;
    background: var(--white);
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.compare-handle-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.compare-slider:hover .compare-handle-circle,
.compare-slider.active .compare-handle-circle {
    transform: scale(1.1);
}

.compare-handle-circle i {
    font-size: 0.6rem;
    color: var(--navy);
}

/* Labels */
.compare-label {
    position: absolute;
    top: 14px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.compare-label-before {
    left: 14px;
    background: rgba(220, 53, 69, 0.8);
    color: var(--white);
}

.compare-label-after {
    right: 14px;
    background: rgba(26, 141, 95, 0.85);
    color: var(--white);
}

/* --- Review Marquee --- */
.review-marquee {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    margin: 0 -24px;
    padding: 10px 0;
}

.review-track {
    display: flex;
    width: max-content;
}

.review-track-right {
    animation: review-scroll-right 40s linear infinite;
}

.review-track-left {
    animation: review-scroll-left 40s linear infinite;
}

.review-track:hover {
    animation-play-state: paused;
}

.review-track-inner {
    display: flex;
    gap: 20px;
    padding: 0 10px;
    flex-shrink: 0;
}

@keyframes review-scroll-right {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes review-scroll-left {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Google-style Review Card */
.review-card {
    width: 340px;
    flex-shrink: 0;
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: 16px;
    padding: 22px 24px 20px;
    transition: var(--transition);
    cursor: default;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-info strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.review-stars {
    display: flex;
    gap: 1px;
    color: #F5A623;
    font-size: 0.7rem;
}

.review-date {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 400;
}

.review-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.review-text {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-choose-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.why-choose-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatCard 3s infinite ease-in-out;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.1rem;
}

.floating-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--teal);
    line-height: 1.2;
}

.floating-card span {
    font-size: 0.72rem;
    color: var(--gray);
}

.why-choose-content .section-tag {
    margin-bottom: 12px;
}

.why-choose-content .section-title {
    margin-bottom: 8px;
}

.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--off-white);
}

.why-icon-box {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green-pale), #D4F0E2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--teal);
    transition: var(--transition);
}

.why-item:hover .why-icon-box {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
}

.why-item h4 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
/* Vertical Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal-light), var(--teal), var(--navy-light));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-left {
    justify-content: flex-end;
    padding-right: calc(50% + 36px);
    text-align: right;
}

.timeline-right {
    justify-content: flex-start;
    padding-left: calc(50% + 36px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-teal);
    transition: var(--transition);
}

.timeline-dot span {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(26, 141, 95, 0.5);
}

.timeline-content {
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    max-width: 320px;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-pale), #D4F0E2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.timeline-left .timeline-icon {
    margin-left: auto;
}

.timeline-item:hover .timeline-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(34, 181, 115, 0.15), rgba(34, 181, 115, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 1px;
}

.contact-item strong {
    color: var(--white);
    font-size: 0.95rem;
}

.contact-social p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(26, 141, 95, 0.3);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-group textarea ~ label {
    top: 18px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    transform: none;
    font-size: 0.68rem;
    color: var(--teal-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(34, 181, 115, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    padding-top: 22px;
}

.contact-form .btn {
    margin-top: 6px;
    padding: 16px 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 28px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-tagline {
    font-size: 0.72rem;
    color: var(--gray);
    margin-top: 4px;
}

.footer-center a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-center a:hover {
    color: var(--teal-light);
}

.footer-right p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   WHATSAPP BUBBLE
   ============================================ */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    left: 68px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy-dark);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--navy-dark);
    border-left: 0;
}

.whatsapp-bubble:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-teal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(26, 141, 95, 0.45);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.8rem; }
    .hero-stats { gap: 20px; padding: 20px 24px; }
    .stat-number { font-size: 1.6rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 32px; max-width: 100%; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.85rem; }
    .section-header { margin-bottom: 36px; }
    .section-tag { font-size: 0.68rem; padding: 4px 12px; }
    .wave-divider svg { height: 50px; }

    /* Ticker */
    .ticker-bar { height: 30px; }
    .ticker-item { font-size: 0.65rem; }
    .navbar { top: 30px; }

    /* Navbar */
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 90px 30px 40px;
        gap: 4px;
        transition: right 0.35s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }
    .nav-links.open { right: 0; }
    .nav-links a { padding: 12px 18px; font-size: 1rem; }
    .nav-links .nav-cta { margin-left: 0; margin-top: 12px; text-align: center; display: block; }
    .logo-icon { height: 30px; }
    .logo-text { font-size: 1.25rem; }

    /* Hero */
    .hero { min-height: auto; }
    .hero-content { padding-top: 100px; padding-bottom: 80px; }
    .hero-badge { font-size: 0.65rem; padding: 4px 14px; margin-bottom: 16px; }
    .hero-title { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; }
    .hero-desc { font-size: 0.88rem; margin-bottom: 24px; line-height: 1.7; }
    .hero-buttons { flex-direction: column; gap: 10px; margin-bottom: 30px; }
    .hero-buttons .btn { width: 100%; justify-content: center; text-align: center; }
    .btn-lg { padding: 13px 24px; font-size: 0.82rem; }
    .btn-outline { padding: 12px 24px; }
    .hero-stats {
        flex-direction: row;
        gap: 0;
        padding: 16px 12px;
        border-radius: var(--radius);
        justify-content: space-around;
    }
    .stat-number { font-size: 1.3rem; }
    .stat-suffix { font-size: 1rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0; }
    .stat-divider { width: 1px; height: 32px; }
    .hero-indicators { bottom: 65px; }
    .hero-indicator { width: 30px; height: 3px; }

    /* Grids */
    .grid { gap: 18px; }
    .grid-3 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; gap: 18px; }
    .compare-slider { aspect-ratio: 16/10; }
    .compare-handle-circle { width: 36px; height: 36px; }
    .compare-handle-circle i { font-size: 0.5rem; }
    .compare-label { font-size: 0.6rem; padding: 4px 10px; top: 10px; }
    .compare-label-before { left: 10px; }
    .compare-label-after { right: 10px; }
    .review-card { width: 280px; padding: 18px 18px 16px; }
    .review-avatar { width: 36px; height: 36px; font-size: 0.85rem; }
    .review-info strong { font-size: 0.82rem; }
    .review-text { font-size: 0.82rem; }
    .review-track-inner { gap: 14px; }
    .review-marquee { gap: 14px; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 30px; }
    .why-choose-image img { height: 240px; }
    .floating-card { right: 10px; bottom: -12px; padding: 14px 18px; }
    .floating-card strong { font-size: 1rem; }
    .floating-card span { font-size: 0.65rem; }
    .floating-card-icon { width: 36px; height: 36px; font-size: 0.9rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Problem/Solution cards */
    .problem-card { padding: 28px 22px 24px; }
    .problem-icon-wrapper { width: 64px; height: 64px; margin-bottom: 16px; }
    .problem-icon { width: 64px; height: 64px; font-size: 1.3rem; border-radius: 16px; }
    .icon-ring { inset: -5px; border-radius: 20px; }
    .solution-card { height: auto; }
    .solution-card-inner { padding: 28px 22px; }
    .solution-front { transform: none; gap: 12px; }
    .solution-icon { width: 56px; height: 56px; font-size: 1.2rem; }
    .solution-card:hover .solution-front { transform: none; }
    .solution-card:hover .solution-icon { width: 56px; height: 56px; font-size: 1.2rem; }
    .solution-card h3 { font-size: 1.1rem; }
    .solution-reveal {
        position: relative;
        opacity: 1;
        transform: none;
        padding: 12px 0 0;
    }
    .solution-reveal p { font-size: 0.82rem; }

    /* Why choose */
    .why-item { padding: 12px; gap: 14px; }
    .why-icon-box { width: 42px; height: 42px; font-size: 0.95rem; border-radius: 12px; }

    /* Timeline */
    .timeline-line { left: 24px; }
    .timeline-left,
    .timeline-right {
        padding-left: 64px;
        padding-right: 0;
        text-align: left;
        justify-content: flex-start;
    }
    .timeline-dot {
        left: 24px;
        width: 40px;
        height: 40px;
    }
    .timeline-dot span { font-size: 0.95rem; }
    .timeline-left .timeline-icon { margin-left: 0; }
    .timeline-content { padding: 20px; max-width: none; }
    .timeline-content h4 { font-size: 0.92rem; }
    .timeline-content p { font-size: 0.8rem; }
    .timeline-item { margin-bottom: 18px; }

    /* Contact */
    .contact-form-wrapper { padding: 24px; }
    .contact-card { padding: 20px; }
    .contact-item strong { font-size: 0.85rem; word-break: break-word; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-container { flex-direction: column; gap: 14px; text-align: center; align-items: center; }
    .footer-left { display: flex; flex-direction: column; align-items: center; }
    .footer-left .logo { justify-content: center; }

    /* WhatsApp & Back to top */
    .whatsapp-bubble { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; left: 20px; }
    .back-to-top { width: 40px; height: 40px; bottom: 20px; right: 20px; border-radius: 12px; font-size: 0.85rem; }
}

@media (max-width: 400px) {
    .hero-title { font-size: 1.65rem; }
    .hero-content { padding-top: 90px; padding-bottom: 70px; }
    .stat-number { font-size: 1.1rem; }
    .stat-suffix { font-size: 0.85rem; }
    .stat-label { font-size: 0.55rem; }
    .btn-lg { padding: 12px 20px; font-size: 0.78rem; }
    .form-row { grid-template-columns: 1fr; }
}
