/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Pink Color Palette - Refined */
    --primary-gradient: linear-gradient(135deg, #F8B4C4 0%, #FFDBE5 50%, #FFF5F7 100%);
    --secondary-gradient: linear-gradient(135deg, #FFD6E0 0%, #FFCCD5 100%);
    --accent-gradient: linear-gradient(135deg, #FF9EB5 0%, #F8B4C4 100%);
    --dark-gradient: linear-gradient(135deg, #4A2C40 0%, #6B3A55 50%, #8B4A6B 100%);
    --elegant-gradient: linear-gradient(120deg, #F8B4C4 0%, #FFDBE5 25%, #FFE8EE 50%, #FFDBE5 75%, #F8B4C4 100%);

    --primary-color: #F8B4C4;
    --secondary-color: #FFD6E0;
    --accent-color: #E8879C;
    --accent-dark: #D4617A;
    --text-primary: #3D2836;
    --text-secondary: #6B5460;
    --text-light: #9C8892;
    --bg-primary: #FFFBFC;
    --bg-secondary: #FFF5F7;
    --bg-tertiary: #FFEEF2;
    --bg-dark: #3D2836;
    --white: #ffffff;
    --border-light: rgba(248, 180, 196, 0.3);

    /* Typography - Fluid */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px) 0;
    --container-padding: 0 clamp(16px, 4vw, 24px);

    /* Shadows - Softer */
    --shadow-sm: 0 2px 12px rgba(61, 40, 54, 0.04);
    --shadow-md: 0 8px 24px rgba(61, 40, 54, 0.06);
    --shadow-lg: 0 16px 40px rgba(61, 40, 54, 0.08);
    --shadow-xl: 0 24px 60px rgba(61, 40, 54, 0.1);
    --shadow-pink: 0 8px 30px rgba(248, 180, 196, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: clamp(14px, 2.5vw, 15px);
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll */
html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Touch-friendly links and buttons */
a,
button {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== ELEGANT SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

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

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFFBFC 0%, #FFF5F7 50%, #FFEEF2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-flower {
    width: 100px;
    height: 100px;
    animation: flowerPulse 2s ease-in-out infinite;
}

.flower-svg {
    width: 100%;
    height: 100%;
    animation: flowerRotate 8s linear infinite;
}

.petal {
    transform-origin: 50px 50px;
    animation: petalPulse 1.5s ease-in-out infinite;
}

.petal-1 {
    animation-delay: 0s;
}

.petal-2 {
    animation-delay: 0.15s;
}

.petal-3 {
    animation-delay: 0.3s;
}

.petal-4 {
    animation-delay: 0.45s;
}

.petal-5 {
    animation-delay: 0.6s;
}

@keyframes flowerRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes flowerPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes petalPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.preloader-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.preloader-name {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #3D2836;
    letter-spacing: 2px;
}

.preloader-dots {
    display: flex;
    gap: 2px;
}

.dot {
    font-size: 28px;
    color: #E8879C;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.lang-btn {
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.lang-btn:hover {
    color: var(--accent-dark);
}

.lang-btn.active {
    background: var(--accent-gradient);
    color: var(--white);
}

.lang-divider {
    color: var(--border-light);
    font-size: 14px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 251, 252, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.logo-text {
    font-size: 28px;
    color: var(--accent-color);
    transition: var(--transition-base);
}

.logo-text:hover {
    transform: rotate(15deg) scale(1.1);
}

.brand-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-base);
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -250px;
    right: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FFE4E9 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.05);
    }

    66% {
        transform: translate(-30px, 20px) scale(0.95);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.greeting {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-family: var(--font-elegant);
    font-style: italic;
    letter-spacing: 1px;
}

.sparkle {
    color: var(--accent-color);
    font-size: 20px;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 8vw, 58px);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: clamp(16px, 4vw, 24px);
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(24px, 6vw, 48px);
    font-weight: 400;
    font-style: italic;
    margin-top: -8px;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 16px);
    font-size: clamp(14px, 3vw, 20px);
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: clamp(16px, 4vw, 24px);
    font-family: var(--font-elegant);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    flex-wrap: wrap;
    justify-content: flex-start;
}

.subtitle-line {
    width: clamp(20px, 4vw, 30px);
    height: 1px;
    background: var(--accent-color);
}

.hero-description {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: clamp(24px, 5vw, 40px);
    max-width: 460px;
}

.hero-buttons {
    display: flex;
    gap: clamp(12px, 3vw, 20px);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(248, 180, 196, 0.4);
}

.btn-icon {
    transition: var(--transition-base);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-dark);
    border: 1.5px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-color);
}

.btn-sparkle {
    font-size: 16px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

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

/* Hero Image */
.hero-image {
    position: relative;
    height: 550px;
    animation: fadeInRight 1s ease;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-ring {
    position: absolute;
    width: clamp(200px, 45vw, 380px);
    height: clamp(200px, 45vw, 380px);
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
    opacity: 0.5;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile-main-image {
    width: clamp(160px, 40vw, 340px);
    height: clamp(160px, 40vw, 340px);
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: clamp(4px, 1vw, 6px) solid var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    animation: profileFloat 4s infinite ease-in-out;
}

@keyframes profileFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    animation: floatCard 3s infinite ease-in-out;
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.floating-card:hover {
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 24px;
    color: var(--accent-color);
}

.card-text {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.card-1 {
    top: 8%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: 15%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-elegant);
}

.scroll-arrow {
    font-size: 18px;
    color: var(--accent-color);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
}

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

.section-label {
    display: inline-block;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 24px);
    background: var(--bg-tertiary);
    color: var(--accent-dark);
    border-radius: var(--radius-xl);
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: var(--font-elegant);
    border: 1px solid var(--border-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 6vw, 46px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(15px, 3vw, 18px);
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 1;
}

.about-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(248, 180, 196, 0.3) 100%);
    z-index: 2;
}

.about-frame {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    z-index: 3;
}

.about-quote {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
    border-left: 3px solid var(--primary-color);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--primary-color);
    line-height: 1;
    position: absolute;
    left: 24px;
    top: -15px;
    opacity: 0.5;
}

.about-quote p {
    font-family: var(--font-elegant);
    font-size: 22px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 24px;
}

.about-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ===== HOBBIES SECTION ===== */
.hobbies-section {
    margin-top: 32px;
    margin-bottom: 24px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.hobbies-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.hobbies-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hobby-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
    cursor: default;
}

.hobby-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--primary-color);
}

.hobby-item:hover .hobby-icon {
    background: var(--accent-gradient);
    color: var(--white);
    transform: scale(1.1);
}

.hobby-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: 50%;
    color: var(--accent-color);
    transition: var(--transition-base);
    border: 2px solid var(--border-light);
}

.hobby-icon svg {
    width: 28px;
    height: 28px;
}

.hobby-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

/* ===== SKILLS SECTION ===== */
.skills {
    background: var(--bg-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.skill-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--elegant-gradient);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

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

.skill-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 2px solid var(--border-light);
}

.skill-flower {
    font-size: 32px;
    color: var(--accent-color);
}

.skill-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.skill-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 16px;
}

.skill-bar {
    flex: 1;
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-percentage {
    font-weight: 600;
    color: var(--accent-dark);
    font-size: 14px;
    font-family: var(--font-heading);
}

/* ===== PROJECTS SECTION ===== */
.projects {
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

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

.project-image {
    position: relative;
    height: 200px;
    background: var(--elegant-gradient);
    background-size: 200% 100%;
    animation: shimmer 4s infinite;
    overflow: hidden;
}

/* Project Slideshow */
.project-slideshow {
    position: relative;
}

.slideshow-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-img.active {
    opacity: 1;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(232, 135, 156, 0.85), rgba(248, 180, 196, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: var(--transition-base);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-icon {
    font-size: 36px;
    color: var(--white);
}

.project-tag {
    padding: 10px 24px;
    background: var(--white);
    color: var(--accent-dark);
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 32px;
}

.project-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.project-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 8px 18px;
    background: var(--bg-tertiary);
    color: var(--accent-dark);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: 1px solid var(--border-light);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-intro {
    position: relative;
    margin-bottom: 40px;
}

.contact-intro p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-family: var(--font-elegant);
    font-size: 18px;
}

.contact-flower {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.4;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 20px;
    border: 2px solid var(--border-light);
}

.contact-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-elegant);
}

.contact-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-arrow {
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition-base);
}

.contact-item:hover .contact-arrow {
    transform: translateX(4px);
    color: var(--accent-dark);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.form-icon {
    font-size: 24px;
    color: var(--accent-color);
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition-base);
    background: var(--bg-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(248, 180, 196, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-gradient);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    font-size: 32px;
    color: var(--primary-color);
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.7;
    font-family: var(--font-elegant);
    font-style: italic;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-dot {
    color: var(--primary-color);
    opacity: 0.5;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: var(--font-elegant);
    letter-spacing: 1px;
}

.heart {
    color: var(--primary-color);
    animation: heartbeat 1.5s infinite;
    display: inline-block;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 50px;
    }

    .title-accent {
        font-size: 40px;
    }

    .profile-main-image {
        width: 300px;
        height: 300px;
    }

    .profile-ring {
        width: 340px;
        height: 340px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .language-switcher {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        gap: 24px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        height: 380px;
    }

    .hero-title {
        font-size: 42px;
    }

    .title-accent {
        font-size: 34px;
    }

    .hero-subtitle {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .profile-main-image {
        width: 260px;
        height: 260px;
    }

    .profile-ring {
        width: 300px;
        height: 300px;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .card-text {
        font-size: 12px;
    }

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

    .about-image-wrapper {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .hobbies-grid {
        gap: 16px;
    }

    .hobby-item {
        padding: 16px 20px;
    }

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

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

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

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

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

    .footer-social {
        justify-content: center;
    }

    .section-title {
        font-size: 38px;
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .navbar .container {
        padding: 14px 20px;
    }

    .brand-name {
        font-size: 20px;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .title-accent {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image {
        height: 340px;
    }

    .profile-main-image {
        width: 220px;
        height: 220px;
    }

    .profile-ring {
        width: 260px;
        height: 260px;
    }

    .floating-card {
        padding: 10px 14px;
    }

    .card-icon {
        font-size: 16px;
    }

    .card-text {
        font-size: 11px;
    }

    .card-1 {
        left: 5%;
        top: 5%;
    }

    .card-2 {
        right: 5%;
        top: 10%;
    }

    .card-3 {
        right: 10%;
        bottom: 15%;
    }

    .btn {
        padding: 14px 24px;
        font-size: 13px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-label {
        padding: 8px 18px;
        font-size: 12px;
    }

    .about-quote p {
        font-size: 18px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    .hobbies-section {
        padding: 20px;
    }

    .hobbies-grid {
        gap: 12px;
    }

    .hobby-item {
        padding: 14px 16px;
    }

    .hobby-icon {
        width: 48px;
        height: 48px;
    }

    .hobby-icon svg {
        width: 24px;
        height: 24px;
    }

    .hobby-text {
        font-size: 12px;
    }

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

    .skill-card {
        padding: 30px;
    }

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

    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .contact-item {
        padding: 18px 20px;
    }

    .scroll-indicator {
        display: none;
    }

    .footer-name {
        font-size: 16px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .language-switcher {
        top: 12px;
        right: 12px;
        padding: 4px 10px;
    }

    .lang-btn {
        padding: 3px 6px;
        font-size: 11px;
    }

    .navbar .container {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 24px;
    }

    .brand-name {
        font-size: 18px;
    }

    .nav-menu {
        top: 70px;
        padding: 30px 20px;
    }

    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-title {
        font-size: 30px;
    }

    .title-accent {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
        gap: 10px;
    }

    .subtitle-line {
        width: 20px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .profile-main-image {
        width: 180px;
        height: 180px;
    }

    .profile-ring {
        width: 220px;
        height: 220px;
    }

    .floating-card {
        padding: 8px 12px;
    }

    .card-icon {
        font-size: 14px;
    }

    .card-text {
        font-size: 10px;
    }

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

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .section-label {
        padding: 6px 14px;
        font-size: 11px;
    }

    .about-image-wrapper {
        height: 280px;
    }

    .about-quote {
        padding-left: 16px;
        margin-bottom: 24px;
    }

    .quote-mark {
        font-size: 40px;
        left: 16px;
    }

    .about-quote p {
        font-size: 16px;
        padding-left: 16px;
    }

    .about-description {
        font-size: 14px;
    }

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

    .stat-item {
        padding: 20px 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .stat-icon {
        margin-bottom: 0;
    }

    .hobbies-section {
        padding: 16px;
    }

    .hobbies-title {
        font-size: 16px;
    }

    .hobbies-grid {
        flex-direction: column;
        gap: 10px;
    }

    .hobby-item {
        flex-direction: row;
        width: 100%;
        padding: 12px 16px;
        justify-content: flex-start;
        gap: 14px;
    }

    .hobby-icon {
        width: 44px;
        height: 44px;
    }

    .hobby-icon svg {
        width: 22px;
        height: 22px;
    }

    .skill-card {
        padding: 24px;
    }

    .skill-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .skill-flower {
        font-size: 28px;
    }

    .skill-title {
        font-size: 20px;
    }

    .skill-description {
        font-size: 13px;
    }

    .project-card {
        border-radius: var(--radius-lg);
    }

    .project-image {
        height: 180px;
    }

    .project-content {
        padding: 24px;
    }

    .project-title {
        font-size: 18px;
    }

    .project-description {
        font-size: 13px;
    }

    .tech-tag {
        padding: 6px 12px;
        font-size: 11px;
    }

    .contact-intro p {
        font-size: 15px;
    }

    .contact-item {
        padding: 16px;
        gap: 14px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-value {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 13px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-brand {
        gap: 12px;
    }

    .footer-logo {
        font-size: 26px;
    }

    .footer-name {
        font-size: 14px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-links {
        gap: 10px;
        font-size: 13px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Preloader Mobile */
    .preloader-flower {
        width: 80px;
        height: 80px;
    }

    .preloader-name {
        font-size: 22px;
    }

    .dot {
        font-size: 22px;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 26px;
    }

    .title-accent {
        font-size: 20px;
    }

    .section-title {
        font-size: 24px;
    }

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

    .profile-ring {
        width: 190px;
        height: 190px;
    }

    .floating-card {
        display: none;
    }

    .about-image-wrapper {
        height: 240px;
    }
}