/* ==========================================================================
   Kristian Mesa - SEO Specialist Portfolio CSS
   Theme: Dark Marble & Amber/Gold Accents with Glassmorphism
   ========================================================================== */

:root {
    --bg-main: #0B0E14;
    --bg-card: rgba(22, 27, 38, 0.75);
    --bg-card-hover: rgba(30, 37, 52, 0.85);
    --border-color: rgba(255, 179, 0, 0.15);
    --border-color-glow: rgba(255, 179, 0, 0.4);
    
    --primary: #FF9F1C;
    --primary-hover: #FFB703;
    --primary-glow: rgba(255, 159, 28, 0.35);
    --accent: #E0A96D;
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    
    --gradient-gold: linear-gradient(135deg, #FFB703 0%, #FF7B00 100%);
    --gradient-card: linear-gradient(145deg, rgba(30, 36, 48, 0.6) 0%, rgba(15, 20, 29, 0.8) 100%);
    --gradient-elementor: linear-gradient(135deg, #93003F 0%, #E2434B 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 25px rgba(255, 159, 28, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 159, 28, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(224, 169, 109, 0.04) 0%, transparent 40%);
}

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

/* Typography & General */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
}

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

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 159, 28, 0.12);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Glassmorphism Card Utility */
.glass-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--border-color-glow);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 159, 28, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0B0E14;
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 159, 28, 0.5);
    color: #000;
}

.btn-outline {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 159, 28, 0.1);
    color: var(--primary);
}

.btn-elementor {
    background: var(--gradient-elementor);
    color: #FFF;
    box-shadow: 0 4px 20px rgba(226, 67, 75, 0.3);
}

.btn-elementor:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(226, 67, 75, 0.5);
    color: #FFF;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(11, 14, 20, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 159, 28, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-accent {
    color: var(--primary);
}

.badge-tag {
    font-size: 0.65rem;
    background: var(--gradient-gold);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-item {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-item:hover {
    color: var(--primary);
}

.highlight-link {
    color: #E2434B;
    font-weight: 600;
}

.highlight-link:hover {
    color: #FF5E66;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Global Interactive Ambient Background (Full Page) */
.global-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

.hero-spotlight-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(700px circle at var(--mouse-x, 50vw) var(--mouse-y, 30vh), rgba(255, 159, 28, 0.14), transparent 70%);
    transition: background 0.05s ease;
}

/* Floating Ambient Mesh Orbs across viewport */
.hero-mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
    animation: orbFloat 16s infinite ease-in-out alternate;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: rgba(255, 159, 28, 0.22);
    top: -10%;
    left: -5%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(16, 185, 129, 0.18);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 380px;
    height: 380px;
    background: rgba(59, 130, 246, 0.18);
    top: 35%;
    right: 20%;
    animation-delay: -9s;
}

.orb-4 {
    width: 420px;
    height: 420px;
    background: rgba(236, 72, 153, 0.15);
    bottom: 25%;
    left: 10%;
    animation-delay: -12s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
    100% { transform: translate(-40px, 50px) scale(0.85); }
}

/* Hero Section */
.hero-section {
    padding: 9rem 0 6rem 0;
    position: relative;
}

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

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: statusPulse 2s infinite ease-in-out;
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.dynamic-typewriter {
    display: inline-block;
    position: relative;
    border-right: 2px solid var(--primary);
    padding-right: 4px;
    animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
    0%, 100% { border-color: var(--primary); }
    50% { border-color: transparent; }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-md);
}

.interactive-stat:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 159, 28, 0.05);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-right: 0.3rem;
}

.stat-card p {
    width: 100%;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hero Profile Card */
.hero-card-container {
    position: relative;
    perspective: 1200px;
}

.profile-card {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.3s ease;
    border: 1px solid rgba(255, 159, 28, 0.25);
    background: rgba(15, 20, 29, 0.75);
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.profile-card:hover {
    box-shadow: 0 30px 70px rgba(255, 159, 28, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Floating Interactive Badges */
.floating-hero-badge {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: rgba(15, 20, 29, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 159, 28, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 159, 28, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}

.floating-hero-badge:hover {
    transform: scale(1.12) translateY(-4px) !important;
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 159, 28, 0.4);
}

.badge-top-right {
    top: -20px;
    right: -25px;
}

.badge-bottom-left {
    bottom: 40px;
    left: -35px;
}

.badge-top-left {
    top: 50px;
    left: -40px;
}

.text-gold { color: #FF9F1C; }
.text-emerald { color: #10B981; }
.text-cyan { color: #38BDF8; }

.float-anim-1 { animation: floatSlow 6s infinite ease-in-out alternate; }
.float-anim-2 { animation: floatSlow 7.5s infinite ease-in-out alternate-reverse; }
.float-anim-3 { animation: floatSlow 5.5s infinite ease-in-out alternate; }

@keyframes floatSlow {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(2deg); }
}

.avatar-glow-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--primary), #10B981, #3B82F6, var(--primary));
    opacity: 0.7;
    filter: blur(8px);
    animation: spinRing 8s linear infinite;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.profile-avatar-wrapper {
    position: relative;
    width: 115px;
    height: 115px;
    margin: 0 auto 1.5rem auto;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-gold);
    padding: 3px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 159, 28, 0.4);
}

.verified-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: #10B981;
    color: #FFF;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 3px solid #0B0E14;
}

.profile-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.role-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.email-link {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.2rem;
}

.profile-chips {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.profile-chips span {
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

.gbp-mockup-widget {
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.gbp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.gbp-logo {
    font-weight: 700;
    color: #FFF;
}

.gbp-rating {
    color: #FFB703;
    font-weight: 600;
}

.gbp-bar-item {
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.gbp-bar-item span {
    display: block;
    margin-bottom: 0.2rem;
}

.progress-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 3px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2.5rem 2rem;
}

.card-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 159, 28, 0.12);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Skills Section */
.skills-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.skills-category {
    padding: 2.5rem 2rem;
}

.skills-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
}

.skill-tags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.skill-tag-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.skill-tag-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.skill-meters {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.meter-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    background: var(--gradient-gold);
}

.tools-desc {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.2rem;
}

.tool-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.tool-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.8rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #FFF;
}

.semrush { background: #FF6400; }
.ahrefs { background: #0056B3; }
.analytics { background: #F9AB00; }
.gsc { background: #4285F4; }
.frog { background: #2E7D32; }
.canva { background: #00C4CC; }

.tool-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.tool-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Experience Section */
.timeline-item {
    padding: 2.5rem;
    position: relative;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-name {
    font-size: 1.6rem;
    color: var(--primary);
}

.job-role {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

.timeline-date {
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.experience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.experience-list li i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 1rem;
}

/* Audit Tool Section */
.audit-widget-card {
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.audit-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-md);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 159, 28, 0.25);
}

.audit-results {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.score-badge {
    background: var(--gradient-gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-md);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.result-box .box-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.recommendation-banner {
    background: rgba(255, 159, 28, 0.08);
    border: 1px solid var(--border-color);
    padding: 1.8rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Elementor Section */
.elementor-banner {
    padding: 4rem 3rem;
    text-align: center;
}

.elementor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-elementor);
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.elementor-banner h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.elementor-banner p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.05rem;
}

.elementor-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--gradient-elementor);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0 auto 1.2rem auto;
}

.elementor-action-bar {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
}

.contact-info-card, .contact-form-card {
    padding: 3rem 2.5rem;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 159, 28, 0.12);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-item a, .contact-item p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-response {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.contact-response.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10B981;
}

.hidden {
    display: none !important;
}

.width-full {
    width: 100%;
}

/* Footer */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 159, 28, 0.1);
    background: #07090D;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .skills-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(11, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Social Badges Container */
.social-badges-container {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-badges-container h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.social-badge-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.social-badge-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 159, 28, 0.12);
    border-color: var(--primary);
    color: var(--primary);
}

.ojp-badge:hover { color: var(--primary); border-color: var(--primary); background: rgba(255, 159, 28, 0.15); }
.linkedin-badge:hover { color: #0A66C2; border-color: #0A66C2; background: rgba(10, 102, 194, 0.12); }
.upwork-badge:hover { color: #14A800; border-color: #14A800; background: rgba(20, 168, 0, 0.12); }
.resume-badge:hover { color: #E2434B; border-color: #E2434B; background: rgba(226, 67, 75, 0.12); }

/* Interactive Resume Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-backdrop.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.modal-card {
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    overflow-y: auto;
    background: #0D1117;
    border: 1px solid rgba(255, 159, 28, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 159, 28, 0.15);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #EF4444;
    color: #EF4444;
    transform: rotate(90deg);
}

.resume-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.8rem;
}

.resume-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.resume-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.resume-headline h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.resume-role {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.resume-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.resume-body {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.resume-section h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.resume-timeline {
    border-left: 2px solid rgba(255, 159, 28, 0.3);
    padding-left: 1.2rem;
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.timeline-header h4 {
    font-size: 1.05rem;
    color: var(--text-main);
}

.timeline-company {
    background: rgba(255, 159, 28, 0.15);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: auto;
}

.timeline-item ul {
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.resume-skills-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.resume-skills-chips span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 0.82rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.resume-footer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

/* Printable Resume Formatting */
@media print {
    /* Hide main page elements during print */
    header, main, footer, .navbar, .hero-section, .about-section, .skills-section, .experience-section, .contact-section {
        display: none !important;
    }

    html, body {
        background: #ffffff !important;
        color: #111827 !important;
        font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
    }

    .modal-backdrop, .modal-backdrop.hidden {
        position: static !important;
        background: transparent !important;
        backdrop-filter: none !important;
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: 0 !important;
        width: 100% !important;
        height: auto !important;
    }

    .modal-card {
        position: static !important;
        max-width: 100% !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        background: #ffffff !important;
        color: #111827 !important;
        box-shadow: none !important;
        border: none !important;
        padding: 1.5rem !important;
        margin: 0 !important;
    }

    .modal-close-btn, .resume-footer {
        display: none !important;
    }

    .resume-header {
        border-bottom: 2px solid #e5e7eb !important;
        padding-bottom: 1rem !important;
        margin-bottom: 1.2rem !important;
    }

    .resume-avatar img {
        border: 2px solid #d97706 !important;
    }

    .resume-headline h2 {
        color: #111827 !important;
        font-size: 1.8rem !important;
    }

    .resume-role {
        color: #d97706 !important;
        font-weight: bold !important;
    }

    .resume-meta-tags span {
        color: #4b5563 !important;
    }

    .resume-section h3 {
        color: #d97706 !important;
        border-bottom: 1px solid #f3f4f6 !important;
        padding-bottom: 0.3rem !important;
        font-size: 1.1rem !important;
    }

    .resume-section p, .timeline-item ul, .timeline-item li {
        color: #1f2937 !important;
        font-size: 0.9rem !important;
    }

    .timeline-header h4 {
        color: #111827 !important;
    }

    .timeline-company {
        background: #fef3c7 !important;
        color: #b45309 !important;
        border: 1px solid #fde68a !important;
    }

    .timeline-date {
        color: #6b7280 !important;
    }

    .resume-skills-chips span {
        background: #f3f4f6 !important;
        color: #1f2937 !important;
        border: 1px solid #e5e7eb !important;
    }
}

/* Ranking Proof Heatmap Grid */
.proof-header-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.proof-toggle-btn {
    padding: 0.8rem 1.4rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.proof-toggle-btn.active, .proof-toggle-btn:hover {
    background: var(--gradient-gold);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.3);
}

.proof-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.status-badge-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    color: #10B981;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-dot.green { width: 8px; height: 8px; border-radius: 50%; background: #10B981; box-shadow: 0 0 8px #10B981; }
.badge-dot.red { width: 8px; height: 8px; border-radius: 50%; background: #EF4444; box-shadow: 0 0 8px #EF4444; }

.proof-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.metric-box h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.metric-box span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.proof-heatmap-side {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 159, 28, 0.3);
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.grid-pin {
    width: 65px;
    height: 65px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #FFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grid-pin:hover {
    transform: scale(1.15);
}

.pin-rank-1 { background: radial-gradient(circle at 30% 30%, #34D399, #059669); border: 2px solid #6EE7B7; }
.pin-rank-2 { background: radial-gradient(circle at 30% 30%, #10B981, #047857); border: 2px solid #34D399; }
.pin-rank-bad { background: radial-gradient(circle at 30% 30%, #F87171, #DC2626); border: 2px solid #FCA5A5; }

.heatmap-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 0.4rem; }
.legend-dot.green { background: #10B981; }
.legend-dot.red { background: #EF4444; }

/* Local SEO ROI Calculator */
.roi-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.roi-inputs select, .roi-inputs input[type="number"] {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-size: 0.95rem;
}

.roi-inputs input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.roi-results-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 159, 28, 0.35);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.roi-result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem;
    border-radius: var(--radius-md);
}

.roi-result-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roi-result-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-top: 0.3rem;
}

.roi-result-card small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.roi-result-card.highlight-card {
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.18) 0%, rgba(16, 185, 129, 0.15) 100%);
    border-color: rgba(255, 159, 28, 0.5);
}

.roi-result-card.highlight-card h3 {
    color: #10B981;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #FF9F1C;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    gap: 0.2rem;
}

.quote {
    color: var(--text-main);
    font-size: 0.98rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.8rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 159, 28, 0.15);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1rem;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-question i.fa-solid {
    color: var(--primary);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.5rem 1.8rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}
