/* ============================================
   BEARDED NEOPHRON SOFTWARE - PREMIUM MAIN CSS
   Consolidated & Optimized Single Source of Truth
   ============================================ */

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Premium Color Palette */
    --primary-orange: #FF6B35;
    --accent-orange: #FF8C42;
    --dark-orange: #E85A2C;
    --light-orange: #FFA368;
    --pure-black: #000000;
    --off-black: #1A1A1A;
    --gray-black: #2D2D2D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E5E5E5;
    --text-secondary: #666666;
    
    /* Premium Easing Functions */
    --ease-premium: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
    
    /* Premium Shadow System */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
    --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Z-index Scale (1-10) */
    --z-base: 1;
    --z-elevated: 2;
    --z-dropdown: 3;
    --z-sticky: 4;
    --z-overlay: 5;
    --z-modal: 6;
    --z-popover: 7;
    --z-tooltip: 8;
    --z-navbar: 9;
    --z-notification: 10;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--off-black);
    background: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

/* ============================================
   PREMIUM ANCHOR STYLES - GLOBAL FOUNDATION
   ============================================ */

/* Base anchor reset and premium defaults */
a {
    color: var(--primary-orange);
    text-decoration: none;
    position: relative;
    transition: color 0.3s var(--ease-premium),
                transform 0.2s var(--ease-premium);
    cursor: pointer;
}

/* General anchor hover state */
a:hover {
    color: var(--accent-orange);
}

/* Visited state - subtle differentiation */
a:visited {
    color: var(--dark-orange);
}

/* Focus state for accessibility */
a:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Active state */
a:active {
    transform: scale(0.98);
}

/* Premium underline animation for inline text links */
p a,
.description a,
.bio-detail a,
.bio-summary a {
    color: var(--primary-orange);
    text-decoration: none;
    background-image: linear-gradient(
        to right,
        var(--primary-orange) 0%,
        var(--accent-orange) 100%
    );
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s var(--ease-premium),
                color 0.2s var(--ease-premium);
    padding-bottom: 2px;
}

p a:hover,
.description a:hover,
.bio-detail a:hover,
.bio-summary a:hover {
    background-size: 100% 2px;
    color: var(--accent-orange);
}

/* Contact links (email, phone) - premium style */
a[href^="mailto:"],
a[href^="tel:"] {
    color: var(--primary-orange);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    overflow: hidden;
}

/* Contact link hover effect - simplified without absolute positioning */
a[href^="mailto:"],
a[href^="tel:"] {
    background-size: 200% 100%;
    background-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 25%,
        rgba(255, 107, 53, 0.1) 50%,
        transparent 75%,
        transparent 100%
    );
    background-position: 200% 0;
    transition: background-position 0.5s var(--ease-premium), transform 0.3s var(--ease-premium);
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    background-position: -100% 0;
}

a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
    color: var(--accent-orange);
    transform: translateX(3px);
    background: rgba(255, 107, 53, 0.05);
}

/* External links - add icon and special styling */
a[href^="http"]:not([href*="beardedneophron.com"]):after {
    content: '↗';
    display: inline-block;
    margin-left: 4px;
    font-size: 0.85em;
    transition: transform 0.2s var(--ease-premium);
    vertical-align: super;
    font-weight: bold;
}

a[href^="http"]:not([href*="beardedneophron.com"]):hover:after {
    transform: translate(2px, -2px);
}

/* Footer links - subtle and elegant */
.footer a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 2px 4px;
    transition: color 0.3s var(--ease-premium);
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: background-size 0.3s var(--ease-premium), color 0.3s var(--ease-premium);
}

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

.footer a:hover {
    background-size: 100% 1px;
}

/* Button text links - special treatment */
.btn-text {
    color: var(--primary-orange);
    background: transparent;
    border: none;
    padding: 8px 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease-premium);
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s var(--ease-premium), transform 0.3s var(--ease-premium);
}

.btn-text:hover {
    background-size: 100% 2px;
}

.btn-text:hover {
    color: var(--accent-orange);
    transform: translateX(4px);
}

/* CTA links - premium glow effect */
.nav-cta,
a.nav-cta {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white) !important;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s var(--ease-premium);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* CTA shimmer effect - using gradient animation */
.nav-cta,
a.nav-cta {
    background-size: 200% 100%;
    background-image: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--accent-orange) 50%,
        var(--primary-orange) 100%
    );
    background-position: 0% 50%;
    transition: background-position 0.6s var(--ease-premium), transform 0.3s var(--ease-premium);
}

.nav-cta:hover,
a.nav-cta:hover {
    background-position: 100% 50%;
}

.nav-cta:hover,
a.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    color: var(--white) !important;
}

/* Card links - make entire cards clickable with premium hover */
.portfolio-card a.card-link,
.testimonial-card a.card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Tech tag links */
.tech-tag {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s var(--ease-premium);
}

.tech-tag:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    color: var(--white);
}


/* Active/current page indicator */
.nav-menu a.active {
    color: var(--primary-orange);
    opacity: 0.9;
}

.nav-menu a.active::after {
    width: 100%;
}

/* Social media links - icon hover effects */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    transition: all 0.3s var(--ease-premium);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Download links - special styling */
a[download] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
    border: 1px solid var(--primary-orange);
    border-radius: 8px;
    color: var(--primary-orange);
    font-weight: 500;
    transition: all 0.3s var(--ease-premium);
}

a[download]::after {
    content: '⬇';
    font-size: 0.9em;
    transition: transform 0.3s var(--ease-bounce);
}

a[download]:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

a[download]:hover::after {
    transform: translateY(3px);
}

/* Breadcrumb links */
.breadcrumb a {
    color: var(--text-secondary);
    position: relative;
    padding: 0 8px;
    transition: color 0.2s var(--ease-premium);
}

.breadcrumb a:hover {
    color: var(--primary-orange);
}

.breadcrumb a::after {
    content: '/';
    position: absolute;
    right: -4px;
    color: var(--medium-gray);
}

.breadcrumb a:last-child::after {
    display: none;
}

/* Skip link for accessibility */
.skip-link {
    position: fixed;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 8px 0;
    z-index: 1100;
    transition: top 0.3s var(--ease-premium);
}

.skip-link:focus {
    top: 0;
}

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

/* ============================================
   NAVIGATION - PREMIUM GLASS EFFECT
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: var(--z-navbar);
    padding: var(--spacing-sm) 0;
    transition: all 0.3s var(--ease-premium);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.nav-brand {
    font-size: var(--text-xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* ============================================
   MOBILE MENU - PREMIUM DESIGN
   ============================================ */

/* Mobile Menu Toggle - Premium Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    position: relative;
    z-index: calc(var(--z-navbar) + 2);
    transition: transform 0.3s var(--ease-premium);
}

/* Hamburger lines with premium animation */
.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.4s var(--ease-premium);
    display: block;
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hover effect for hamburger */
.nav-toggle:hover span {
    background: var(--accent-orange);
    box-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}

/* Active state - X formation with smooth animation */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--white);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--white);
}

/* Navigation Menu - Premium Mobile Overlay */
.nav-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(26, 26, 26, 0.98) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    list-style: none;
    padding: 100px var(--spacing-lg) var(--spacing-xl);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s var(--ease-premium),
                opacity 0.4s var(--ease-premium),
                visibility 0s 0.5s;
    z-index: calc(var(--z-navbar) + 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

/* Active state with smooth slide-in */
.nav-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.5s var(--ease-premium),
                opacity 0.4s var(--ease-premium),
                visibility 0s;
}

/* Menu items with staggered animation */
.nav-menu li {
    padding: 0;
    margin: var(--spacing-md) 0;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.4s var(--ease-premium),
                transform 0.4s var(--ease-premium);
}

/* Staggered animation for menu items */
.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }

/* Premium menu links styling */
.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-3xl);
    letter-spacing: -0.5px;
    display: inline-block;
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color 0.3s var(--ease-premium),
                transform 0.3s var(--ease-premium);
}

/* Premium underline effect */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    border-radius: 2px;
    transition: width 0.4s var(--ease-premium);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-orange);
    transform: translateX(10px);
}

/* Navigation CTA - Premium button style in mobile menu */
.nav-menu .nav-cta {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--text-xl);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s var(--ease-premium);
}

.nav-menu .nav-cta:hover {
    transform: translateY(-2px) translateX(0);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-orange));
}

.nav-menu .nav-cta::after {
    display: none;
}

/* Close button indicator */
.nav-menu.active::before {
    content: 'ESC';
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 0.5s 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* ============================================
   HERO SECTION - PREMIUM WITH VISIBLE TITLE
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--pure-black) 0%, var(--off-black) 50%, var(--gray-black) 100%);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

/* Animated Background Gradient - Contained within hero */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(255, 140, 66, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 50% 70%, rgba(255, 163, 104, 0.08) 0%, transparent 40%);
    animation: heroGradientFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGradientFloat {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    33% { opacity: 1; transform: scale(1.05); }
    66% { opacity: 0.6; transform: scale(0.98); }
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
    text-align: center;
    color: var(--white);
    animation: heroFadeIn 1s ease-out;
}

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

/* CRITICAL FIX: Hero Title - Always Visible with Premium Effects */
.hero-title {
    font-size: clamp(var(--text-3xl), 7vw, var(--text-6xl));
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
    
    /* SOLID WHITE COLOR - ALWAYS VISIBLE */
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    
    /* Premium Multi-layer Text Shadow for Depth */
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 40px rgba(255, 107, 53, 0.2),
        0 0 80px rgba(255, 107, 53, 0.1);
    
}

/* Premium Underline Accent for Hero Title */
.hero-title::after {
    content: '';
    display: block;
    margin: 10px auto 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), var(--accent-orange), transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.5);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    }
}

.mobile-break {
    display: block;
}

.hero-subtitle {
    font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: heroSubtitleFade 1.2s ease-out 0.3s backwards;
}

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

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-sm);
    animation: heroActionsFade 1.4s ease-out 0.6s backwards;
}

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

/* ============================================
   BUTTONS - PREMIUM DESIGN
   ============================================ */
.btn,
a.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s var(--ease-premium);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: var(--text-base);
    min-height: 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shimmer Effect for Buttons - simplified */
.btn,
a.btn {
    background-size: 200% 100%;
    transition: background-position 0.5s ease, transform 0.3s var(--ease-premium);
}


.btn-primary,
a.btn-primary {
    background-image: linear-gradient(
        135deg,
        var(--primary-orange) 0%,
        var(--accent-orange) 50%,
        var(--primary-orange) 100%
    );
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover,
a.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
    color: var(--white) !important;
}

.btn-primary:active,
a.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary,
a.btn-secondary {
    background: transparent;
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover,
a.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-large,
a.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--text-lg);
    min-height: 56px;
}

/* Button focus states for accessibility */
.btn:focus-visible,
a.btn:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Pulse Animation for Primary CTA */
.pulse-animation {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3),
                    0 0 0 10px rgba(255, 107, 53, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3),
                    0 0 0 20px rgba(255, 107, 53, 0);
    }
}

/* ============================================
   PORTFOLIO SECTION - PREMIUM CARDS
   ============================================ */
.portfolio {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.section-title {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--pure-black);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-intro {
    text-align: center;
    margin: 0 auto var(--spacing-xl);
    color: var(--gray-black);
    font-size: clamp(var(--text-base), 2.5vw, var(--text-lg));
    max-width: 700px;
    line-height: 1.7;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.portfolio-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(0, 0, 0, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.4s var(--ease-premium);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Premium Gradient Border Effect */
.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    opacity: 0.8;
    transition: opacity 0.4s var(--ease-premium);
}


.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.portfolio-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.card-header {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.project-status,
.project-industry {
    font-size: var(--text-sm);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.project-industry {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 140, 66, 0.2));
    color: var(--light-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(4px);
}

.portfolio-card h3 {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
    font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.client {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

/* Ensure all paragraph text in portfolio cards is visible */
.portfolio-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Description preview text (if exists) */
.description-preview {
    color: rgba(255, 255, 255, 0.9);
}

/* Full description text (if exists) */
.description-full {
    color: rgba(255, 255, 255, 0.9);
}

/* Any secondary text in portfolio cards */
.portfolio-card .secondary-text,
.portfolio-card .card-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Impact Metrics */
.impact-metrics {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow-x: auto;
    overflow-y: hidden;
}

.metric {
    flex: 1 1 0;
    text-align: center;
    min-width: 0;
}

.metric-value {
    display: block;
    font-size: clamp(0.875rem, 1.25rem, var(--text-lg));
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    filter: brightness(1.1);
    word-break: break-word;
    overflow-wrap: break-word;
}

.metric-label {
    display: block;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* Impact Metrics Mobile Fix */
@media (max-width: 480px) {
    .impact-metrics {
        gap: var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    .metric {
        min-width: 70px;
    }
}

/* Tech Stack */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all 0.2s var(--ease-premium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.tech-tag:hover {
    transform: translateY(-2px);
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* ============================================
   ABOUT/TEAM SECTION - SIMPLIFIED & ELEGANT
   ============================================ */
.about {
    padding: var(--spacing-xxl) 0;
    background: var(--white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-top: var(--spacing-xl);
}

.about-intro h3 {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    font-weight: 700;
    color: var(--pure-black);
    margin-bottom: var(--spacing-xs);
}

.member-title {
    font-size: var(--text-lg);
    color: var(--primary-orange);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--primary-orange);
}

.bio-section {
    margin-bottom: var(--spacing-lg);
}

.bio-highlight {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-orange);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.bio-summary,
.bio-detail {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

/* Skills Section - styles moved to main tech-stack-detailed definition */

.skills-full-profile h4 {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.skill-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.skill-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    padding: var(--spacing-md);
    text-align: center;
    transition: all 0.3s var(--ease-premium);
}

/* Remove hover animation - keep subtle static hover */
.skill-card:hover {
    transform: none; /* No movement */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); /* Very subtle shadow */
    border-color: rgba(255, 107, 53, 0.25); /* Subtle orange on hover */
}

.skill-card.primary-skill {
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.02);
}

.skill-icon {
    font-size: var(--text-3xl);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.skill-card h5 {
    color: var(--pure-black);
    font-size: var(--text-base);
    margin-bottom: var(--spacing-xs);
}

.skill-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.skill-section {
    background: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--primary-orange);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
}

.skill-section h5 {
    color: var(--primary-orange);
    font-size: var(--text-lg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.skill-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.skill-section ul {
    list-style: none;
    padding: 0;
}

.skill-section ul li {
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
}

.skill-section ul li::before {
    content: '→';
    display: inline-block;
    margin-right: var(--spacing-sm);
    color: var(--primary-orange);
    font-weight: bold;
}

.closing-statement {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    font-style: italic;
    color: var(--gray-black);
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION - PREMIUM VERTICAL LAYOUT
   ============================================ */

/* About Intro Wrapper - Full Width Bio Section */
.about-intro-wrapper {
    width: 100%;
    max-width: 900px; /* Optimal reading width */
    margin: 0 auto var(--spacing-xl) auto; /* Optimized spacing */
    padding: 0;
    animation: fadeInUp 0.8s var(--ease-premium) forwards;
    opacity: 0;
    animation-delay: 0.1s;
}

/* Premium Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-xl) auto; /* Optimized spacing */
    position: relative;
    height: 60px;
    animation: fadeIn 1s var(--ease-premium) 0.3s forwards;
    opacity: 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.2) 50%,
        rgba(255, 107, 53, 0.4) 100%
    );
    position: relative;
    overflow: hidden;
}

.divider-line:first-child {
    background: linear-gradient(
        90deg,
        rgba(255, 107, 53, 0.4) 0%,
        rgba(255, 107, 53, 0.2) 50%,
        transparent 100%
    );
}

/* Animated divider shine effect */
.divider-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 53, 0.6),
        transparent
    );
    animation: dividerShine 3s var(--ease-premium) infinite;
}

.divider-icon {
    width: 60px;
    height: 60px;
    margin: 0 var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.3),
        0 8px 24px rgba(255, 107, 53, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    animation: dividerPulse 2s var(--ease-premium) infinite;
}

.divider-icon::before {
    content: '⚡';
    font-size: 24px;
    color: white;
    animation: iconRotate 8s linear infinite;
}

/* Tech Stack Wrapper - Full Width Section */
.tech-stack-wrapper {
    width: 100%;
    position: relative;
    opacity: 1; /* Fully visible, no animation */
    /* Premium spacing optimization */
    margin-top: clamp(var(--spacing-lg), 5vw, var(--spacing-xl));
    /* Ensure content doesn't overflow on small screens */
    overflow: visible;
}

/* Tech Stack Detailed - Clean Flat Card Design */
.tech-stack-detailed {
    /* Clean flat background - subtle warm white */
    background: #FEFDFB;
    
    /* Clean single border */
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    
    /* Premium responsive padding */
    padding: clamp(var(--spacing-xl), calc(var(--spacing-xl) * 1.382), calc(var(--spacing-xl) * 1.618)) 
             clamp(var(--spacing-lg), 5vw, var(--spacing-xl));
    
    /* Single subtle shadow for card definition */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    
    position: relative;
    overflow: hidden;
    
    /* Remove all transitions for static appearance */
    transition: none;
    
    /* Add max-width for optimal reading experience */
    max-width: 1100px;
    margin: 0 auto;
}

/* Remove animated gradient overlay */
.tech-stack-detailed::before {
    display: none;
}

/* Remove hover effects - keep it static */
.tech-stack-detailed:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); /* Same as default */
    border-color: rgba(255, 107, 53, 0.15); /* Same as default */
}

/* Force static positioning - prevent any JS transforms */
.tech-stack-wrapper,
.tech-stack-detailed {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    position: relative !important;
    will-change: auto !important;
    contain: layout style paint;
    backface-visibility: hidden;
}

/* Ensure natural document flow */
.tech-stack-wrapper.visible,
.tech-stack-detailed.visible {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Skills Details Grid - Two Column Layout */
.skill-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Enhanced Skill Tags with Premium Styling */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.skill-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: default;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

/* Category-based coloring */
.skill-tag[data-category="primary"] {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.skill-tag[data-category="secondary"] {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.skill-tag[data-category="devops"] {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.skill-tag[data-category="cloud"] {
    background: linear-gradient(135deg, #48c6ef, #6f86d6);
    color: white;
    box-shadow: 0 4px 12px rgba(72, 198, 239, 0.25);
}

.skill-tag[data-category="database"] {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    box-shadow: 0 4px 12px rgba(17, 153, 142, 0.25);
}

/* Hover effects for skill tags */
.skill-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Skill tag hover effect - built into the tag */
.skill-tag {
    background-size: 200% 100%;
    transition: all 0.3s var(--ease-premium), background-position 0.5s var(--ease-premium);
}

.skill-tag:hover {
    background-position: -100% 50%;
}

/* Enhanced Strength List */
.strength-list {
    list-style: none;
    padding: 0;
}

.strength-list li {
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s var(--ease-premium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.strength-list li:last-child {
    border-bottom: none;
}

.strength-list li::before {
    content: '✓';
    display: inline-block;
    margin-right: var(--spacing-sm);
    color: var(--primary-orange);
    font-weight: bold;
    font-size: var(--text-lg);
    animation: checkBounce 0.5s var(--ease-bounce) forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

.strength-list li:hover {
    color: var(--pure-black);
    transform: translateX(4px);
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.03) 0%, transparent 100%);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


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

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


@keyframes checkBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Scroll-triggered animations (disabled for tech-stack) */
.about-intro-wrapper.visible {
    animation-play-state: running;
}
/* Tech-stack-wrapper no longer needs visible class handling */

/* Override old grid layout */
.about-grid {
    display: block; /* Remove grid */
}

/* ============================================
   ABOUT CTA - PREMIUM CENTERED DESIGN
   ============================================ */
.about-cta {
    padding: var(--spacing-xl) var(--spacing-xl);
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.03) 0%, 
        rgba(255, 140, 66, 0.06) 50%, 
        rgba(255, 107, 53, 0.03) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 53, 0.08);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(255, 107, 53, 0.03),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
    animation: ctaGlowPulse 8s ease-in-out infinite;
}

/* Premium glass effect overlay */
.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 50% -50%,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s var(--ease-premium);
}

/* Decorative accent lines */
.about-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 107, 53, 0.15) 20%,
        rgba(255, 107, 53, 0.3) 50%,
        rgba(255, 107, 53, 0.15) 80%,
        transparent 100%
    );
    opacity: 0.5;
    z-index: 0;
}

.about-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        rgba(255, 140, 66, 0.08) 50%, 
        rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(255, 107, 53, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
}

.about-cta:hover::before {
    opacity: 1;
}

.cta-text {
    font-size: clamp(var(--text-lg), 2.5vw, var(--text-xl));
    color: var(--gray-black);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    opacity: 0.9;
    transition: all 0.3s var(--ease-premium);
}

.about-cta:hover .cta-text {
    opacity: 1;
    transform: scale(1.02);
}

/* Premium CTA button styling */
.about-cta .btn {
    position: relative;
    z-index: 1;
    padding: calc(var(--spacing-sm) * 1.5) calc(var(--spacing-lg) * 1.5);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    border: none;
    border-radius: 12px;
    color: var(--white);
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.25),
        0 8px 24px rgba(255, 107, 53, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease-premium);
    overflow: hidden;
    text-transform: none;
    display: inline-block;
}

/* Button shine effect */
.about-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s var(--ease-premium);
}

.about-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    box-shadow: 
        0 8px 20px rgba(255, 107, 53, 0.35),
        0 12px 32px rgba(255, 107, 53, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

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

.about-cta .btn:active {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 
        0 4px 12px rgba(255, 107, 53, 0.3),
        0 6px 16px rgba(255, 107, 53, 0.2),
        inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Subtle glow animation */
@keyframes ctaGlowPulse {
    0%, 100% {
        box-shadow: 
            0 4px 6px rgba(0, 0, 0, 0.02),
            0 12px 24px rgba(255, 107, 53, 0.03),
            inset 0 1px 2px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.03),
            0 16px 32px rgba(255, 107, 53, 0.06),
            inset 0 1px 3px rgba(255, 255, 255, 0.15);
    }
}

/* Mobile responsiveness for CTA */
@media (max-width: 767px) {
    /* Show nav brand on mobile */
    .nav-brand {
        font-size: var(--text-xl);
        font-weight: 700;
        color: var(--primary-orange);
        letter-spacing: -0.5px;
    }
    
    .quick-contact-mobile {
        display: none;
    }
    
    /* Center hamburger menu on mobile when brand is hidden */
    .navbar .container {
        justify-content: flex-end;
    }
    
    .nav-toggle {
        margin-left: auto;
    }
    
    .about-cta {
        padding: var(--spacing-lg) var(--spacing-md);
        border-radius: 16px;
    }
    
    .cta-text {
        font-size: var(--text-base);
        margin-bottom: var(--spacing-md);
    }
    
    .about-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: var(--spacing-md) var(--spacing-lg);
    }
}

/* Tablet responsiveness */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-cta {
        padding: var(--spacing-xl) var(--spacing-lg);
    }
    
    .about-cta .btn {
        padding: calc(var(--spacing-sm) * 1.3) calc(var(--spacing-lg) * 1.3);
    }
}

/* ============================================
   TESTIMONIALS - PREMIUM WITH COLLAPSE
   ============================================ */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials .section-title {
    color: var(--pure-black);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: var(--z-base);
}

.testimonials .section-intro {
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: var(--z-base);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    position: relative;
    z-index: var(--z-base);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(0, 0, 0, 0.99));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.3s var(--ease-premium);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Premium Gradient Border Effect */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    opacity: 0.7;
    transition: all 0.3s var(--ease-premium);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.08);
}

.testimonial-card:hover::before {
    opacity: 1;
    height: 3px;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.testimonial-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.client-name {
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.client-role {
    color: var(--primary-orange);
    font-size: var(--text-sm);
}

/* Testimonial Content with Collapse */
.testimonial-content-wrapper {
    overflow: hidden;
    transition: max-height 0.3s var(--ease-premium);
}

.testimonial-card[data-expanded="false"] .testimonial-content-wrapper {
    max-height: 4.5em;
}

.testimonial-card[data-expanded="false"] .testimonial-content-wrapper {
    background-image: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.95) 100%);
    background-size: 100% 100%;
    background-position: bottom;
}

.testimonial-card[data-expanded="true"] .testimonial-content-wrapper {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.testimonial-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-content p {
    margin-bottom: var(--spacing-sm);
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

.testimonial-highlight {
    color: var(--accent-orange);
    font-size: var(--text-base);
    margin-top: var(--spacing-xs);
    font-style: italic;
    font-weight: bold;
}

/* Read More Button */
.read-more-btn {
    background: transparent;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s var(--ease-premium);
    margin-top: var(--spacing-md);
}

.read-more-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Custom Scrollbar for Testimonials */
.testimonial-content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.testimonial-content-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.testimonial-content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.4);
    border-radius: 3px;
    transition: background 0.2s ease;
}

.testimonial-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.6);
}

/* ============================================
   CONTACT SECTION - PREMIUM CTA
   ============================================ */
.contact {
    padding: var(--spacing-xxl) 0;
    text-align: center;
    overflow: hidden;
}

/* Premium Contact Background */
.contact {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    animation: contactBgShift 15s ease-in-out infinite;
}

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


.contact .section-title {
    color: var(--white);
}

.contact-intro {
    color: var(--white);
    font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 400px;
    margin: 0 auto var(--spacing-md);
}

.contact .btn-primary,
.contact a.btn-primary {
    background: var(--pure-black);
    color: var(--primary-orange) !important;
    border: 2px solid var(--primary-orange);
}

.contact .btn-primary:hover,
.contact a.btn-primary:hover {
    background: var(--off-black);
    color: var(--accent-orange) !important;
    border-color: var(--accent-orange);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact .btn-secondary,
.contact a.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white) !important;
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.contact .btn-secondary:hover,
.contact a.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.contact-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
}

/* ============================================
   PHONE LINKS ON ORANGE BACKGROUNDS - PREMIUM VISIBILITY
   ============================================ */

/* Phone link specific styling when on orange/colored backgrounds */
.phone-link,
.contact .phone-link,
.contact a[href^="tel:"] {
    /* Premium glass morphism effect with white base */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    
    /* Dark text for maximum contrast */
    color: var(--pure-black) !important;
    font-weight: 600;
    
    /* Premium spacing and shape */
    padding: 10px 20px;
    margin: 0 8px;
    border-radius: 25px;
    
    /* Elegant border with subtle glow */
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    
    /* Smooth transitions */
    transition: all 0.3s var(--ease-premium);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    
    /* Subtle pulse animation to draw attention */
    animation: phoneButtonPulse 3s ease-in-out infinite;
}

/* Phone icon styling if present */
.phone-link::before,
.contact a[href^="tel:"]::before {
    content: '📞';
    font-size: 1.1em;
    filter: grayscale(0.2);
    transition: all 0.3s var(--ease-premium);
}

/* Premium shimmer effect - using gradient animation */
.phone-link,
.contact a[href^="tel:"] {
    background-size: 200% 100%;
    background-position: 100% 50%;
    transition: all 0.3s var(--ease-premium), background-position 0.6s var(--ease-premium);
}

/* Hover state - luxurious interaction */
.phone-link:hover,
.contact .phone-link:hover,
.contact a[href^="tel:"]:hover {
    /* Enhanced glass effect on hover */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1), 
        rgba(255, 255, 255, 0.95));
    
    /* Maintain dark text for readability */
    color: var(--pure-black) !important;
    
    /* Premium elevation and glow */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 50px rgba(255, 255, 255, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.8);
    
    /* Stronger border on hover */
    border-color: rgba(255, 255, 255, 0.5);
    
    /* Stop pulse on hover for focused interaction */
    animation-play-state: paused;
}

/* Trigger shimmer on hover */
.phone-link:hover,
.contact a[href^="tel:"]:hover {
    background-position: -100% 50%;
}

/* Icon animation on hover */
.phone-link:hover::before,
.contact a[href^="tel:"]:hover::before {
    transform: rotate(15deg) scale(1.2);
    filter: grayscale(0);
}

/* Active/pressed state */
.phone-link:active,
.contact .phone-link:active,
.contact a[href^="tel:"]:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Focus state for accessibility */
.phone-link:focus-visible,
.contact a[href^="tel:"]:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

/* Subtle pulse animation */
@keyframes phoneButtonPulse {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.1),
            0 0 30px rgba(255, 255, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.1),
            0 0 40px rgba(255, 255, 255, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
}

/* Quick contact mobile buttons - ensure visibility */
.quick-contact-mobile .quick-contact-btn[href^="tel:"] {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pure-black) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.quick-contact-mobile .quick-contact-btn[href^="tel:"]:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

/* Responsive adjustments for phone links */
@media (max-width: 767px) {
    .phone-link,
    .contact a[href^="tel:"] {
        padding: 8px 16px;
        font-size: var(--text-sm);
        margin: 0 4px;
    }
    
    .phone-link::before,
    .contact a[href^="tel:"]::before {
        font-size: 1em;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--pure-black);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: var(--spacing-lg);
    font-size: var(--text-sm);
}

/* ============================================
   STICKY CTA BUTTON
   ============================================ */
.sticky-cta,
a.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white) !important;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease-premium);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4),
                    0 0 0 15px rgba(255, 107, 53, 0.1);
    }
}

.sticky-cta:hover,
a.sticky-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    animation: none;
    color: var(--white) !important;
}

.sticky-cta-icon {
    font-size: var(--text-xl);
    transition: transform 0.3s var(--ease-premium);
}

.sticky-cta:hover .sticky-cta-icon,
a.sticky-cta:hover .sticky-cta-icon {
    transform: translateX(4px);
}

.sticky-cta:active,
a.sticky-cta:active {
    transform: translateY(-1px) scale(1.02);
}

/* ============================================
   SCROLL PROGRESS INDICATOR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-orange));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1100;
    transition: transform 0.1s ease;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: row;
        gap: var(--spacing-lg);
        padding: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        height: auto;
        overflow: visible;
        justify-content: flex-end;
        align-items: center;
    }
    
    .nav-menu li {
        padding: 0;
        margin: 0;
        opacity: 1;
        transform: none;
    }
    
    .nav-menu a {
        font-size: var(--text-base);
        font-weight: 500;
        padding: var(--spacing-xs) var(--spacing-sm);
        color: var(--white);
    }
    
    .nav-menu a::after {
        height: 2px;
    }
    
    .nav-menu .nav-cta {
        margin-top: 0;
        margin-left: var(--spacing-sm);
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--text-base);
        border-radius: 25px;
        background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    }
    
    .nav-menu.active::before {
        display: none;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        gap: var(--spacing-md);
    }
    
    .mobile-break {
        display: inline;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-actions {
        flex-direction: row;
        justify-content: center;
        max-width: 600px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Ensure hamburger menu is visible on mobile */
    .nav-toggle {
        display: flex !important;
    }
    
    /* Ensure mobile menu styles are applied */
    .nav-menu {
        position: fixed !important;
        transform: translateX(100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* About section mobile adjustments */
    .about-intro-wrapper {
        max-width: 100%;
        margin-bottom: calc(var(--spacing-xl) * 1.618);
        padding: 0 var(--spacing-sm);
    }
    
    .section-divider {
        margin: var(--spacing-xl) auto;
        height: 40px;
    }
    
    .divider-icon {
        width: 40px;
        height: 40px;
        margin: 0 var(--spacing-sm);
    }
    
    .divider-icon::before {
        font-size: 18px;
    }
    
    .tech-stack-detailed {
        /* Optimized mobile padding for better height management */
        padding: clamp(var(--spacing-lg), 8vw, calc(var(--spacing-xl) * 1.2)) 
                 clamp(var(--spacing-md), 4vw, var(--spacing-lg));
        border-radius: 16px;
        /* Remove max-width constraint on mobile for full width */
        max-width: 100%;
    }
    
    .skill-details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .skill-cards {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
    }
    
    .sticky-cta-text {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
   ============================================ */

/* Focus Styles */
*:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary,
    .portfolio-card,
    .testimonial-card {
        border: 2px solid currentColor;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--off-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-orange), var(--accent-orange));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-orange), var(--dark-orange));
}

/* Print Styles */
@media print {
    .navbar,
    .hero-actions,
    .contact-actions,
    .sticky-cta,
    .scroll-progress {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .portfolio-card,
    .testimonial-card {
        page-break-inside: avoid;
    }
}

/* ============================================
   PREMIUM COMPANY PROFILE SECTIONS
   Isolated styles for new content integration
   ============================================ */

/* Premium Why Choose Us Section */
.premium-why-choose-us {
    margin: 4rem 0;
    padding: 3rem 0;
    position: relative;
    animation: premiumFadeIn 0.8s ease-out;
}

.premium-section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.premium-intro-text {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Premium Value Cards Grid */
.premium-value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Premium Value Card */
.premium-value-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease-premium);
    cursor: pointer;
    overflow: hidden;
}

.premium-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-value-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 
        0 20px 40px rgba(255, 107, 53, 0.2),
        0 0 60px rgba(255, 107, 53, 0.1),
        inset 0 0 20px rgba(255, 107, 53, 0.05);
}

.premium-value-card:hover::before {
    opacity: 1;
}

/* Card Glow Effect */
.premium-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.premium-value-card:hover .premium-card-glow {
    opacity: 1;
    animation: premiumPulse 2s ease-in-out infinite;
}

/* Card Content */
.premium-card-content {
    position: relative;
    z-index: 2;
}

.premium-card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: premiumFloat 3s ease-in-out infinite;
}

.premium-value-card:nth-child(2) .premium-card-icon {
    animation-delay: 0.5s;
}

.premium-value-card:nth-child(3) .premium-card-icon {
    animation-delay: 1s;
}

.premium-value-card:nth-child(4) .premium-card-icon {
    animation-delay: 1.5s;
}

.premium-value-card:nth-child(5) .premium-card-icon {
    animation-delay: 2s;
}

.premium-value-card:nth-child(6) .premium-card-icon {
    animation-delay: 2.5s;
}

.premium-card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--off-black);
    margin: 0;
    line-height: 1.4;
}

/* Card Shine Effect */
.premium-card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.7) 50%,
        transparent 60%
    );
    animation: premiumShine 3s ease-in-out infinite;
}

.premium-closing-statement {
    text-align: center;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

/* Premium Enhanced Contact Section */
.premium-enhanced-contact {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--off-black), var(--pure-black));
}

.premium-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.3), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 140, 66, 0.2), transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 163, 104, 0.1), transparent 70%);
    animation: premiumGradientShift 15s ease-in-out infinite;
}

/* Particle Effects */
.premium-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premium-particles::before,
.premium-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: premiumFloat 20s linear infinite;
}

.premium-particles::before {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.premium-particles::after {
    top: 60%;
    right: 30%;
    animation-delay: 10s;
}

/* Premium Contact Card */
.premium-contact-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 30px;
    padding: 4rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 107, 53, 0.05);
}

/* Gradient Text */
.premium-gradient-text {
    background: linear-gradient(90deg, var(--primary-orange), var(--light-orange), var(--primary-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: premiumGradientFlow 3s linear infinite;
}

/* CTA Content */
.premium-cta-content {
    margin: 2rem 0 3rem;
}

.premium-cta-question {
    font-size: 1.25rem;
    color: var(--white);
    margin: 1rem 0;
    opacity: 0.9;
    line-height: 1.6;
}

.premium-divider-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    margin: 2rem auto;
    animation: premiumPulse 2s ease-in-out infinite;
}

.premium-cta-message {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-top: 2rem;
}

/* Premium Shimmer Button */
.premium-shimmer-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

.premium-shimmer-btn .btn-text {
    position: relative;
    z-index: 2;
}

.premium-btn-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: premiumShimmer 3s ease-in-out infinite;
}

.premium-shimmer-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.4),
        0 0 60px rgba(255, 107, 53, 0.2);
}

/* Premium Contact Note */
.premium-contact-note {
    color: var(--medium-gray) !important;
    margin-top: 2rem;
}

.premium-phone-link {
    color: var(--primary-orange) !important;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.premium-phone-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.premium-phone-link:hover::after {
    width: 100%;
}

.premium-availability {
    display: inline-block;
    margin-left: 0.5rem;
    opacity: 0.8;
}

/* Premium Animations */
@keyframes premiumFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes premiumPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes premiumShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) translateY(200%) rotate(45deg);
    }
}

@keyframes premiumShimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(200%) rotate(45deg);
    }
}

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

@keyframes premiumGradientShift {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(5deg) scale(1.1);
    }
}

/* Mobile Responsiveness for Premium Sections */
@media (max-width: 768px) {
    .premium-value-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .premium-value-card {
        padding: 1.5rem;
    }
    
    .premium-card-icon {
        font-size: 2rem;
    }
    
    .premium-section-subtitle {
        font-size: 2rem;
    }
    
    .premium-contact-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .premium-cta-question {
        font-size: 1.125rem;
    }
    
    .premium-enhanced-contact {
        padding: 3rem 0;
    }
    
    /* Reduce animations on mobile */
    .premium-card-shine,
    .premium-btn-shimmer {
        animation: none;
    }
    
    .premium-value-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .premium-value-card,
    .premium-shimmer-btn,
    .premium-card-glow,
    .premium-particles::before,
    .premium-particles::after,
    .premium-gradient-bg,
    .premium-gradient-text,
    .premium-card-shine,
    .premium-btn-shimmer,
    .premium-divider-line,
    .premium-card-icon {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .premium-value-card:hover {
        transform: none;
    }
}