/* ================================
    GLOBAL STYLES
==================================*/
:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-pink-subtitle: #1560BD;
    --color-pink-primary: #1560BD;
    --rgb-white: 255, 255, 255;

    /* Contact Using */
    --primary: #1560BD;
    --primary-dark: #0d4a94;
    --primary-light: #3d7fcc;
    --text: #1a1a1a;
    --text-light: #555555;
    --text-muted: #888888;
    --bg: transparent;
    --bg-card: #ffffff;
    --bg-input: #f9f9f9;
    --border: #e0e0e0;
    --border-focus: var(--primary);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(21, 96, 189, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ================================
    MAIN BACKGROUND CANVAS
==================================*/
#grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ================================
    GLOBAL LAYOUT
==================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* ================================
    FLOATING CAPSULE NAVBAR
====================================*/
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 0 40px;
    height: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-left li,
.nav-right li {
    display: flex;
    align-items: center;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1560BD;
    transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #eeeeee;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.nav-logo a {
    text-decoration: none;
    color: #1560BD;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(21, 96, 189, 0.3);
}

.navbar.scrolled .navbar-container {
    background-color: rgba(0, 0, 0, 0.95);
    height: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    top: 15px;
}

.navbar.scrolled .nav-logo a {
    font-size: 18px;
}

/* ================================
    HERO SECTION
==================================*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    bottom: -20rem;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-avatar {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 580px;
    height: 580px;
    z-index: 4;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease-in-out;
}

.hero-avatar:hover {
    transform: translateX(-50%) translateY(-10px);
}

.hero-avatar:hover img {
    box-shadow: rgba(21, 96, 189, 0.25);
}

.hero-heading {
    position: absolute;
    top: 120px;
    left: 11%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    z-index: 3;
    white-space: nowrap;
}

.hero-subtitle {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    position: absolute;
    top: 215px;
    left: 25%;
    transform: translateX(-50%);
    font-size: 50px;
    font-weight: 500;
    color: var(--color-pink-subtitle);
    text-align: center;
    z-index: 3;
}

.hero-cta-left,
.hero-cta-right {
    position: absolute;
    bottom: 3rem;
    display: flex;
    gap: 20px;
    z-index: 5;
}

.hero-cta-left {
    left: 9.5rem;
    transform: translateX(-50%);
}

.hero-cta-right {
    right: -1rem;
    transform: translateX(-50%);
}

.hero-cta-left button,
.hero-cta-right button {
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

.hero-cta-left .btn-hero-primary,
.hero-cta-right .btn-hero-primary {
    background-color: var(--color-pink-primary);
    color: var(--color-white);
    border-color: var(--color-pink-primary);
}

.hero-cta-left .btn-hero-primary:hover,
.hero-cta-right .btn-hero-primary:hover {
    background-color: transparent;
    color: var(--color-pink-primary);
    border-color: var(--color-pink-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 96, 189, 0.3);
}

.hero-cta-left button:active,
.hero-cta-right button:active {
    transform: translateY(-1px);
}

.hero-cta-left button:focus,
.hero-cta-right button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--rgb-white), 0.5);
}

.hero-description {
    position: absolute;
    top: 60%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 280px;
    z-index: 3;
}

.hero-description p {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-description .clients-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
}

.hero-experience {
    position: absolute;
    top: 60%;
    right: 80px;
    transform: translateY(-50%);
    text-align: right;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-experience .exp-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-pink-primary);
    line-height: 1;
}

.hero-experience .exp-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.4;
    margin-top: 4px;
}

/* ================================ 
    ABOUT SECTION
==================================*/
.about {
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-image-circle {
    position: absolute;
    z-index: -1;
    left: 3rem;
    bottom: -45rem;
    width: 150%;
    height: 150%;
}

/* ---- Image Side ---- */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 120%;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image-frame:hover .about-img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-badge-float {
    position: absolute;
    top: 100px;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 3;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-badge-float:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.about-badge-float i {
    color: var(--color-pink-primary);
}

.about-exp-tag {
    position: absolute;
    bottom: 30px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #121212;
    padding: 18px 24px;
    border-radius: 16px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-exp-tag:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.about-exp-tag .exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1560BD;
    line-height: 1;
    letter-spacing: -1px;
}

.about-exp-tag .exp-label {
    font-size: 0.7rem;
    color: #666666;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Right Content --- */
.about-content {
    color: #ffffff;
}

.about-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: #1560BD;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: #1560BD;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-description {
    font-size: 17px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.about-description strong {
    color: #ffffff;
    font-weight: 600;
}

.about-description-secondary {
    font-size: 16px;
    line-height: 1.7;
    color: #888888;
    margin-bottom: 32px;
}

/* --- Expertise Section --- */
.about-expertise {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.6));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.8));
    border-color: rgba(21, 96, 189, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.expertise-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 96, 189, 0.1);
    border-radius: 12px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    background: rgba(21, 96, 189, 0.2);
    transform: scale(1.05);
}

.expertise-icon svg,
.expertise-icon i.bi {
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: #1560BD;
}

.expertise-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.expertise-text p {
    font-size: 12px;
    color: #888888;
    font-weight: 400;
}

/* --- Stats Section --- */
.about-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.about-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1560BD;
    line-height: 1;
    letter-spacing: -1px;
}

.about-stats .stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #888888;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Action Buttons --- */
.about-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
}

/* ============================================
    PROFESSIONAL DOWNLOAD CV BUTTON
============================================ */
.download-cv-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #1560BD 0%, #0d4a94 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 25px rgba(21, 96, 189, 0.35);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.download-cv-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;
}

.download-cv-btn:hover::before {
    left: 100%;
}

.download-cv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(21, 96, 189, 0.5);
}

.download-cv-btn:active {
    transform: translateY(-1px);
}

/* Button Icon */
.download-cv-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.download-cv-btn .btn-icon svg {
    width: 20px;
    height: 20px;
}

.download-cv-btn:hover .btn-icon {
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Button Text */
.download-cv-btn .btn-text {
    position: relative;
    z-index: 1;
}

/* Loading State */
.download-cv-btn.loading .btn-text {
    display: none;
}

.download-cv-btn.loading .btn-icon {
    display: none;
}

.download-cv-btn.loading .btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success State */
.download-cv-btn.success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.download-cv-btn.success .btn-text::after {
    content: 'Terunduh!';
}

.download-cv-btn.success .btn-icon {
    display: none;
}

.download-cv-btn.success .btn-success-icon {
    display: flex !important;
}

.btn-success-icon {
    display: none;
    align-items: center;
    justify-content: center;
    animation: checkmark 0.5s ease forwards;
}

.btn-success-icon svg {
    width: 20px;
    height: 20px;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Progress Bar */
.download-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    width: 0;
    transition: width 0.3s ease;
}

.download-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #ffffff;
    border-radius: 0 0 0 12px;
    width: 0;
    transition: width 0.1s linear;
}

.download-cv-btn.downloading .download-progress-bar {
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }

    20% {
        width: 20%;
    }

    50% {
        width: 50%;
    }

    80% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

/* Secondary Button */
.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.about-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* ============================================
    CV HERO CTA BUTTONS
============================================ */
.hero-cta-buttons {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 5;
}

.btn-cta-primary {
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    background-color: var(--color-pink-primary);
    color: var(--color-white);
}

.btn-cta-primary:hover {
    background-color: transparent;
    color: var(--color-pink-primary);
    border-color: var(--color-pink-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 96, 189, 0.3);
}

/* ============================================
    SERVICES SECTION (Transparent Background)
============================================ */
.services {
    width: 100%;
    background: transparent;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: end;
}

.services-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.services-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-pink-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.services-description-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.services-description {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--color-black);
    max-width: 600px;
    margin: 0;
    text-align: right;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: linear-gradient(145deg, rgba(30, 30, 30), rgba(15, 15, 15));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(73, 73, 73, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
    border: 1px solid rgba(73, 73, 73, 0.2);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(21, 96, 189, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1560BD, #1560BD, #1560BD);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(21, 96, 189, 0.15), 0 0 20px rgba(255, 255, 255, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(21, 96, 189, 0.1), rgba(21, 96, 189, 0.05));
    border: 1px solid rgba(21, 96, 189, 0.2);
    border-radius: 18px;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(21, 96, 189, 0.2), rgba(21, 96, 189, 0.15));
    border-color: rgba(21, 96, 189, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(21, 96, 189, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #1560BD;
    filter: drop-shadow(0 2px 4px rgba(21, 96, 189, 0.2));
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: #0d4a94;
    filter: drop-shadow(0 0 8px rgba(21, 96, 189, 0.4));
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.service-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444444;
    margin-bottom: 10px;
}

.service-features li i {
    color: #1560BD;
    font-size: 16px;
    filter: drop-shadow(0 0 2px rgba(21, 96, 189, 0.3));
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1560BD;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 8px 0;
}

.service-btn:hover {
    gap: 12px;
    color: #0d4a94;
    text-shadow: 0 0 5px rgba(21, 96, 189, 0.3);
}

.service-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 32px;
    }

    .services {
        padding: 80px 20px;
    }
}

/* ============================================
    PROFESSIONAL EXPERIENCE SECTION
============================================ */
.experience {
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.experience::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.experience-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: end;
}

.experience-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.experience-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-pink-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.experience-description-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.experience-description {
    font-size: 15.5px;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0;
    text-align: right;
}

.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 40px;
}

/* Vertical Timeline Line */
.experience-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1560BD 0%, #0d4a94 50%, #1560BD 100%);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(21, 96, 189, 0.4);
}

.experience-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 30px;
    padding-left: 50px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.6));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Timeline Dot */
.experience-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 38px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #1560BD 0%, #0d4a94 100%);
    border-radius: 50%;
    border: 3px solid #0a0a0a;
    box-shadow: 0 0 12px rgba(21, 96, 189, 0.6), 0 0 4px rgba(21, 96, 189, 0.8);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Active/First item dot glow */
.experience-item:first-child::before {
    width: 22px;
    height: 22px;
    left: -31px;
    top: 36px;
    box-shadow: 0 0 20px rgba(21, 96, 189, 0.8), 0 0 6px rgba(21, 96, 189, 1);
}

.experience-item:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(21, 96, 189, 0.8), 0 0 5px rgba(21, 96, 189, 1);
}

.experience-item:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.8));
    border-color: rgba(21, 96, 189, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.experience-date {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.date-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #1560BD 0%, #0d4a94 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
}

.experience-content {
    color: #ffffff;
}

.experience-position {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.experience-company {
    font-size: 18px;
    font-weight: 500;
    color: #1560BD;
    margin-bottom: 16px;
}

.experience-text {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 16px;
}

.experience-highlights {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.experience-highlights li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #cccccc;
    background: rgba(21, 96, 189, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(21, 96, 189, 0.2);
}

.experience-highlights li i {
    color: #1560BD;
}


/* ============================================
    BLOG SECTION (Transparent Background - Same as Services)
============================================ */
.blog {
    width: 100%;
    background: transparent;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.blog::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: end;
}

.blog-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.blog-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-pink-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.blog-description-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.blog-description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    text-align: right;
    margin-bottom: 0;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(179, 179, 179, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(21, 96, 189, 0.08);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(21, 96, 189, 0.15), 0 0 20px rgba(255, 255, 255, 0.4);
    border-color: rgba(21, 96, 189, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
}

.blog-image {
    position: relative;
    height: 200px;
    /* Placeholder gradasi lebih terang agar cocok dengan tema putih */
    background: linear-gradient(135deg, rgba(21, 96, 189, 0.1), rgba(21, 96, 189, 0.2));
    overflow: hidden;
    border-bottom: 1px solid rgba(21, 96, 189, 0.1);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-placeholder i {
    font-size: 60px;
    color: var(--color-pink-primary);
    opacity: 0.5;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--color-pink-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(21, 96, 189, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.blog-date i,
.blog-read-time i {
    font-size: 14px;
    color: var(--color-pink-subtitle);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--color-pink-primary);
}

/* Opsional: Jika ada teks deskripsi blog, tambahkan ini */
.blog-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.blog-card-excerpt {
    font-size: 14px;
    font-weight: 400;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    --webkit-line-clamp: 3;
    --webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-pink-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn:hover {
    gap: 12px;
    color: #ffffff;
}

.blog-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-btn i {
    transform: translateX(5px);
}

/* Load More Button */
.blog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.load-more-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-pink-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--color-pink-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-blog-btn:hover {
    background: var(--color-pink-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(21, 96, 189, 0.3);
}

.load-more-blog-btn i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.load-more-blog-btn:hover i {
    transform: translateY(5px);
}

.hidden-blog {
    display: none;
}

/* Blog Cards Fade In Animation */
.blog-card.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
    FAQ SECTION
============================================ */
.faq {
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: end;
}

.faq-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.faq-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-pink-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.faq-description-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.faq-description {
    font-size: 15.5px;
    line-height: 1.8;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0;
    text-align: right;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* FAQ Item */
.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    border: 1px solid rgba(21, 96, 189, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(21, 96, 189, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(21, 96, 189, 0.15);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(21, 96, 189, 0.1);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(21, 96, 189, 0.2);
    border-radius: 50%;
    color: #1560BD;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: #1560BD;
    color: #ffffff;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #bbbbbb;
    line-height: 1.7;
    margin: 0;
}

/* FAQ Item Active State */
.faq-item.active {
    background: linear-gradient(145deg, rgba(21, 96, 189, 0.1), rgba(21, 96, 189, 0.05));
}


/* ============================================
    RESPONSIVE TESTIMONIAL SECTION
    ============================================ */
.testimonial-section {
    width: 100%;
    height: 100vh;
    background: transparent;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.3), transparent);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: end;
}

.testimonial-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.testimonial-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color-pink-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.testimonial-description-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.testimonial-description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    text-align: right;
    margin-bottom: 0;
}

/* Phone Mockup */
.phone-mockup {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 270px;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: all 0.4s ease;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial Cards */
.testimonial-card {
    position: absolute;
    background: #1561bdc0;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    width: 280px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card Position - Top Left */
.testimonial-card.card-1 {
    top: 37% !important;
    left: 25% !important;
}

/* Card Position - Top Right */
.testimonial-card.card-2 {
    top: 25% !important;
    right: 25% !important;
    left: auto !important;
}

/* Card Position - Middle Right */
.testimonial-card.card-3 {
    top: 60% !important;
    right: 25% !important;
    left: auto !important;
    transform: translateY(-50%) !important;
}

/* Card Position - Bottom Left */
.testimonial-card.card-4 {
    top: 70% !important;
    left: 23% !important;
}

/* Card Position - Bottom Right */
.testimonial-card.card-5 {
    top: 75% !important;
    right: 25% !important;
    left: auto !important;
}

/* Card Content */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f3f4f6;
}

.card-user-info {
    flex: 1;
}

.card-user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 2px;
}

.card-user-role {
    font-size: 0.8rem;
    color: var(--color-black);
}

/* Star Rating */
.card-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.card-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.card-rating i.empty {
    color: #d1d5db;
}

/* Card Quote Icon */
.card-quote {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #000000;
    font-family: Georgia, serif;
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.testimonial-card.card-1 {
    animation-delay: 0.1s;
}

.testimonial-card.card-2 {
    animation-delay: 0.2s;
}

.testimonial-card.card-3 {
    animation-delay: 0.3s;
}

.testimonial-card.card-4 {
    animation-delay: 0.4s;
}

.testimonial-card.card-5 {
    animation-delay: 0.5s;
}

/* ================================
   INFINITE HORIZONTAL CAROUSEL
================================ */
.carousel-section {
    width: 100%;
    height: 350px;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    background-size: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}

.carousel-container {
    width: 100%;
    max-width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Fade gradient overlays */
.carousel-fade-left,
.carousel-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.carousel-fade-left {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.carousel-fade-right {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

/* Carousel track */
.carousel-track {
    display: flex;
    will-change: transform;
    animation: carouselScroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

/* Carousel content */
.carousel-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.carousel-word {
    font-family: 'Inter', 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--color-pink-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 0.3em;
}

.carousel-diamond {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-pink-primary);
    margin: 0 0.5em;
    opacity: 0.6;
}

/* Second carousel container - moving right */
.carousel-container-bottom {
    margin-top: 30px;
}

/* Carousel track moving right */
.carousel-track-right {
    animation: carouselScrollRight 40s linear infinite;
}

.carousel-track-right:hover {
    animation-play-state: paused;
}

/* Keyframe animation - moving right */
@keyframes carouselScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Keyframe animation */
@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Speed control buttons */
.carousel-controls {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    z-index: 20;
}

.speed-btn {
    padding: 10px 28px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1560BD;
    background-color: #0a0a0a;
    border: 2px solid #1560BD;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.speed-btn:hover {
    background-color: #1560BD;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 96, 189, 0.3);
}

.speed-btn.active {
    background-color: #1560BD;
    color: #FFFFFF;
    border-color: #1560BD;
    box-shadow: 0 4px 12px rgba(21, 96, 189, 0.35);
}

/* ================================
            CONTACT SECTION
        ===================================*/
.contact-section {
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px 60px;
    background: var(--bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* ================================
            LEFT COLUMN - INFO
        ===================================*/
.contact-info {
    padding-right: 20px;
}

.contact-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-heading span {
    color: var(--primary);
}

.contact-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-details {
    list-style: none;
    margin-bottom: 36px;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(21, 96, 189, 0.3);
}

.contact-item:hover .contact-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(21, 96, 189, 0.4);
}

.contact-item-content {
    flex: 1;
}

.contact-item-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

.contact-item-content a:hover {
    color: var(--primary);
}

/* Social Media */
.social-media {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.social-media h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    color: var(--text-light);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(21, 96, 189, 0.35);
}

/* ================================
            RIGHT COLUMN - FORM
        ===================================*/
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-form-wrapper>p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--border-focus);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(21, 96, 189, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    padding: 12px;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 96, 189, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 16px;
}

/* ================================
            FORM VALIDATION
        ===================================*/
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #27ae60;
}

.error-message {
    display: none;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
}

.form-group.error .error-message {
    display: block;
}

/* ================================
            SUCCESS MESSAGE
        ===================================*/
.success-message {
    display: none;
    grid-column: 1 / -1;
    padding: 20px;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid #27ae60;
    border-radius: var(--radius-sm);
    color: #27ae60;
    text-align: center;
    font-weight: 500;
}

.success-message.show {
    display: block;
}

/* ============================================
    FOOTER SECTION
============================================ */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    padding: 80px 20px 30px;
    z-index: 10;
    overflow: hidden;
}

/* Dotted Grid Texture Overlay */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(21, 96, 189, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
}

/* Top Divider */
.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.4), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Footer Column Base */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-pink-primary), transparent);
    border-radius: 2px;
}

/* ============================================
    COLUMN 1: BRAND
============================================ */
.footer-brand .footer-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-brand .footer-logo:hover {
    transform: translateY(-5px);
}

.footer-brand .footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-brand .footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 24px;
}

/* Social Media Icons */
.social-links-footer {
    display: flex;
    gap: 12px;
}

.social-link-footer {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(35, 35, 35, 0.2);
    border: 1px solid rgba(40, 40, 40, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link-footer:hover {
    background: var(--color-pink-primary);
    border-color: var(--color-pink-primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(21, 96, 189, 0.35);
}

/* ============================================
    COLUMNS 2 & 3: QUICK LINKS & SERVICES
============================================ */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--color-pink-primary);
}

.footer-links a:hover {
    color: var(--color-pink-primary);
    padding-left: 18px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
    COLUMN 4: VISITOR COUNTER
============================================ */
.flag-counter-container {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 59, 59, 0.1);
}

.flag-counter-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(21, 96, 189, 0.2);
    border-color: var(--color-pink-primary);
}

.flag-counter-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.flag-counter-link:hover {
    transform: scale(1.02);
}

.flag-counter-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.flag-counter-text {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

.flag-counter-text strong {
    color: #555555;
}

.view-count {
    color: #1560BD;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.view-count::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1560BD;
    transition: width 0.3s ease;
}

.view-count:hover {
    color: var(--color-pink-primary);
}

.view-count:hover::after {
    width: 100%;
}

/* ============================================
    BOTTOM FOOTER BAR
============================================ */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 96, 189, 0.2), transparent);
    margin-bottom: 25px;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: #666666;
    letter-spacing: 0.3px;
}

.footer-copyright span {
    color: var(--color-pink-primary);
    font-weight: 600;
}

/* ============================================================================
PAGE TRANSITION STYLES
============================================================================ */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0e0e0e;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-transition.active {
    opacity: 1;
    visibility: visible;
}

.page-transition.exit {
    opacity: 0;
    visibility: hidden;
}

#transition-grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.transition-text {
    position: relative;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Section fade-in animation */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.section-fade-in {
    opacity: 1;
    transform: translateY(0);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}
