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

:root {
    --primary-black: #000000;
    --primary-gold: #FFD700;
    --gold-glow: #FFA500;
    --dark-charcoal: #1a1a1a;
    --off-white: #f5f5f5;
    --transition-speed: 0.3s;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes loaderFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes progressBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.cursor-glow {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.6);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s;
    opacity: 0;
}

/* Premium Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s var(--transition-smooth);
}

.loader-wrapper.fade-out {
    animation: loaderFadeOut 0.8s forwards;
}

.loader-content {
    text-align: center;
    z-index: 2;
}

.loader-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.loader-jhny {
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s linear infinite;
    background-size: 200% auto;
}

.loader-me {
    color: #ffffff;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 2rem;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-glow));
    border-radius: 10px;
    animation: progressBar 2s var(--transition-smooth) forwards;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.loader-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loader-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse 3s infinite;
}

/* Floating Gradient Orbs */
.gradient-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: floatOrb 25s infinite ease-in-out, orbPulse 8s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.15), transparent);
    bottom: -250px;
    right: -250px;
    animation-delay: 3s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 6s;
}

button, a, .filter-btn {
    cursor: pointer;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all var(--transition-speed);
}

.logo .jhny-text {
    color: var(--primary-gold);
}

.logo .me-text {
    color: #ffffff;
}

.logo:hover {
    text-shadow: 0 0 20px var(--primary-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--transition-speed) var(--transition-smooth);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all var(--transition-speed);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

.animate-text {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 1.2s var(--transition-bounce) forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

.delay-5 {
    animation-delay: 1.5s;
}

.delay-6 {
    animation-delay: 1.8s;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s forwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.3rem 3.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.5s var(--transition-bounce);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: width 0.7s var(--transition-smooth), height 0.7s var(--transition-smooth);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn:hover::before {
    width: 500px;
    height: 500px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    box-shadow: 
        0 10px 40px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.05);
    color: var(--primary-gold);
    border: 1.5px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.btn-arrow {
    transition: transform 0.4s var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--primary-gold);
    margin: 0 auto 0.5rem;
    animation: scrollAnimation 2s infinite;
}

.scroll-indicator p {
    font-size: 0.9rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--primary-black);
}

.testimonials-slider {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 320px;
    margin-bottom: 2rem;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 3rem;
    background: rgba(255, 215, 0, 0.04);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 35px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    opacity: 0;
    transform: scale(0.85) rotateY(15deg);
    transition: all 0.8s var(--transition-bounce);
    text-align: center;
    pointer-events: none;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    pointer-events: auto;
    box-shadow: 
        0 40px 100px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.quote-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    margin-top: 2rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
    position: relative;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    z-index: 100;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
}

.featured-services {
    padding: 6rem 0;
    background: var(--dark-charcoal);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-gold) 50%, var(--gold-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 215, 0, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    transition: all 0.6s var(--transition-bounce);
    border: 1px solid rgba(255, 215, 0, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(255, 165, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 30px 60px rgba(255, 215, 0, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-icon {
    margin-bottom: 2rem;
    transition: all 0.6s var(--transition-bounce);
    filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-5deg) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(255, 215, 0, 0.5));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.page-content {
    padding-top: 80px;
    min-height: 100vh;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin: 3rem 0 2rem;
    color: #ffffff;
}

/* About Hero Section */
.about-hero {
    padding: 10rem 0 6rem;
    background: var(--primary-black);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-label {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.about-avatar {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

/* Expertise Section */
.expertise-section {
    padding: 8rem 0;
    background: var(--primary-black);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.expertise-card {
    background: rgba(255, 215, 0, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: all 0.6s var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent 30%);
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.6s;
}

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

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.expertise-icon {
    margin-bottom: 2rem;
    transition: transform 0.6s var(--transition-bounce);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(-5deg);
}

.expertise-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.expertise-tags li {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Skills Section */
.skills-section {
    padding: 8rem 0;
    background: var(--dark-charcoal);
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.skill-group h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 2rem;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--gold-glow));
    border-radius: 10px;
    transition: width 1s var(--transition-smooth);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: var(--primary-black);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text .highlight {
    color: var(--primary-gold);
    font-weight: 600;
}

.page-header {
    padding: 6rem 0 3rem;
    text-align: center;
    background: var(--primary-black);
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 215, 0, 0.8);
    margin-top: 1rem;
    font-weight: 300;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 6rem 0;
    background: var(--primary-black);
}

.services-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.service-detailed {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

.service-detailed:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.3;
    min-width: 80px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-content h3 svg {
    flex-shrink: 0;
}

.service-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.custom-work-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.custom-work-note p {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.custom-work-note svg {
    flex-shrink: 0;
}

.custom-work-note strong {
    color: var(--primary-gold);
}

.tech-stack {
    padding: 6rem 0;
    background: var(--dark-charcoal);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tech-category {
    padding: 2rem;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s var(--transition-smooth);
}

.tech-category:hover {
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.tech-category h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s var(--transition-smooth);
}

.tech-badge:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: scale(1.05);
}

.services-section {
    padding: 4rem 0;
    background: var(--dark-charcoal);
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 215, 0, 0.03);
    transition: all 0.4s var(--transition-smooth);
}

.service-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon-large {
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-item p {
    color: rgba(255, 255, 255, 0.7);
}

.custom-projects {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-style: italic;
}

.skills-section {
    padding: 4rem 0;
}

.skills-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.skill-name {
    font-weight: 600;
    color: var(--off-white);
}

.skill-percentage {
    color: var(--primary-gold);
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), #ffa500);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s var(--transition-smooth);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.portfolio-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
}

.portfolio-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-label {
    display: inline-block;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    position: relative;
    padding: 0 2rem;
}

.portfolio-label::before,
.portfolio-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-gold);
}

.portfolio-label::before {
    left: 0;
}

.portfolio-label::after {
    right: 0;
}

.portfolio-hero-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: gradientShift 3s ease infinite;
}

.portfolio-hero-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-filter-section {
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.portfolio-filter-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 0.9rem 2.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 100px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-pill::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-gold);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.filter-pill:hover::before,
.filter-pill.active::before {
    width: 300px;
    height: 300px;
}

.filter-pill:hover,
.filter-pill.active {
    color: var(--primary-black);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.portfolio-showcase {
    padding: 5rem 0;
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.portfolio-project {
    background: rgba(255, 215, 0, 0.03);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-project::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

.portfolio-project:hover::before {
    opacity: 1;
}

.portfolio-project:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 20px 60px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.1) inset;
}

.project-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
    border-radius: 20px;
}

.project-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.project-icon {
    color: var(--primary-gold);
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-project:hover .project-icon {
    transform: scale(1.2) rotate(5deg);
    opacity: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-project:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    position: relative;
    z-index: 1;
}

.project-category {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.project-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--off-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    transition: color 0.3s;
}

.portfolio-project:hover .project-info h3 {
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.project-tech {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.project-tech span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.portfolio-project:hover .project-tech span {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    color: var(--primary-gold);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.project-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-gold);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.project-link:hover::before {
    width: 300px;
    height: 300px;
}

.project-link:hover {
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.project-link svg {
    transition: transform 0.4s;
}

.project-link:hover svg {
    transform: translate(3px, -3px);
}

.portfolio-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), transparent);
}

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

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-section {
    padding: 3rem 0 6rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin-bottom: 4rem;
    font-style: italic;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

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

.form-group label {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: var(--off-white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.submit-btn {
    margin-top: 1rem;
    position: relative;
}

.btn-arrow {
    transition: transform var(--transition-speed);
}

.submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.contact-info {
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.availability-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.availability-item svg {
    flex-shrink: 0;
}

.availability-item div h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.availability-item div p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    text-decoration: none;
    color: var(--off-white);
    transition: all var(--transition-speed) var(--transition-smooth);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(10px);
    border-color: var(--primary-gold);
}

.social-link svg {
    flex-shrink: 0;
}

.social-link span {
    font-weight: 600;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed) var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    flex-shrink: 0;
}

/* Form Messages */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.success-message {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.error-message {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

.h-captcha {
    margin: 1.5rem 0;
}

/* Footer Styles */
.footer {
    background: var(--dark-charcoal);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    max-width: 350px;
}

.footer-logo .logo {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: all 0.3s var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Services Dropdown */
.nav-menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    white-space: nowrap;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    min-width: 220px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding-left: 2rem;
}

/* Services Pages Styles */
.services-hero {
    padding: 12rem 0 6rem;
    background: var(--primary-black);
    text-align: center;
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.services-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.services-showcase {
    padding: 8rem 0;
    background: var(--dark-charcoal);
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card-main {
    background: rgba(255, 215, 0, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 30px;
    padding: 3.5rem 3rem;
    transition: all 0.6s var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.service-card-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(255, 165, 0, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s;
}

.service-card-main:hover::before {
    opacity: 1;
}

.service-card-main:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.4);
}

.service-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-icon-large {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    transition: transform 0.6s var(--transition-bounce);
}

.service-card-main:hover .service-icon-large {
    transform: scale(1.1) rotate(-5deg);
}

.service-card-main h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-card-main p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-link {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

/* Service Detail Page */
.service-detail-hero {
    padding: 12rem 0 8rem;
    background: var(--primary-black);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.service-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.service-visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

.service-visual-icon {
    position: relative;
    z-index: 1;
    color: var(--primary-gold);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes scrollAnimation {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Small Mobile - 390px (iPhone 14 Pro) */
@media (max-width: 480px) {
    /* Container & Spacing */
    .container {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    /* Navbar Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-speed) var(--transition-smooth);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: rgba(255, 215, 0, 0.05);
        border: none;
        border-radius: 10px;
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Typography Mobile */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .portfolio-hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 180px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 90vh;
        padding: 2rem 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Portfolio Filter Buttons */
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    /* Portfolio Grid */
    .portfolio-masonry {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .portfolio-project {
        padding: 1.5rem;
    }
    
    .project-number {
        font-size: 3rem;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    /* Grids to Single Column */
    .services-grid,
    .about-content,
    .contact-content,
    .about-hero-content,
    .about-stats,
    .expertise-grid,
    .skills-container,
    .service-features-grid,
    .services-grid-main,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-logo {
        max-width: 100%;
    }
    
    .footer-links ul {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .client-role {
        font-size: 0.9rem;
    }
    
    /* Stats Cards */
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-number {
        font-size: 2.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* About Page Hero */
    .about-hero {
        padding: 5rem 0 3rem;
    }
    
    .about-hero-visual {
        padding: 2rem;
    }
    
    /* Skills Section */
    .skill-item h4 {
        font-size: 1rem;
    }
    
    .skill-bar {
        height: 8px;
    }
}

/* Tablet - 768px (iPad) */
@media (min-width: 481px) and (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 2rem;
        max-width: 100%;
    }
    
    section {
        padding: 4rem 0;
    }
    
    /* Navbar Tablet */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-speed) var(--transition-smooth);
        border-top: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: rgba(255, 215, 0, 0.05);
        border: none;
        border-radius: 10px;
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Typography Tablet */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .portfolio-hero-title {
        font-size: 3.5rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    /* Grids - 2 Columns on Tablet */
    .services-grid,
    .about-stats,
    .expertise-grid,
    .services-grid-main,
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Single Column Layouts */
    .about-content,
    .contact-content,
    .portfolio-masonry,
    .about-hero-content,
    .skills-container,
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Portfolio */
    .portfolio-filters {
        gap: 1rem;
        justify-content: center;
    }
    
    .portfolio-project {
        padding: 2rem;
    }
    
    /* Footer Tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    /* Buttons */
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Large Tablet / Small Desktop - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 2rem;
    }
    
    .services-grid,
    .expertise-grid,
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop - 1025px to 1439px */
@media (min-width: 1025px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .services-grid,
    .expertise-grid,
    .services-grid-main {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop - 1440px+ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3rem;
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .portfolio-hero-title {
        font-size: 5rem;
    }
    
    .services-grid,
    .expertise-grid,
    .services-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .portfolio-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
}

/* Universal Touch-Friendly Elements */
@media (max-width: 768px) {
    /* Ensure all clickable elements are touch-friendly */
    a, button, .btn, .filter-btn, .nav-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Proper spacing for mobile interactions */
    .nav-link {
        padding: 1rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Form inputs touch-friendly */
    input, textarea, select {
        min-height: 50px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
