/**
 * ULTIMATE PROFESSIONAL THEME
 * Ultra-modern dark theme with spectacular effects
 * All backend/SMTP functionality preserved
 */

:root {
    /* Enhanced Color System */
    --bg-primary: #0a0e27;
    --bg-secondary: #0d1117;
    --bg-tertiary: #161b22;
    --bg-card: #1a1f2e;

    --text-primary: #ffffff;
    --text-secondary: #c9d1d9;
    --text-muted: #8b949e;

    --accent-blue: #00d4ff;
    --accent-purple: #667eea;
    --accent-pink: #f093fb;
    --accent-orange: #ff6b6b;

    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #00a4cc 100%);
    --gradient-rainbow: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 25%,
        #f093fb 50%,
        #00d4ff 75%,
        #667eea 100%
    );
    --gradient-fire: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);

    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 20px rgba(102, 126, 234, 0.5);
    --glow-rainbow: 0 0 30px rgba(102, 126, 234, 0.4),
        0 0 60px rgba(240, 147, 251, 0.3);

    --border-subtle: 1px solid rgba(255, 255, 255, 0.1);
    --border-bright: 1px solid rgba(102, 126, 234, 0.3);
}

/* ===============================================
   GLOBAL & BODY STYLES
   =============================================== */
body {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
        Oxygen, Ubuntu, Cantarell, sans-serif !important;
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
            ellipse at top left,
            rgba(102, 126, 234, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at bottom right,
            rgba(240, 147, 251, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at center,
            rgba(0, 212, 255, 0.05) 0%,
            transparent 50%
        );
    z-index: 0;
    pointer-events: none;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Ensure content is above background */
.st-site-header,
.st-hero,
section,
footer {
    position: relative;
    z-index: 1;
}

/* ===============================================
   HEADER - GLASSMORPHISM NAVBAR
   =============================================== */
.st-site-header {
    background: rgba(10, 14, 39, 0.8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--border-bright);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(102, 126, 234, 0.2) inset;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
}

.st-site-header.st-sticky-header.st-sticky-active {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7),
        0 2px 0 rgba(102, 126, 234, 0.3) inset;
}

.st-site-branding img {
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
    transition: all 0.3s ease;
}

.st-site-branding:hover img {
    filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.8)) brightness(1.1);
    transform: scale(1.05);
}

/* Navigation Links */
.st-nav-list li a {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.st-nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.st-nav-list li a:hover,
.st-nav-list li a.active {
    color: var(--accent-blue) !important;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.st-nav-list li a:hover::before,
.st-nav-list li a.active::before {
    width: 100%;
    box-shadow: var(--glow-blue);
}

/* ===============================================
   HERO SECTION - SPECTACULAR DESIGN
   =============================================== */
.st-hero {
    background: linear-gradient(
            135deg,
            rgba(10, 14, 39, 0.95) 0%,
            rgba(26, 31, 58, 0.9) 50%,
            rgba(10, 14, 39, 0.95) 100%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.1"/><stop offset="100%" stop-color="%23f093fb" stop-opacity="0.05"/></linearGradient></defs><rect fill="url(%23g)" width="1200" height="600"/></svg>') !important;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Floating orbs */
.st-hero::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -15%;
    width: 50%;
    height: 50%;
    background: radial-gradient(
        circle,
        rgba(102, 126, 234, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: orbFloat1 20s ease-in-out infinite;
    filter: blur(60px);
}

.st-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -15%;
    width: 50%;
    height: 50%;
    background: radial-gradient(
        circle,
        rgba(240, 147, 251, 0.2) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: orbFloat2 25s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes orbFloat1 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30%, 30%) scale(1.1);
    }
}

@keyframes orbFloat2 {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30%, -30%) scale(1.15);
    }
}

.st-hero-text {
    position: relative;
    z-index: 10;
}

/* Author Image - Premium Style */
.st-author {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.st-author img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(var(--bg-primary), var(--bg-primary))
            padding-box,
        var(--gradient-rainbow) border-box;
    background-size: 200% 200%;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(102, 126, 234, 0.5),
        0 0 100px rgba(240, 147, 251, 0.3);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: authorPulse 8s ease-in-out infinite,
        borderGlow 4s linear infinite;
}

@keyframes authorPulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@keyframes borderGlow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.st-author img:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(102, 126, 234, 0.7),
        0 0 120px rgba(240, 147, 251, 0.5);
}

/* Hero Title */
.st-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: titleSlideIn 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-80px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

.st-hero h1 span {
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowShift 5s ease-in-out infinite;
    position: relative;
    display: inline-block;
    font-weight: 900;
}

@keyframes rainbowShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Description */
.st-hero p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 35px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Social Buttons */
.st-hero-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.st-hero-social-links .st-social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 27, 34, 0.8) !important;
    border: var(--border-bright) !important;
    border-radius: 50%;
    color: var(--text-secondary) !important;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.st-hero-social-links .st-social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.st-hero-social-links .st-social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg), var(--glow-blue);
    color: var(--text-primary) !important;
}

.st-hero-social-links .st-social-btn:hover::before {
    width: 100%;
    height: 100%;
}

.st-hero-social-links .st-social-btn i {
    position: relative;
    z-index: 1;
}

/* ===============================================
   SECTION HEADINGS
   =============================================== */
.st-section-heading.st-style1 {
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.st-section-heading-title {
    color: var(--accent-blue) !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.st-section-heading.st-style1 .st-section-heading-title::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.4),
        transparent
    ) !important;
    height: 2px;
}

.st-section-heading.st-style1 .st-section-heading-title::after {
    background: var(--gradient-accent) !important;
    height: 3px;
    box-shadow: var(--glow-blue);
}

.st-section-heading-subtitle {
    color: rgba(102, 126, 234, 0.12) !important;
    font-weight: 900 !important;
    font-size: 5.5rem !important;
    position: absolute !important;
    top: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
    white-space: nowrap;
    letter-spacing: 8px;
    text-transform: uppercase;
    -webkit-text-stroke: 1px rgba(102, 126, 234, 0.15);
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.st-about-wrap {
    background: var(--bg-secondary) !important;
    padding: 100px 0;
}

.st-about-img-wrap {
    position: relative;
}

.st-about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl), var(--glow-purple);
    border: var(--border-bright);
    transition: all 0.5s ease;
    position: relative;
}

.st-about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.st-about-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(102, 126, 234, 0.6);
}

.st-about-img:hover::before {
    opacity: 0.3;
}

.st-text-block-title {
    color: var(--text-primary) !important;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-text-block-subtitle {
    color: var(--accent-blue) !important;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.st-text-block-text p {
    color: var(--text-secondary) !important;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.st-text-block-details {
    list-style: none;
    padding: 0;
}

.st-text-block-details li {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.st-text-block-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.st-text-block-details li span:first-child {
    color: var(--accent-purple);
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

/* ===============================================
   BUTTONS
   =============================================== */
.st-btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.st-btn.st-style1.st-color1 {
    background: var(--gradient-main);
    color: var(--text-primary) !important;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md), var(--glow-purple);
}

.st-btn.st-style1.st-color1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.5s ease;
    z-index: -1;
}

.st-btn.st-style1.st-color1:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(102, 126, 234, 0.7);
}

.st-btn.st-style1.st-color1:hover::before {
    left: 0;
}

/* ===============================================
   PORTFOLIO SECTION
   =============================================== */
#portfolio {
    background: var(--bg-primary);
    padding: 100px 0;
}

.st-portfolio-single {
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.st-portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: var(--border-subtle);
    transition: all 0.4s ease;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    min-height: 120px;
}

.st-portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.st-portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(102, 126, 234, 0.4);
    border-color: var(--accent-purple);
}

.st-portfolio-item:hover::before {
    opacity: 0.15;
}

.st-portfolio-img {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.st-portfolio-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.st-portfolio-item:hover .st-portfolio-img {
    transform: scale(1.1) rotate(5deg);
}

.st-portfolio-item-hover {
    position: relative !important;
    z-index: 1;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 1 !important;
    visibility: visible !important;
    flex: 1;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
}

.st-portfolio-item-hover h5 {
    position: relative !important;
    color: var(--text-primary) !important;
    font-size: 1.2rem !important;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
}

.st-portfolio-item:hover .st-portfolio-item-hover h5 {
    color: var(--accent-blue) !important;
}

.st-portfolio-item-hover p {
    position: relative !important;
    color: var(--text-secondary) !important;
    font-size: 0.9rem !important;
    margin: 0;
    line-height: 1.5;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
#contact {
    background: var(--bg-secondary) !important;
    padding: 100px 0;
}

.st-contact-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 30px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-contact-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Form Styling */
.st-contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: var(--border-bright);
}

.st-form-field {
    margin-bottom: 25px;
}

.st-form-field input,
.st-form-field textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(13, 17, 23, 0.8) !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 10px;
    color: var(--text-primary) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.st-form-field input:focus,
.st-form-field textarea:focus {
    outline: none;
    border-color: var(--accent-blue) !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3),
        inset 0 0 10px rgba(0, 212, 255, 0.1);
    background: rgba(13, 17, 23, 1) !important;
}

.st-form-field input::placeholder,
.st-form-field textarea::placeholder {
    color: var(--text-muted);
}

.st-form-field textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Info */
.st-contact-info-wrap {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: var(--border-bright);
}

.st-single-contact-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(13, 17, 23, 0.5);
    border-radius: 12px;
    border: var(--border-subtle);
    transition: all 0.3s ease;
}

.st-single-contact-info:hover {
    transform: translateX(10px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-md), 0 0 20px rgba(102, 126, 234, 0.3);
}

.st-single-contact-info i {
    font-size: 1.5rem;
    color: var(--accent-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.st-single-info-details h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.st-single-info-details span,
.st-single-info-details a {
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.st-single-info-details a:hover {
    color: var(--accent-blue);
}

/* Social Links in Contact - CLEAN VERSION */
.st-social-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(13, 17, 23, 0.4);
    border-radius: 15px;
    border: var(--border-subtle);
}

.st-social-text {
    color: var(--text-primary);
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.st-social-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Social Button - Circle by default */
.st-social-link .st-social-btn {
    width: 60px;
    height: 60px;
    min-width: 60px;
    padding: 0 !important;
    margin: 0;
    background: var(--bg-tertiary) !important;
    border: 2px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary) !important;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Gradient border effect */
.st-social-link .st-social-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-rainbow);
    background-size: 200% 200%;
    border-radius: inherit;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Background gradient on hover */
.st-social-link .st-social-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-main);
    border-radius: inherit;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

/* Hover state - expand to pill shape */
.st-social-link .st-social-btn:hover {
    width: auto;
    min-width: 200px;
    padding: 0 30px !important;
    border-radius: 30px;
    transform: translateY(-5px);
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    color: var(--text-primary) !important;
    justify-content: flex-start;
    gap: 15px;
}

.st-social-link .st-social-btn:hover::before {
    opacity: 1;
}

.st-social-link .st-social-btn:hover::after {
    opacity: 0.9;
}

/* Icon container */
.st-social-link .st-social-btn .st-social-icon {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.st-social-link .st-social-btn .st-social-icon i {
    display: block;
}

.st-social-link .st-social-btn:hover .st-social-icon {
    transform: rotate(360deg);
}

/* Text label - hidden by default */
.st-social-link .st-social-btn .st-icon-name {
    position: relative;
    z-index: 1;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.st-social-link .st-social-btn:hover .st-icon-name {
    max-width: 200px;
    opacity: 1;
}

/* Individual button colors on hover */
.st-social-link .st-social-btn:nth-child(1):hover {
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.6);
}

.st-social-link .st-social-btn:nth-child(2):hover {
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.6);
}

.st-social-link .st-social-btn:nth-child(3):hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.6);
}

.st-social-link .st-social-btn:nth-child(4):hover {
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.6);
}

/* ===============================================
   ALERTS
   =============================================== */
.alert {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid;
    font-weight: 500;
    animation: slideInDown 0.5s ease;
}

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

.alert-success {
    background: rgba(46, 213, 115, 0.15);
    border-color: var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background: rgba(255, 71, 87, 0.15);
    border-color: var(--danger-color);
    color: var(--danger-color);
}

.alert-warning {
    background: rgba(255, 165, 2, 0.15);
    border-color: var(--warning-color);
    color: var(--warning-color);
}

.alert-info {
    background: rgba(30, 144, 255, 0.15);
    border-color: var(--info-color);
    color: var(--info-color);
}

/* ===============================================
   FOOTER
   =============================================== */
footer {
    background: var(--bg-primary);
    padding: 40px 0;
    border-top: var(--border-bright);
}

.st-copyright-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

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

::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-left: var(--border-subtle);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
    box-shadow: var(--glow-blue);
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 991px) {
    .st-hero h1 {
        font-size: 2.5rem;
    }

    .st-section-heading-subtitle {
        font-size: 3.5rem !important;
    }

    .st-author img {
        width: 180px;
        height: 180px;
    }

    .st-contact-form,
    .st-contact-info-wrap {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .st-hero h1 {
        font-size: 2rem;
    }

    .st-hero p {
        font-size: 1rem;
    }

    .st-section-heading-subtitle {
        font-size: 2.5rem !important;
    }

    .st-author img {
        width: 150px;
        height: 150px;
    }
}
