/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #0c0f17 0%, #151925 100%);
    color: #e6e9f0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* SCROLL PROGRESS BAR */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ed761, #2afc85);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(42, 252, 133, 0.5);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 252, 133, 0.8) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s;
    opacity: 0.6;
    display: block !important;
}

body:hover .cursor-glow {
    width: 40px;
    height: 40px;
}

/* ===== DYNAMIC BACKGROUND ===== */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 252, 133, 0.4) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(30, 215, 97, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* ===== PARTICLES ===== */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(42, 252, 133, 0.6);
    border-radius: 50%;
    animation: rise 15s linear infinite;
    opacity: 0;
}

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}


/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(15px, 3vw, 20px) clamp(20px, 5vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(12, 15, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 252, 133, 0.1);
}


/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6e9f0;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    color: #2afc85;
    font-size: 1.8rem;
}

.logo-text {
    background: linear-gradient(90deg, #e6e9f0, #2afc85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.2;
    vertical-align: middle;
}

.logo .kingdom-watermark {
    font-size: 0.65rem !important;
    color: rgba(42, 252, 133, 0.5) !important;
    letter-spacing: 8px !important;
    font-weight: 400 !important;
    margin: -2px 0 0 0 !important;
    text-transform: uppercase !important;
    display: block !important;
    opacity: 1 !important;
}


/* ===== NAVBAR ===== */
nav ul {
    display: flex;
    list-style: none;
    gap: clamp(20px, 3vw, 30px);
}

nav a {
    color: #c2c6d3;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    display: inline-block;
}

nav a:hover {
    color: #2afc85;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2afc85, #1ed761);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(42, 252, 133, 0.5);
    pointer-events: none;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #e6e9f0;
    cursor: pointer;
}


/* ===== HERO SECTION ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(40px, 6vw, 60px);
    padding: clamp(90px, 12vh, 110px) clamp(20px, 5vw, 40px) clamp(30px, 5vh, 50px);
    min-height: 100vh;
}

.content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
}


/* ===== TEXT ===== */
h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 15px;
    background: linear-gradient(90deg, #e6e9f0, #2afc85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(46, 252, 139, 0.3);
}

.hero-kingdom {
    font-size: 0.65rem;
    color: rgba(42, 252, 133, 0.4);
    letter-spacing: 8px;
    font-weight: 400;
    margin: -5px 0 15px 0;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin-bottom: 25px;
    color: #c2c6d3;
}

p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #c2c6d3;
}


/* ===== TYPING TEXT ===== */
.typing-text {
    position: relative;
    display: inline-block;
    color: #2afc85;
}

.typing-text::after {
    content: "|";
    position: absolute;
    right: -8px;
    animation: blink 0.7s infinite;
}


/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    margin-top: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.btn {
    padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 35px);
    border-radius: 50px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Button Ripple Effect */
.btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn:hover::after {
    transform: scale(2);
}

/* Primary */
.btn-primary {
    background: linear-gradient(90deg, #1ed761, #15c46a);
    color: #0c0f17;
    box-shadow: 0 5px 15px rgba(30, 215, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 215, 97, 0.6);
}

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

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

/* Secondary */
.btn-secondary {
    border: 2px solid #2afc85;
    color: #2afc85;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.btn-secondary:hover {
    background: rgba(42, 252, 133, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 252, 133, 0.3);
}

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


/* ===== SOCIAL ICONS ===== */
.social-icons {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    margin-top: 50px;
    animation: fadeInUp 1s ease forwards 1.1s;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1f20, #232838);
    color: #2afc85;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #151925;
}

/* Icon Bounce Effect */
.social-icons a i {
    transition: transform 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.2) rotate(10deg);
}

.social-icons a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #1ed761, #2afc85, #15c46a);
    opacity: 0;
    transition: 0.3s;
    z-index: -1;
}

.social-icons a:hover::before {
    opacity: 1;
}


/* ===== PROFILE ===== */
.profile-container {
    position: relative;
    width: clamp(250px, 35vw, 400px);
    height: clamp(250px, 35vw, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: clamp(210px, 28vw, 340px);
    height: clamp(210px, 28vw, 340px);
    border-radius: 50%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 30px rgba(0,0,0,0.4);
    border: 6px solid #0c0f17;
    z-index: 20;
    transition: all 0.4s ease;
    background: rgba(12, 15, 23, 0.9);
    padding: 10px;
}

.profile-img:hover {
    transform: translate(-50%, -50%) scale(1.03);
    box-shadow: 0 15px 50px rgba(42, 252, 133, 0.5);
    border-color: #2afc85;
}


/* ===== ANIMATIONS ===== */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0); }
}

@keyframes pulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* ===== RESPONSIVE DESIGN ===== */

/* ===== TABLET ===== */
@media (max-width: 992px) {

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: clamp(30px, 5vh, 50px);
        padding: clamp(80px, 12vh, 100px) 20px clamp(30px, 5vh, 40px);
    }

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

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


/* ===== SMALL TABLET ===== */
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    /* MOBILE NAV */
    .menu-toggle {
        display: block;
        cursor: pointer;
        padding: 8px;
        border-radius: 6px;
        transition: background 0.3s ease;
    }

    .menu-toggle:hover {
        background: rgba(42, 252, 133, 0.1);
    }

    .menu-toggle i {
        font-size: 1.5rem;
        color: #2afc85;
        transition: transform 0.3s ease;
    }

    nav ul {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(12, 15, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(42, 252, 133, 0.1);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        font-size: 1.3rem;
        padding: 20px 0;
        display: block;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
    }

    nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: rgba(42, 252, 133, 0.05);
        transition: width 0.3s ease;
        z-index: -1;
    }

    nav a:hover::before,
    nav a.active::before {
        width: 100%;
    }

    nav a:hover,
    nav a.active {
        color: #2afc85;
        transform: translateX(5px);
    }

    /* TEXT */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1.1rem;
    }

    /* BUTTON */
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* PROFILE SIZE */
    .profile-container {
        width: clamp(220px, 60vw, 320px);
        height: clamp(220px, 60vw, 320px);
    }

    .profile-img {
        width: clamp(185px, 50vw, 270px);
        height: clamp(185px, 50vw, 270px);
    }

    .border-outer {
        width: clamp(220px, 60vw, 320px);
        height: clamp(220px, 60vw, 320px);
    }

    .border-middle {
        width: clamp(200px, 55vw, 290px);
        height: clamp(200px, 55vw, 290px);
    }

    .border-inner {
        width: clamp(185px, 50vw, 270px);
        height: clamp(185px, 50vw, 270px);
    }

    .border-container::after {
        width: clamp(170px, 46vw, 250px);
        height: clamp(170px, 46vw, 250px);
    }

    .pulse-ring {
        width: clamp(220px, 60vw, 320px);
        height: clamp(220px, 60vw, 320px);
    }
}


/* ===== MOBILE ===== */
@media (max-width: 480px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.2rem;
    }

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

    /* PROFILE SMALL */
    .profile-container {
        width: clamp(200px, 70vw, 280px);
        height: clamp(200px, 70vw, 280px);
    }

    .profile-img {
        width: clamp(165px, 58vw, 230px);
        height: clamp(165px, 58vw, 230px);
    }

    .border-outer {
        width: clamp(200px, 70vw, 280px);
        height: clamp(200px, 70vw, 280px);
    }

    .border-middle {
        width: clamp(180px, 63vw, 255px);
        height: clamp(180px, 63vw, 255px);
    }

    .border-inner {
        width: clamp(165px, 58vw, 230px);
        height: clamp(165px, 58vw, 230px);
    }

    .border-container::after {
        width: clamp(150px, 52vw, 215px);
        height: clamp(150px, 52vw, 215px);
    }

    .pulse-ring {
        width: clamp(200px, 70vw, 280px);
        height: clamp(200px, 70vw, 280px);
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(3px);
}

.scroll-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(42, 252, 133, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 252, 133, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2afc85;
    font-size: 0.9rem;
    animation: float 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-arrow i {
    animation: bounce 1.5s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-arrow {
    background: rgba(42, 252, 133, 0.2);
    border-color: rgba(42, 252, 133, 0.35);
    box-shadow: 0 4px 15px rgba(42, 252, 133, 0.2);
}

.scroll-text {
    color: rgba(42, 252, 133, 0.7);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-text {
    color: rgba(42, 252, 133, 0.9);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(3px);
    }
    60% {
        transform: translateY(2px);
    }
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }

}


/* ===== KINGDOM WATERMARK ===== */
.kingdom-watermark {
    position: absolute;
    bottom: -15px;
    right: 0;
    font-size: 0.55rem;
    color: rgba(42, 252, 133, 0.15);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.kingdom-watermark:hover {
    opacity: 1;
    color: rgba(42, 252, 133, 0.4);
}

/* ===== MODAL POPUP ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 15, 23, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: rgba(21, 25, 37, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 252, 133, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(194, 198, 211, 0.6);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(42, 252, 133, 0.1);
    color: #2afc85;
}

.modal-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(42, 252, 133, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(42, 252, 133, 0.3);
}

.modal-icon i {
    color: #2afc85;
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

.modal-title {
    color: #e6e9f0;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.modal-terminal {
    background: rgba(12, 15, 23, 0.8);
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    margin-bottom: 20px;
    border: 1px solid rgba(42, 252, 133, 0.15);
    font-family: 'Courier New', monospace;
    overflow-x: auto;
}

.terminal-command {
    color: #2afc85;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.terminal-command::before {
    content: '$ ';
    color: rgba(42, 252, 133, 0.6);
}

.terminal-output {
    color: rgba(194, 198, 211, 0.8);
    font-size: 0.85rem;
    line-height: 1.8;
}

.terminal-output::before {
    content: '> ';
    color: rgba(42, 252, 133, 0.4);
}

.modal-message {
    color: rgba(194, 198, 211, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .terminal-command,
    .terminal-output {
        font-size: 0.8rem;
    }
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 992px) {
    .about-content-minimal,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-timeline {
        margin-top: 30px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-items {
        align-items: center;
    }
    
    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 180px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .contact-item i {
        font-size: 1.3rem;
    }
    
    /* Better tap targets for mobile */
    .btn {
        padding: 15px 30px;
        min-height: 50px;
    }
    
    .social-icons a {
        width: 55px;
        height: 55px;
    }
    
    /* Reduce animation intensity */
    .gradient-orb {
        animation-duration: 30s;
    }
    
    .cursor-glow {
        display: none; /* Hide custom cursor on touch devices */
    }
    
    body {
        cursor: auto;
    }
    
    /* Projects grid mobile */
    .projects-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card-minimal {
        padding: 20px;
    }
    
    /* Skills grid mobile */
    .skills-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-card-minimal {
        padding: 20px;
    }
    
    /* About section mobile */
    .about-content-minimal {
        gap: 30px;
    }
    
    .about-lead {
        font-size: 1.1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    /* Contact section mobile */
    .contact-content {
        gap: 30px;
    }
    
    .contact-items {
        gap: 15px;
    }
    
    .final-cta-heading {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-final-primary,
    .btn-final-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 15px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    /* Hero section mobile */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    /* About section small mobile */
    .about-section {
        padding: 60px 15px;
    }
    
    .about-lead {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 10px 12px;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
    
    /* Timeline mobile */
    .timeline-content-simple {
        padding: 15px;
    }
    
    .timeline-content-simple h4 {
        font-size: 1rem;
    }
    
    .timeline-text {
        font-size: 0.9rem;
    }
    
    /* Skills section small mobile */
    .skills-section {
        padding: 60px 15px;
    }
    
    .skill-card-header h3 {
        font-size: 1.1rem;
    }
    
    .skill-info span:first-child {
        font-size: 0.9rem;
    }
    
    /* Projects section small mobile */
    .projects-section {
        padding: 60px 15px;
    }
    
    .project-header h3 {
        font-size: 1.1rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .project-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-project-primary,
    .btn-project-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .project-github-note {
        font-size: 0.75rem;
        margin: 10px 0 0 0;
    }
    
    /* Contact section small mobile */
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-info h3 {
        font-size: 1.4rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .contact-form .btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    /* Social icons small mobile */
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Final CTA small mobile */
    .final-cta-section {
        padding: 60px 15px;
    }
    
    .final-cta-heading {
        font-size: 1.6rem;
    }
    
    .final-cta-subtitle {
        font-size: 0.95rem;
    }
    
    /* Chatbot mobile */
    .chatbot-panel {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }
}

/* ===== PULSE RINGS ===== */
.pulse-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(250px, 35vw, 400px);
    height: clamp(250px, 35vw, 400px);
    border: 2px solid rgba(42, 252, 133, 0.6);
    box-shadow: 0 0 25px rgba(42, 252, 133, 0.5), inset 0 0 15px rgba(42, 252, 133, 0.3);
    animation: pulse 2s ease-out infinite;
    z-index: 14;
}

.pulse-ring:nth-child(2) {
    animation-delay: 0.3s;
}

.pulse-ring:nth-child(3) {
    animation-delay: 0.6s;
}

/* ===== BORDER STYLES ===== */
.profile-container {
    position: relative;
}

.border-outer,
.border-middle,
.border-inner {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 25px rgba(42,252,133,0.6);
}

.border-outer {
    width: clamp(250px, 35vw, 400px);
    height: clamp(250px, 35vw, 400px);
    background: conic-gradient(rgba(42,252,133,0.9) 0deg, transparent 90deg);
    animation: rotate 4s linear infinite;
    z-index: 15;
    filter: drop-shadow(0 0 20px rgba(42, 252, 133, 0.8));
}

.border-middle {
    width: clamp(225px, 31vw, 360px);
    height: clamp(225px, 31vw, 360px);
    background: conic-gradient(rgba(21,196,106,0.9) 0deg, transparent 90deg);
    animation: rotate-reverse 3s linear infinite;
    z-index: 16;
    filter: drop-shadow(0 0 15px rgba(42, 252, 133, 0.7));
}

.border-inner {
    width: clamp(210px, 28vw, 340px);
    height: clamp(210px, 28vw, 340px);
    background: conic-gradient(rgba(30,215,97,0.9) 0deg, transparent 90deg);
    animation: rotate 2s linear infinite;
    z-index: 17;
    filter: drop-shadow(0 0 10px rgba(42, 252, 133, 0.6));
}

.border-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(210px, 28vw, 340px);
    height: clamp(210px, 28vw, 340px);
    border-radius: 50%;
    background: rgba(12, 15, 23, 0.85);
    border: 3px solid #2afc85;
    box-shadow: 0 0 30px rgba(42, 252, 133, 0.5);
    z-index: 18;
}

.border-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(195px, 26vw, 320px);
    height: clamp(195px, 26vw, 320px);
    border-radius: 50%;
    background: rgba(42, 252, 133, 0.1);
    box-shadow: inset 0 0 20px rgba(42, 252, 133, 0.2);
}

/* ===== ENHANCED PROFILE RINGS ===== */
@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

.profile-container .pulse-ring {
    animation: pulse 2s ease-out infinite, breathe 3s ease-in-out infinite;
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 252, 133, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ===== SECTIONS COMMON STYLES ===== */
section {
    padding: clamp(60px, 10vh, 100px) clamp(15px, 3vw, 20px);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #e6e9f0, #2afc85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2afc85, transparent);
    border-radius: 2px;
}

.projects-note {
    text-align: center;
    color: #c2c6d3;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    margin: 40px auto 50px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== ABOUT SECTION - MINIMAL DESIGN ===== */
.about-section {
    background: rgba(12, 15, 23, 0.5);
    padding: 80px 20px;
}

.about-content-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* LEFT SIDE */
.about-left {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.6s ease;
}

.about-left.show {
    opacity: 1;
    transform: translateY(0);
}

.about-intro {
    margin-bottom: 30px;
}

.about-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    color: #2afc85;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 3px solid #2afc85;
    padding-left: 20px;
}

.about-description {
    color: #c2c6d3;
    line-height: 1.8;
    font-size: clamp(1rem, 2vw, 1.05rem);
    margin-bottom: 0;
}

/* HIGHLIGHTS */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(42, 252, 133, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(42, 252, 133, 0.08);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(42, 252, 133, 0.08);
    border-color: rgba(42, 252, 133, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(42, 252, 133, 0.1);
}

.highlight-icon {
    color: #2afc85;
    font-size: 1.2rem;
    min-width: 20px;
}

.highlight-item span {
    color: #e6e9f0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* RIGHT SIDE - TIMELINE */
.about-timeline {
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.about-timeline.show {
    opacity: 1;
    transform: translateY(0);
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: calc(100% - 10px);
    width: 2px;
    background: linear-gradient(to bottom, rgba(42, 252, 133, 0.5), transparent);
}

.timeline-item-simple {
    position: relative;
    margin-bottom: 30px;
}

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

.timeline-dot-simple {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #2afc85;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(42, 252, 133, 0.6);
    z-index: 1;
}

.timeline-content-simple {
    background: rgba(42, 252, 133, 0.03);
    padding: 18px 20px;
    border-radius: 8px;
    border-left: 2px solid rgba(42, 252, 133, 0.3);
    transition: all 0.3s ease;
}

.timeline-content-simple:hover {
    background: rgba(42, 252, 133, 0.06);
    border-left-color: #2afc85;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(42, 252, 133, 0.08);
}

.timeline-content-simple h4 {
    color: #e6e9f0;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-content-simple h4 i {
    color: #2afc85;
    font-size: 1rem;
}

.timeline-text {
    color: #c2c6d3;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.6;
    margin: 0;
}

.timeline-year {
    color: #2afc85;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 5px;
    font-weight: 500;
}

/* ===== SKILLS SECTION - MINIMAL DESIGN ===== */
.skills-section {
    background: rgba(21, 25, 37, 0.5);
    padding: 80px 20px;
}

.skills-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-card-minimal {
    background: rgba(42, 252, 133, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(42, 252, 133, 0.08);
    transition: all 0.3s ease;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.skill-card-minimal.show {
    opacity: 1;
    transform: translateY(0);
}

.skill-card-minimal:hover {
    background: rgba(42, 252, 133, 0.06);
    border-color: rgba(42, 252, 133, 0.15);
    box-shadow: 0 8px 25px rgba(42, 252, 133, 0.08);
}

.skill-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(42, 252, 133, 0.1);
}

.skill-icon {
    color: #2afc85;
    font-size: 1.5rem;
}

.skill-card-header h3 {
    color: #e6e9f0;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin: 0;
}

.skill-progress-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-info span:first-child {
    color: #c2c6d3;
    font-size: 0.95rem;
    font-weight: 500;
}

.skill-percentage {
    color: #2afc85;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 45px;
    text-align: right;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(42, 252, 133, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1ed761, #2afc85);
    border-radius: 4px;
    width: 0;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.skill-card-minimal.show .progress-fill {
    /* Width will be set via JavaScript */
}

.skill-bar .bar {
    width: 100%;
    height: 10px;
    background: rgba(42, 252, 133, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.skill-bar .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1ed761, #2afc85);
    width: 0;
    transition: width 1.5s ease;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(42, 252, 133, 0.5);
}

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

.skill-tag {
    background: rgba(42, 252, 133, 0.1);
    color: #2afc85;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(42, 252, 133, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(42, 252, 133, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 252, 133, 0.3);
}

/* ===== PROJECTS SECTION - MINIMAL DESIGN ===== */
.projects-section {
    background: rgba(12, 15, 23, 0.5);
    padding: 80px 20px;
}

.projects-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card-minimal {
    background: rgba(42, 252, 133, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(42, 252, 133, 0.08);
    transition: all 0.3s ease;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.project-card-minimal.show {
    opacity: 1;
    transform: translateY(0);
}

.project-card-minimal:hover {
    background: rgba(42, 252, 133, 0.06);
    border-color: rgba(42, 252, 133, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 252, 133, 0.1);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.project-icon-small {
    color: #2afc85;
    font-size: 1.3rem;
}

.project-header h3 {
    color: #e6e9f0;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.project-description {
    color: #c2c6d3;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-tags-minimal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag-minimal {
    background: rgba(42, 252, 133, 0.08);
    color: #2afc85;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(42, 252, 133, 0.15);
    transition: all 0.3s ease;
}

.tag-minimal:hover {
    background: rgba(42, 252, 133, 0.15);
    transform: translateY(-2px);
}

.project-buttons {
    display: flex;
    gap: 12px;
}

.project-github-note {
    text-align: center;
    color: rgba(194, 198, 211, 0.6);
    font-size: 0.8rem;
    margin: 12px 0 0 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-project-primary,
.btn-project-secondary {
    flex: 1;
    padding: 10px 18px;
    background: rgba(42, 252, 133, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #2afc85;
    border: 1px solid rgba(42, 252, 133, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Subtle shine effect on hover */
.btn-project-primary::before,
.btn-project-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(42, 252, 133, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-project-primary:hover::before,
.btn-project-secondary:hover::before {
    left: 100%;
}

.btn-project-primary:hover,
.btn-project-secondary:hover {
    background: rgba(42, 252, 133, 0.15);
    border-color: rgba(42, 252, 133, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 252, 133, 0.15);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.project-tags span {
    background: rgba(42, 252, 133, 0.1);
    color: #2afc85;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
}

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

.btn-link {
    color: #2afc85;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #2afc85;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-link:hover {
    background: rgba(42, 252, 133, 0.1);
    transform: translateY(-3px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: rgba(21, 25, 37, 0.5);
}

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

.contact-info h3 {
    color: #e6e9f0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
}

.contact-info p {
    color: #c2c6d3;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #c2c6d3;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2afc85;
}

.contact-social {
    margin-top: 30px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: rgba(42, 252, 133, 0.05);
    padding: clamp(20px, 4vw, 40px);
    border-radius: 20px;
    border: 1px solid rgba(42, 252, 133, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 15px) clamp(15px, 3vw, 20px);
    background: rgba(12, 15, 23, 0.5);
    border: 2px solid rgba(42, 252, 133, 0.1);
    border-radius: 10px;
    color: #e6e9f0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2afc85;
    box-shadow: 0 0 15px rgba(42, 252, 133, 0.2);
}

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

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

/* ===== FOOTER ===== */
footer {
    background: rgba(12, 15, 23, 0.9);
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(42, 252, 133, 0.1);
}

footer {
    background: rgba(12, 15, 23, 0.95);
    padding: 40px 20px;
    border-top: 1px solid rgba(42, 252, 133, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(42, 252, 133, 0.4), transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.copyright-text {
    color: rgba(194, 198, 211, 0.6);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-kingdom {
    color: rgba(194, 198, 211, 0.4);
    font-size: clamp(0.7rem, 1.8vw, 0.75rem);
    margin: 8px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.kingdom-signature {
    color: rgba(42, 252, 133, 0.5);
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    background: rgba(12, 15, 23, 0.8);
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid rgba(42, 252, 133, 0.1);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.final-cta-content.show {
    opacity: 1;
    transform: translateY(0);
}

.final-cta-heading {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #e6e9f0;
    margin-bottom: 15px;
    font-weight: 700;
    background: linear-gradient(90deg, #e6e9f0, #2afc85);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta-subtitle {
    color: #c2c6d3;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
    margin-bottom: 35px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-final-primary,
.btn-final-secondary {
    padding: 14px 32px;
    background: rgba(42, 252, 133, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #2afc85;
    border: 1px solid rgba(42, 252, 133, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-final-primary::before,
.btn-final-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(42, 252, 133, 0.15),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-final-primary:hover::before,
.btn-final-secondary:hover::before {
    left: 100%;
}

.btn-final-primary:hover,
.btn-final-secondary:hover {
    background: rgba(42, 252, 133, 0.15);
    border-color: rgba(42, 252, 133, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 252, 133, 0.2);
}

/* ===== FLOATING CHATBOT ===== */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(42, 252, 133, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(42, 252, 133, 0.3);
    color: #2afc85;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(42, 252, 133, 0.2);
}

.chatbot-toggle:hover {
    background: rgba(42, 252, 133, 0.25);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(42, 252, 133, 0.3);
}

.chatbot-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: rgba(12, 15, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(42, 252, 133, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.chatbot-panel.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(42, 252, 133, 0.08);
    border-bottom: 1px solid rgba(42, 252, 133, 0.15);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2afc85;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-title i {
    font-size: 1.2rem;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: #c2c6d3;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.chatbot-close:hover {
    background: rgba(42, 252, 133, 0.1);
    color: #2afc85;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 250px;
}

.chat-message {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 85%;
}

.bot-message {
    background: rgba(42, 252, 133, 0.08);
    border: 1px solid rgba(42, 252, 133, 0.15);
    color: #e6e9f0;
    margin-right: auto;
}

.user-message {
    background: rgba(42, 252, 133, 0.2);
    border: 1px solid rgba(42, 252, 133, 0.3);
    color: #e6e9f0;
    margin-left: auto;
    text-align: right;
}

.chatbot-quick-options {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(42, 252, 133, 0.03);
    border-top: 1px solid rgba(42, 252, 133, 0.1);
}

.quick-option {
    padding: 12px 16px;
    background: rgba(42, 252, 133, 0.08);
    border: 1px solid rgba(42, 252, 133, 0.15);
    border-radius: 10px;
    color: #2afc85;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.quick-option:hover {
    background: rgba(42, 252, 133, 0.15);
    border-color: rgba(42, 252, 133, 0.3);
    transform: translateX(5px);
}

/* Responsive Chatbot */
@media (max-width: 768px) {
    .chatbot-panel {
        width: 300px;
        right: -20px;
    }
    
    .chatbot-container {
        bottom: 20px;
        right: 20px;
    }
}