/* Simple Water-Themed CSS - Hardy Graph */

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 125px; /* Top header (45px) + navbar position & height (65px + 30px) + spacing (15px) */
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    padding-top: 45px; /* Space for fixed top header */
}

/* Top Header Styles */
.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    color: white;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 500;
}

.location-info,
.datetime-info,
.weather-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.datetime-info {
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.date-display {
    font-size: 12px;
    opacity: 0.9;
}

.time-display {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.location-info i,
.weather-info i {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive adjustments for top header */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        font-size: 11px;
    }

    .location-info span,
    .weather-info span {
        display: none;
    }

    .datetime-info {
        order: -1;
    }

    .date-display {
        font-size: 10px;
    }

    .time-display {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .top-header {
        height: 40px;
    }

    body {
        padding-top: 40px;
    }

    .weather-info {
        display: none;
    }
}

/* Orange & Tosca Theme Colors */
:root {
    --water-blue: #ff6b35;
    --light-blue: #ff8c42;
    --cyan: #20b2aa;
    --teal: #48ccc4;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.2);
    --shadow: rgba(255, 107, 53, 0.1);
    --text-primary: #e65100;
    --text-secondary: #424242;
    --bg-primary: linear-gradient(
        135deg,
        #fff3e0 0%,
        #ffe0b2 50%,
        #ffcc80 100%
    );
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(255, 255, 255, 0.3);
}

/* Dark Orange & Tosca Theme Variables */
[data-theme="dark"] {
    --water-blue: #ff8a50;
    --light-blue: #ffa726;
    --cyan: #26c6da;
    --teal: #4db6ac;
    --white: #121212;
    --glass: rgba(0, 0, 0, 0.3);
    --shadow: rgba(0, 0, 0, 0.3);
    --text-primary: #ffab40;
    --text-secondary: #b0bec5;
    --bg-primary: linear-gradient(
        135deg,
        #0d1117 0%,
        #161b22 50%,
        #21262d 100%
    );
    --card-bg: rgba(33, 38, 45, 0.9);
    --border-color: rgba(255, 255, 255, 0.1);
}

/* Preloader - Simple Water Drop */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: background 0.3s ease;
}

.water-drop {
    width: 60px;
    height: 60px;
    background: var(--water-blue);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: dropBounce 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.water-drop i {
    color: white;
    font-size: 24px;
    transform: rotate(45deg);
}

@keyframes dropBounce {
    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }
    50% {
        transform: rotate(-45deg) translateY(-20px);
    }
}

.loading-text {
    position: absolute;
    bottom: 40%;
    font-weight: 600;
    color: var(--water-blue);
    letter-spacing: 2px;
}

/* Simple Navigation */
.floating-nav {
    position: fixed;
    top: 65px; /* Adjusted for top header */
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 15px 30px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--water-blue);
}

.logo-icon {
    width: 35px;
    height: 35px;
    background: var(--water-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-item {
    text-decoration: none;
    color: var(--water-blue);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item:hover,
.nav-item.active {
    background: var(--water-blue);
    color: white;
    transform: translateY(-2px);
}

.theme-toggle {
    background: var(--glass);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--water-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--water-blue);
    color: var(--white);
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    padding-top: 0px;
}

/* Hero Section - Clean Water Design */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff20"><path d="M0,60 Q250,20 500,60 T1000,60 L1000,100 L0,100 Z"/></svg>')
        repeat-x;
    background-size: 1000px 100px;
    animation: wave 20s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--water-blue);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(21, 101, 192, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-primary {
    background: var(--water-blue);
    color: white;
}

.cta-primary:hover {
    background: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow);
}

.cta-secondary {
    background: var(--glass);
    color: var(--water-blue);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Hero Visual - Simple Profile Card */
.hero-visual {
    display: flex;
    justify-content: center;
    z-index: 2;
}

.profile-card {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px var(--shadow);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow);
}

.profile-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--water-blue);
}

.status-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--teal);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: var(--water-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Enhanced About Section - Imported from index-simple */
.about-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff10"><path d="M0,60 Q250,20 500,60 T1000,60 L1000,100 L0,100 Z"/></svg>')
        repeat-x;
    background-size: 1000px 100px;
    animation: wave 25s linear infinite;
    opacity: 0.4;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-main {
    display: block;
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Layout tanpa gambar - konten full width */
.about-text-full {
    width: 100%;
    text-align: center;
}

/* Experience badge inline style */
.experience-highlight {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.experience-badge-inline {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 12px 24px;
    color: var(--water-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(2, 119, 189, 0.1);
    transition: all 0.3s ease;
}

.experience-badge-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.2);
}

.experience-badge-inline i {
    color: var(--cyan);
    font-size: 1.1rem;
}

.about-text-full {
    padding: 0;
}

.about-intro h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 25px;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(2, 119, 189, 0.8);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* 2-Column Grid Layout - Enhanced & Modern */
.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 40px;
    margin: 60px 0;
    padding: 0 20px;
    perspective: 1000px;
    align-items: start;
}

.about-card {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 25px 50px rgba(2, 119, 189, 0.1),
        0 15px 35px rgba(2, 119, 189, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    height: 750px; /* Fixed height untuk kesamaan */
    display: flex;
    flex-direction: column;
}

.about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(2, 119, 189, 0.5),
        rgba(37, 211, 253, 0.5),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.about-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 35px 70px rgba(2, 119, 189, 0.2),
        0 25px 50px rgba(2, 119, 189, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(37, 211, 253, 0.6);
}

/* Enhanced Card Header */
.card-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(2, 119, 189, 0.05),
        rgba(37, 211, 253, 0.02)
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(2, 119, 189, 0.3),
        0 5px 15px rgba(2, 119, 189, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-icon i {
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(37, 211, 253, 0.3), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(2, 119, 189, 0.4),
        0 10px 20px rgba(2, 119, 189, 0.3);
}

.about-card:hover .card-icon i {
    transform: scale(1.1);
}

.about-card:hover .icon-glow {
    opacity: 1;
}

.card-title-area {
    flex: 1;
}

.card-title-area h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--water-blue);
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.about-card:hover .card-title-area h4 {
    color: var(--cyan);
}

.card-subtitle {
    font-size: 0.9rem;
    color: rgba(2, 119, 189, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.about-card:hover .card-subtitle {
    color: rgba(37, 211, 253, 0.8);
}

/* Enhanced Card Content */
.card-content {
    padding: 20px 30px 30px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Journey Card Specific Styling */
.journey-card {
    position: relative;
}

.journey-card .card-content {
    overflow-y: auto;
    max-height: calc(750px - 130px); /* Total height minus header */
    scrollbar-width: thin;
    scrollbar-color: rgba(2, 119, 189, 0.3) transparent;
    position: relative;
}

.journey-card .card-content::-webkit-scrollbar {
    width: 6px;
}

.journey-card .card-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.journey-card .card-content::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        rgba(2, 119, 189, 0.4),
        rgba(37, 211, 253, 0.4)
    );
    border-radius: 3px;
    transition: background 0.3s ease;
}

.journey-card .card-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        rgba(2, 119, 189, 0.6),
        rgba(37, 211, 253, 0.6)
    );
}

/* Gradient fade effects for scroll indication */
.journey-card::before {
    content: "";
    position: absolute;
    top: 130px; /* After header */
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0)
    );
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 24px 24px;
}

.journey-card.has-scroll::before,
.journey-card.has-scroll::after {
    opacity: 1;
}

/* Scroll Indicator */
.journey-card .card-content::after {
    content: "↕";
    position: absolute;
    right: 15px;
    bottom: 15px;
    color: rgba(2, 119, 189, 0.4);
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0.6;
    animation: scrollHint 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes scrollHint {
    0%,
    100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* Hide scroll indicator when content is scrolled */
.journey-card .card-content.scrolled::after {
    opacity: 0.2;
}

/* Dark theme adjustments for gradient fade */
[data-theme="dark"] .journey-card::before {
    background: linear-gradient(
        to bottom,
        rgba(33, 38, 45, 0.9),
        rgba(33, 38, 45, 0)
    );
}

[data-theme="dark"] .journey-card::after {
    background: linear-gradient(
        to top,
        rgba(33, 38, 45, 0.9),
        rgba(33, 38, 45, 0)
    );
}

.card-description {
    color: rgba(2, 119, 189, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover .card-description {
    color: rgba(2, 119, 189, 0.9);
}

/* Enhanced Passion Stats */
.passion-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(37, 211, 253, 0.1),
        transparent
    );
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1)
    );
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(2, 119, 189, 0.15);
    border-color: rgba(37, 211, 253, 0.4);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(37, 211, 253, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(2, 119, 189, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: rgba(2, 119, 189, 0.9);
}

/* Enhanced Modern Timeline with Animations */
.journey-intro {
    margin-bottom: 25px;
}

.journey-description {
    color: rgba(2, 119, 189, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    font-style: italic;
}

.modern-timeline {
    position: relative;
    padding: 20px 0;
}

.modern-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--water-blue) 0%,
        var(--cyan) 50%,
        rgba(2, 119, 189, 0.3) 100%
    );
    border-radius: 2px;
    opacity: 0;
    animation: timelineAppear 1s ease 0.5s forwards;
}

@keyframes timelineAppear {
    from {
        opacity: 0;
        height: 0;
    }
    to {
        opacity: 1;
        height: 100%;
    }
}

.modern-timeline-item {
    position: relative;
    padding: 25px 0 30px 80px;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
    animation: itemSlideIn 0.6s ease forwards;
}

.modern-timeline-item:nth-child(1) {
    animation-delay: 0.8s;
}

.modern-timeline-item:nth-child(2) {
    animation-delay: 1.1s;
}

.modern-timeline-item:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes itemSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-timeline-item:hover {
    transform: translateX(8px) scale(1.02);
}

.modern-timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 35px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(2, 119, 189, 0.2),
        0 5px 15px rgba(2, 119, 189, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.modern-timeline-item:hover::before {
    transform: scale(1.3) rotate(180deg);
    box-shadow: 0 0 0 8px rgba(37, 211, 253, 0.3),
        0 8px 25px rgba(2, 119, 189, 0.4);
}

.modern-timeline-item::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 39px;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s ease;
}

.modern-timeline-item.current::before {
    background: linear-gradient(135deg, var(--cyan), #00f5ff);
    animation: currentPulse 2s infinite;
}

@keyframes currentPulse {
    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(37, 211, 253, 0.3),
            0 5px 15px rgba(37, 211, 253, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(37, 211, 253, 0.5),
            0 10px 30px rgba(37, 211, 253, 0.6);
    }
}

.modern-timeline-item:last-child {
    margin-bottom: 10px;
}

.timeline-content {
    transition: all 0.3s ease;
}

.modern-timeline-item:hover .timeline-content {
    transform: translateY(-2px);
}

.timeline-year-modern {
    display: inline-block;
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.timeline-year-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.modern-timeline-item:hover .timeline-year-modern::before {
    left: 100%;
}

.timeline-year-modern.current {
    background: linear-gradient(135deg, var(--cyan), #00f5ff);
    animation: yearGlow 2s infinite;
}

@keyframes yearGlow {
    0%,
    100% {
        box-shadow: 0 8px 20px rgba(37, 211, 253, 0.4);
    }
    50% {
        box-shadow: 0 12px 30px rgba(37, 211, 253, 0.6);
    }
}

.modern-timeline-item:hover .timeline-year-modern {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 12px 30px rgba(2, 119, 189, 0.4);
}

.timeline-title {
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modern-timeline-item:hover .timeline-title {
    color: var(--cyan);
    transform: translateX(5px);
}

.timeline-description {
    color: rgba(2, 119, 189, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.modern-timeline-item:hover .timeline-description {
    color: rgba(2, 119, 189, 0.9);
    transform: translateX(3px);
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.skill-tag {
    background: linear-gradient(
        135deg,
        rgba(2, 119, 189, 0.1),
        rgba(37, 211, 253, 0.1)
    );
    color: var(--water-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(2, 119, 189, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(
        135deg,
        rgba(2, 119, 189, 0.2),
        rgba(37, 211, 253, 0.2)
    );
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 119, 189, 0.2);
}

.journey-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.journey-stat-item {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.journey-stat-item:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.08)
    );
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.15);
}

.journey-stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cyan);
    display: block;
    margin-bottom: 5px;
}

.journey-stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(2, 119, 189, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 35px;
    }

    .about-card {
        height: 680px;
    }

    .journey-card .card-content {
        max-height: calc(680px - 130px);
    }
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }

    .about-card {
        height: 620px;
    }

    .journey-card .card-content {
        max-height: calc(620px - 120px);
    }

    .card-header {
        padding: 25px 25px 18px;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 0 15px;
    }

    .about-card {
        transform: none;
        height: auto; /* Auto height untuk mobile */
        min-height: 450px; /* Minimum height */
    }

    .journey-card .card-content {
        max-height: 350px; /* Scroll height untuk mobile */
    }

    .journey-card::before {
        top: 120px; /* Adjusted for mobile header */
    }

    .about-card:hover {
        transform: translateY(-8px);
    }

    .card-header {
        padding: 25px 20px 18px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .card-content {
        padding: 18px 20px 25px;
    }

    .passion-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modern-timeline::before {
        left: 12px;
    }

    .modern-timeline-item {
        padding-left: 60px;
        animation-delay: 0s !important;
    }

    .modern-timeline-item::before {
        left: -8px;
        width: 16px;
        height: 16px;
        top: 30px;
    }

    .modern-timeline-item::after {
        left: -5px;
        width: 10px;
        height: 10px;
        top: 33px;
    }

    .timeline-skills {
        gap: 6px;
    }

    .skill-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .journey-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .journey-stat-item {
        padding: 12px 8px;
    }

    .journey-stat-item .stat-number {
        font-size: 1.3rem;
    }

    .journey-stat-item .stat-label {
        font-size: 0.75rem;
    }
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--water-blue), var(--cyan));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--water-blue);
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-year {
    background: var(--water-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

.timeline-content h5 {
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 5px;
}

.timeline-content p {
    color: rgba(2, 119, 189, 0.7);
    font-size: 14px;
}

.about-values {
    text-align: center;
    max-width: 600px;
    margin: 50px auto 0;
}

.about-values h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.value-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.2);
}

.value-item i {
    color: var(--cyan);
    font-size: 24px;
    margin-bottom: 5px;
}

.value-item span {
    font-weight: 600;
    color: var(--water-blue);
    font-size: 15px;
}

/* Expertise Section */
.expertise-section {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
}

.expertise-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.expertise-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.expertise-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 15px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag.expert {
    background: var(--water-blue);
    color: white;
}

.skill-tag.advanced {
    background: var(--cyan);
    color: white;
}

.skill-tag.intermediate {
    background: var(--glass);
    color: var(--water-blue);
    border: 1px solid rgba(2, 119, 189, 0.3);
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 119, 189, 0.3);
}

/* Certifications Section */
.certifications-section {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 40px;
}

.certifications-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cert-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--water-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.cert-info h4 {
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 5px;
    font-size: 16px;
}

.cert-info p {
    color: rgba(2, 119, 189, 0.7);
    font-size: 14px;
    margin-bottom: 5px;
}

.cert-year {
    background: var(--cyan);
    color: white;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Section Padding untuk menghindari navbar overlay */
section[id] {
    scroll-margin-top: 120px; /* Ruang untuk navbar fixed */
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--water-blue);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--water-blue);
}

/* Services Section */
.services-section {
    padding: 10px;
}

/* Services - Modern Grid with Animations */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card-modern {
    height: 420px;
    perspective: 1000px;
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-card-modern:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-front,
.service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.1);
}

.service-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    color: white;
}

/* Featured Service Highlighting */
.service-card-modern.featured {
    transform: scale(1.05);
    z-index: 2;
}

.service-card-modern.featured .service-front {
    background: linear-gradient(
        135deg,
        rgba(2, 119, 189, 0.1),
        rgba(0, 188, 212, 0.1)
    );
    border: 2px solid var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Service Icon with Particles Animation */
.service-icon-modern {
    position: relative;
    margin: 0 auto 25px;
}

.icon-bg {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card-modern:hover .icon-bg {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(2, 119, 189, 0.4);
}

.icon-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s infinite linear;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%,
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

.service-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-modern.featured h3 {
    color: var(--cyan);
}

.service-description {
    color: rgba(21, 101, 192, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-stats {
    display: flex;
    justify-content: space-around;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(2, 119, 189, 0.2);
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--water-blue);
    margin-bottom: 5px;
}

.service-card-modern.featured .stat-number {
    color: var(--cyan);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(21, 101, 192, 0.6);
    font-weight: 500;
}

/* Service Back Side Styling */
.service-details h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.service-features-modern {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.service-features-modern li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.service-features-modern li:nth-child(1) {
    animation-delay: 0.1s;
}
.service-features-modern li:nth-child(2) {
    animation-delay: 0.2s;
}
.service-features-modern li:nth-child(3) {
    animation-delay: 0.3s;
}
.service-features-modern li:nth-child(4) {
    animation-delay: 0.4s;
}
.service-features-modern li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.service-features-modern li i {
    color: #4caf50;
    background: rgba(255, 255, 255, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.service-cta {
    background: white;
    color: var(--water-blue);
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: auto;
}

.service-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Services Animation on Scroll */
.services-grid-modern {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.services-grid-modern.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card-modern {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.service-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}
.service-card-modern:nth-child(2) {
    animation-delay: 0.3s;
}
.service-card-modern:nth-child(3) {
    animation-delay: 0.5s;
}

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

.learn-more:hover {
    background: var(--cyan);
    transform: translateY(-2px);
}

/* Contact - Clean Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Full Width Contact Content Override */
.contact-section .contact-content {
    display: block;
    width: 100%;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(21, 101, 192, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 30px;
}

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

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--water-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.method-info h4 {
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 5px;
}

.method-info p {
    color: rgba(21, 101, 192, 0.7);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--water-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--water-blue);
    color: white;
    transform: translateY(-3px);
}

/* Quick Contact Options */
.quick-contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.quick-contact-item {
    flex: 1;
    max-width: 200px;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 119, 189, 0.3);
}

.quick-contact-btn.email:hover {
    background: linear-gradient(135deg, #007bb5, #0099d4);
    color: white;
    border-color: #007bb5;
}

.quick-contact-btn.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-color: #25d366;
}

.quick-contact-btn.phone:hover {
    background: linear-gradient(135deg, var(--water-blue), var(--cyan));
    color: white;
    border-color: var(--water-blue);
}

.quick-contact-btn i {
    font-size: 18px;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 40px;
}

/* Full Width Contact Form */
.contact-form.full-width {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* Enhanced Form Styling */
.enhanced-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--water-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--water-blue);
    background: var(--card-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.submit-btn {
    width: 100%;
    background: var(--water-blue);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--cyan);
    transform: translateY(-2px);
}

/* Enhanced Hero Section - Imported from index-simple */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: floatShapes 20s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}
.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}
.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes floatShapes {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(-15px) rotate(240deg);
    }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--water-blue);
}

.profile-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.profile-image-container {
    text-align: center;
}

.profile-image {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid rgba(2, 119, 189, 0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
    border-color: var(--water-blue);
}

.status-indicator {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--teal);
    border-radius: 50%;
    border: 4px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.profile-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--water-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-proof {
    margin-top: 15px;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #fbbf24;
    font-size: 16px;
}

.rating span {
    font-size: 14px;
    color: rgba(2, 119, 189, 0.8);
    font-weight: 500;
}

.profile-info {
    flex: 1;
}

.profile-header-content {
    max-width: 600px;
}

.typing-container {
    margin-bottom: 30px;
}

.profile-name {
    margin-bottom: 20px;
    line-height: 1.2;
}

.greeting {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(2, 119, 189, 0.8);
    display: block;
}

.name-highlight {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1.1;
}

.profile-roles {
    margin: 30px 0;
    font-size: 1.4rem;
    min-height: 50px;
}

.role-text {
    opacity: 0.9;
    color: var(--water-blue);
}

.typing-text {
    font-weight: 600;
    color: var(--cyan);
}

.cursor {
    animation: blink 1s infinite;
    color: var(--water-blue);
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 30px 0;
    position: relative;
    padding: 0;
    color: rgba(2, 119, 189, 0.8);
}

.quote-icon {
    font-size: 1.2rem;
    opacity: 0.7;
    color: var(--cyan);
    margin: 0 4px;
    vertical-align: baseline;
}

.quote-icon:first-child {
    margin-right: 6px;
    margin-left: 0;
}

.quote-icon:last-child {
    margin-left: 2px;
    margin-right: 0;
}

.profile-highlights {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--water-blue);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--cyan);
}

.cta-section {
    margin-top: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.main-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--water-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 119, 189, 0.3);
}

.btn-secondary {
    background: var(--glass);
    color: var(--water-blue);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 35px;
    font-size: 17px;
}

.secondary-cta {
    margin-top: 10px;
}

.link-underline {
    color: var(--water-blue);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.link-underline:hover {
    color: var(--cyan);
}

.link-underline::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s ease;
}

.link-underline:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Adjust scroll margin for mobile navbar */
    section[id] {
        scroll-margin-top: 80px;
    }

    html {
        scroll-padding-top: 110px; /* Top header (45px) + mobile navbar position & height (60px + 30px) + spacing (15px) */
    }

    .floating-nav {
        top: 60px; /* Adjusted for mobile top header */
        left: 20px;
        right: 20px;
        transform: none;
        border-radius: 20px;
    }

    .nav-container {
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-item span {
        display: none;
    }

    /* Hero section responsive */
    .profile-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .profile-image-container {
        order: 1;
    }

    .profile-info {
        order: 2;
    }

    .avatar {
        width: 150px;
        height: 150px;
    }

    .name-highlight {
        font-size: 2.5rem;
    }

    .greeting {
        font-size: 1.2rem;
    }

    .profile-roles {
        font-size: 1.2rem;
    }

    .profile-highlights {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .main-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quick-contact-options {
        flex-direction: column;
        gap: 15px;
    }

    .quick-contact-item {
        max-width: none;
    }

    .quick-contact-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .contact-form.full-width {
        padding: 30px 20px;
    }

    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .service-card-modern {
        height: auto;
        min-height: 380px;
    }

    .service-card-modern.featured {
        transform: none;
        order: -1;
    }

    /* About section tablet - layout tanpa gambar */
    .about-main {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .about-intro h3 {
        font-size: 2.2rem;
    }

    .about-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .journey-timeline {
        margin: 40px auto;
    }

    .expertise-categories {
        gap: 25px;
    }

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

@media (max-width: 480px) {
    /* Adjust scroll margin for small mobile */
    section[id] {
        scroll-margin-top: 70px;
    }

    html {
        scroll-padding-top: 100px; /* Top header (40px) + navbar spacing + padding */
    }

    .profile-card {
        padding: 20px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .service-card,
    .contact-form {
        padding: 25px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Mobile hero adjustments */
    .avatar {
        width: 120px;
        height: 120px;
    }

    .name-highlight {
        font-size: 2rem;
    }

    .profile-description {
        padding: 0 15px;
        font-size: 1rem;
    }

    .cta-section {
        align-items: center;
    }

    .main-cta {
        width: 100%;
    }

    .btn {
        justify-content: center;
    }

    /* Services Mobile */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .service-card-modern {
        height: auto;
        min-height: 350px;
    }

    .service-card-modern.featured {
        transform: none;
    }

    .service-card-modern:hover .service-card-inner {
        transform: none;
    }

    .service-front,
    .service-back {
        position: static;
        transform: none;
        backface-visibility: visible;
    }

    .service-back {
        display: none;
    }

    .icon-bg {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .featured-badge {
        top: 10px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    /* About section mobile - layout tanpa gambar */
    .about-main {
        margin-bottom: 50px;
    }

    .about-intro h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .journey-timeline {
        margin: 35px auto;
        text-align: left;
    }

    .timeline {
        padding-left: 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .expertise-categories {
        gap: 20px;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .cert-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Enhanced Contact Section - Water Theme */
.contact-section {
    padding: 10px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(2,119,189,0.1)"/></svg>');
    opacity: 0.3;
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Consultation CTA - Water Theme */
.contact-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(2, 119, 189, 0.2);
}

.contact-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
    color: #81d4fa;
}

.cta-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-image .image-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.water-wave-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(129, 212, 250, 0.3) 0%,
        rgba(79, 195, 247, 0.3) 100%
    );
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    animation: wave-flow 6s ease-in-out infinite;
}

@keyframes wave-flow {
    0%,
    100% {
        background: linear-gradient(
            45deg,
            rgba(129, 212, 250, 0.3) 0%,
            rgba(79, 195, 247, 0.3) 100%
        );
    }
    50% {
        background: linear-gradient(
            225deg,
            rgba(79, 195, 247, 0.3) 0%,
            rgba(129, 212, 250, 0.3) 100%
        );
    }
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Enhanced Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.info-header {
    margin-bottom: 40px;
}

.info-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 15px;
}

.info-header p {
    color: #546e7a;
    font-size: 1.1rem;
}

/* Enhanced Contact Methods - Water Theme */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(2, 119, 189, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(129, 212, 250, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(2, 119, 189, 0.2);
    border-color: var(--cyan);
}

.contact-item.primary {
    border-color: var(--water-blue);
    background: rgba(2, 119, 189, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(2, 119, 189, 0.3);
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1.1rem;
    color: var(--water-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.9rem;
    color: #546e7a;
}

.contact-action {
    width: 40px;
    height: 40px;
    background: rgba(2, 119, 189, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--water-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-action:hover {
    background: var(--water-blue);
    color: white;
    transform: scale(1.1);
}

/* Social Grid - Water Theme */
.social-section {
    margin-bottom: 40px;
}

.social-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 119, 189, 0.15);
}

.social-card.linkedin:hover {
    border-color: #0077b5;
}
.social-card.github:hover {
    border-color: #333;
}
.social-card.instagram:hover {
    border-color: #e4405f;
}
.social-card.twitter:hover {
    border-color: #1da1f2;
}

.social-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.social-card.linkedin i {
    background: #0077b5;
}
.social-card.github i {
    background: #333;
}
.social-card.instagram i {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}
.social-card.twitter i {
    background: #1da1f2;
}

.social-info span {
    font-weight: 600;
    color: var(--water-blue);
    display: block;
}

.social-info small {
    color: #546e7a;
    font-size: 0.85rem;
}

/* Working Hours - Water Theme */
.working-hours {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(2, 119, 189, 0.1);
}

.working-hours h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(2, 119, 189, 0.1);
}

.hour-item.weekend {
    opacity: 0.7;
}

.day {
    font-weight: 500;
    color: var(--water-blue);
}

.time {
    color: var(--cyan);
    font-weight: 600;
}

.timezone-note {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #546e7a;
    font-size: 0.9rem;
}

/* Enhanced Contact Form - Water Theme */
.contact-form-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(2, 119, 189, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 10px;
}

.form-header p {
    color: #546e7a;
    font-size: 1.1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--water-blue);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #f44336;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(2, 119, 189, 0.2);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--water-blue);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--water-blue);
    box-shadow: 0 0 0 3px rgba(2, 119, 189, 0.1);
    background: white;
}

/* Project Type Selection - Water Theme */
.project-type {
    margin-bottom: 10px;
}

.project-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.project-option {
    cursor: pointer;
}

.project-option input {
    display: none;
}

.option-card {
    padding: 20px;
    border: 2px solid rgba(2, 119, 189, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.option-card i {
    font-size: 2rem;
    color: #546e7a;
    margin-bottom: 10px;
    display: block;
    transition: all 0.3s ease;
}

.option-card span {
    font-weight: 500;
    color: var(--water-blue);
    font-size: 0.9rem;
}

.project-option input:checked + .option-card {
    border-color: var(--water-blue);
    background: rgba(2, 119, 189, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 119, 189, 0.2);
}

.project-option input:checked + .option-card i {
    color: var(--water-blue);
    transform: scale(1.1);
}

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #546e7a;
    margin-top: 5px;
}

/* File Upload - Water Theme */
.file-upload {
    margin: 10px 0;
}

.upload-area {
    border: 2px dashed rgba(2, 119, 189, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.upload-area:hover {
    border-color: var(--water-blue);
    background: rgba(2, 119, 189, 0.05);
}

.upload-icon {
    font-size: 3rem;
    color: #546e7a;
    margin-bottom: 15px;
}

.upload-text p {
    color: var(--water-blue);
    margin-bottom: 5px;
}

.upload-link {
    color: var(--water-blue);
    font-weight: 600;
    cursor: pointer;
}

.upload-text small {
    color: #546e7a;
}

.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(2, 119, 189, 0.2);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-info i {
    color: var(--water-blue);
}

.remove-file {
    background: none;
    border: none;
    color: #f44336;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Privacy Checkbox - Water Theme */
.privacy {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input {
    margin: 0;
    width: auto;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(2, 119, 189, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    color: #546e7a;
    line-height: 1.5;
}

.privacy-link {
    color: var(--water-blue);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Form Actions - Water Theme */
.form-actions {
    margin-top: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 119, 189, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(2, 119, 189, 0.4);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-loading {
    display: none;
}

.form-note {
    text-align: center;
    color: #546e7a;
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #4caf50;
}

/* Quick Actions - Water Theme */
.quick-actions {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.1);
}

.quick-actions h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 30px;
}

.quick-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 25px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.quick-btn.whatsapp {
    background: rgba(37, 211, 102, 0.9);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.quick-btn.phone {
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(2, 119, 189, 0.3);
}

.quick-btn.email {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--teal) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.3);
}

.quick-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(2, 119, 189, 0.4);
}

.quick-btn i {
    font-size: 1.5rem;
}

.quick-btn span {
    font-weight: 600;
    font-size: 1rem;
}

.quick-btn small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-cta {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .project-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quick-btn {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .contact-main {
        padding: 0 20px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .project-options {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .working-hours {
        padding: 20px;
    }
}

/* Footer Styles - Water Theme - Simplified */
.footer {
    background: linear-gradient(135deg, var(--water-blue) 0%, #1e3a8a 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.copyright p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 8px 0;
}

.footer-bottom-links a:hover {
    color: var(--cyan);
    transform: translateY(-1px);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--water-blue) 0%, var(--cyan) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(2, 119, 189, 0.3);
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.4);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 0;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-links span {
        display: none;
    }
}

/* Portfolio Carousel Styles */
.passion-carousel {
    margin-top: 1.5rem;
}

.carousel-container {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(2, 119, 189, 0.1);
    transition: all 0.3s ease;
}

.carousel-container:hover {
    box-shadow: 0 15px 35px rgba(2, 119, 189, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--water-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.carousel-header i {
    color: var(--cyan);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.2rem;
    color: white;
    border-radius: 0 0 12px 12px;
}

.slide-overlay h5 {
    margin: 0 0 0.4rem 0;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-overlay p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    color: var(--water-blue);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.carousel-btn:hover i {
    color: var(--cyan);
}

.carousel-btn.prev {
    left: 12px;
}

.carousel-btn.next {
    right: 12px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(2, 119, 189, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator:hover {
    background: rgba(2, 119, 189, 0.5);
    transform: scale(1.1);
}

.indicator.active {
    background: var(--water-blue);
    transform: scale(1.3);
    box-shadow: 0 0 0 2px rgba(2, 119, 189, 0.3);
}

/* Carousel Mobile Responsiveness */
@media (max-width: 768px) {
    .carousel-container {
        padding: 1rem;
    }

    .carousel-slide img {
        height: 160px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }

    .slide-overlay {
        padding: 1rem;
    }

    .slide-overlay h5 {
        font-size: 0.9rem;
    }

    .slide-overlay p {
        font-size: 0.8rem;
    }
}
