@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & VARIABLES --- */
:root {
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.5);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --accent: #ec4899;
    --accent-glow: rgba(236, 72, 153, 0.5);
    
    /* Dark Theme Default */
    --bg-deep: #030014;
    --bg-surface: rgba(10, 10, 20, 0.5);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --neon-shadow: 0 0 20px var(--primary-glow);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

[data-theme="light"] {
    --bg-deep: #f8fafc;
    --bg-surface: rgba(241, 245, 249, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(15, 23, 42, 0.08);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --card-shadow: 0 8px 32px 0 rgba(148, 163, 184, 0.15);
    --neon-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

/* --- BASE & UTILITIES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Smooth Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

ul {
    list-style: none;
}

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

/* --- LOADER SCREEN --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #030014;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    animation: progressFill 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

/* --- SCROLL PROGRESS INDICATOR --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s ease-out;
}


/* --- BACKGROUNDS & AURORA EFFECTS --- */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

[data-theme="light"] .aurora-container {
    opacity: 0.25;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: floatAurora 20s infinite alternate;
}

.aurora-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 70%);
}

.aurora-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    animation-delay: -5s;
}

.aurora-3 {
    top: 30%;
    left: 50%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    animation-delay: -10s;
}

/* --- STICKY GLASS NAVBAR --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 15px 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    transition: var(--transition-smooth), top 0.3s ease;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 12px 60px;
    background: rgba(10, 10, 20, 0.8);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(248, 250, 252, 0.85);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    color: var(--text-primary);
    transform: rotate(45deg);
    box-shadow: var(--neon-shadow);
}

.theme-toggle-btn .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle-btn .moon-icon {
    display: none;
}
[data-theme="light"] .theme-toggle-btn .sun-icon {
    display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* --- GLASS BUTTONS --- */
.btn-premium {
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    box-shadow: var(--neon-shadow);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-primary);
}

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

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-tag {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--secondary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-secondary);
    min-height: 40px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 10px;
}

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

.hero-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.hero-social-link:hover {
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
    transform: translateY(-5px);
}

[data-theme="light"] .hero-social-link:hover {
    color: var(--primary);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-frame {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--neon-shadow);
    transition: var(--transition-smooth);
    animation: floatFrame 6s ease-in-out infinite alternate;
    overflow: hidden;
}

.profile-frame:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.profile-img-container {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: var(--bg-deep);
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.profile-frame:hover img {
    transform: scale(1.08);
}

.floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    filter: blur(1px);
    animation: floatShape 8s ease-in-out infinite alternate;
}

.shape-1 {
    top: 10%;
    right: 10%;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-glow);
    border-radius: 12px;
    animation-duration: 6s;
}

.shape-2 {
    bottom: 20%;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px dashed var(--secondary-glow);
    border-radius: 50%;
    animation-duration: 9s;
}

/* --- SECTION HEADINGS & REVEALS --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* Custom brush stroke reveal container */
.reveal-brush {
    position: relative;
    overflow: hidden;
}

.reveal-brush::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    transform: translateX(-100%);
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-brush.revealed::after {
    transform: translateX(100%);
}

/* Cinematic Reveal Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-blur {
    opacity: 0;
    filter: blur(15px);
    transition: opacity 1s ease, filter 1s ease;
}
.reveal-blur.revealed {
    opacity: 1;
    filter: blur(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-zoom.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-slide-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-slide-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-slide-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-photo-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-glass);
}

.about-photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(3, 0, 20, 0.8));
    z-index: 1;
}

.about-photo-wrapper img {
    transition: transform 0.8s ease;
}

.about-photo-wrapper:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-primary);
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-tabs-container {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
}

.about-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(255, 255, 255, 0.01);
}

.about-tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.about-tab-btn:hover, .about-tab-btn.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.about-tab-btn.active {
    border-bottom: 2px solid var(--primary);
}

.about-tab-content {
    padding: 25px;
    display: none;
}

.about-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-list-icon {
    color: var(--secondary);
    display: flex;
    margin-top: 3px;
}

.about-list-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.about-list-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Stats Counter Grid */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- SKILLS SECTION --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 25px;
}

.skill-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
}

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

.skill-circle-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skill-circle-wrapper svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.skill-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 6;
}

[data-theme="light"] .skill-circle-bg {
    stroke: rgba(15, 23, 42, 0.05);
}

.skill-circle-progress {
    fill: none;
    stroke: url(#skillGradient);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    transition: stroke-dashoffset 2s cubic-bezier(0.1, 0.8, 0.3, 1);
}

.skill-percentage {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.skill-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    z-index: 2;
}

.skill-card:hover .skill-name {
    color: var(--text-primary);
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--card-shadow);
    z-index: 1;
}

/* Glowing Border Animation */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, transparent 40%, var(--primary), var(--secondary), transparent 60%);
    background-size: 200% 200%;
    background-position: 0% 0%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background-position 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
    box-shadow: var(--neon-shadow);
}

.service-card:hover::after {
    opacity: 1;
    animation: rotateGradientBorder 4s linear infinite;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link svg {
    transform: translateX(5px);
}

/* --- PORTFOLIO SECTION --- */
.portfolio-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.portfolio-filter-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-filter-btn:hover, .portfolio-filter-btn.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.portfolio-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.portfolio-item:hover .portfolio-img-box img {
    transform: scale(1.08);
}

.portfolio-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 0, 20, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-img-overlay {
    opacity: 1;
}

.portfolio-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-action-btn {
    transform: scale(1);
}

.portfolio-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-cat {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.portfolio-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    max-width: 800px;
    width: 100%;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--accent);
    color: #fff;
}

.lightbox-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.lightbox-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-details {
    padding: 30px;
}

/* --- EXPERIENCE SECTION --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 3px solid var(--primary);
    top: 15px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(6, 182, 212, 0.05);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-subtitle {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- ACHIEVEMENTS COUNTERS --- */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.achievement-icon {
    color: var(--accent);
    margin-bottom: 5px;
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(45deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.achievement-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- TESTIMONIALS SLIDER --- */
.testimonials-slider-container {
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    color: #eab308;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.contact-map-wrapper {
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    filter: grayscale(1) invert(0.9) contrast(1.2);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.contact-map-wrapper:hover {
    filter: none;
    opacity: 1;
}

/* Contact Form */
.contact-form {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 12px 18px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

textarea.form-control {
    resize: none;
    height: 120px;
}

.submit-btn {
    justify-content: center;
    margin-top: 10px;
}

.form-feedback {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    display: none;
}

.form-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-float.clicked {
    animation: clickBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.whatsapp-icon-svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon-svg {
    transform: scale(1.08);
}

/* WhatsApp Glowing Ripple */
.whatsapp-float::before, .whatsapp-float::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: ripple 2s infinite ease-in-out;
}

.whatsapp-float::after {
    animation-delay: 1s;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background-color: #030014;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes clickBounce {
    0% { transform: scale(1.1) rotate(10deg); }
    30% { transform: scale(0.85) rotate(-5deg); }
    60% { transform: scale(1.2) rotate(15deg); }
    100% { transform: scale(1.1) rotate(10deg); }
}

/* --- FOOTER --- */
.footer {
    background: rgba(3, 0, 20, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 80px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V0C26.9,8.75,55.05,15.15,83.9,19.28,154.21,29.3,227.87,33.75,321.39,56.44Z' fill='%238b5cf6' opacity='.05'/%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 100%;
    animation: waveFlow 20s linear infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.8fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Back To Top Button */
.back-to-top {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.back-to-top:hover {
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--neon-shadow);
    transform: translateY(-5px);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes progressFill {
    100% { width: 100%; }
}

@keyframes floatAurora {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(10%, 15%) scale(1.1) rotate(360deg); }
}

@keyframes floatFrame {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

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

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

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes waveFlow {
    0% { background-position-x: 0px; }
    100% { background-position-x: 1200px; }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 992px) {
    .navbar {
        padding: 12px 25px;
    }
    
    .nav-links {
        display: none; /* Hide on mobile/tablet, show mobile menu drawer */
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-desc {
        margin: 0 auto 10px auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-photo-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile Nav Drawer Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-glass);
    z-index: 1000;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--text-primary);
    padding-left: 10px;
}

/* --- EXTRA MOBILE RESPONSIVENESS AND HERO CIRCLE ADJUSTMENTS (< 576px) --- */
@media (max-width: 576px) {
    .profile-frame {
        width: 250px;
        height: 250px;
        padding: 5px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-experience-badge {
        padding: 10px 15px;
        bottom: 15px;
        left: 15px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 15px;
    }
    
    .skill-card {
        padding: 15px 10px;
    }
    
    .skill-circle-wrapper {
        transform: scale(0.85);
        margin-bottom: -10px;
    }
    
    .testimonial-glass-card {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .whatsapp-tooltip {
        right: 0;
        bottom: 75px;
        top: auto;
        left: auto;
        font-size: 0.75rem;
        padding: 6px 12px;
        transform: translateY(10px);
    }
    
    .whatsapp-float:hover .whatsapp-tooltip {
        transform: translateY(0);
    }
}
