/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: hsl(210, 11%, 15%);
    background-color: hsl(210, 20%, 99%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary: hsl(203, 100%, 14%);
    --primary-light: hsl(203, 80%, 24%);
    --primary-lighter: hsl(203, 60%, 34%);
    --accent: hsl(30, 100%, 48%);
    --accent-light: hsl(30, 100%, 58%);
    --accent-lighter: hsl(30, 100%, 68%);
    --background: hsl(210, 20%, 99%);
    --foreground: hsl(210, 11%, 15%);
    --muted: hsl(210, 20%, 94%);
    --muted-foreground: hsl(210, 11%, 46%);
    --border: hsl(210, 20%, 92%);
    --card: hsl(0, 0%, 100%);
    --secondary: hsl(210, 20%, 96%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(203, 100%, 14%), hsl(203, 100%, 22%));
    --gradient-accent: linear-gradient(135deg, hsl(30, 100%, 48%), hsl(30, 100%, 58%));
    --gradient-hero: linear-gradient(135deg, hsl(203, 100%, 14%) 0%, hsl(203, 100%, 18%) 50%, hsl(203, 80%, 24%) 100%);
    --gradient-glass: linear-gradient(135deg, hsl(0, 0%, 100%, 0.1), hsl(0, 0%, 100%, 0.05));
    
    /* Shadows */
    --shadow-elegant: 0 25px 50px -12px hsl(203, 100%, 14%, 0.25);
    --shadow-card: 0 8px 24px -8px hsl(203, 100%, 14%, 0.12);
    --shadow-button: 0 4px 16px -4px hsl(30, 100%, 48%, 0.3);
    --shadow-floating: 0 20px 40px -8px hsl(203, 100%, 14%, 0.15);
    --shadow-glow: 0 0 40px hsl(30, 100%, 48%, 0.2);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-floating);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    color: var(--primary);
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-text {
    color: var(--primary);
}

.navbar:not(.scrolled) .logo-text {
    color: white;
}

.logo-accent {
    color: var(--accent);
    margin-left: 0.25rem;
}

.logo-underline {
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    margin-top: 2px;
}

.logo:hover .logo-underline {
    transform: scaleX(1);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
    border-radius: 0.5rem;
}

.navbar.scrolled .nav-link {
    color: var(--foreground);
}

.nav-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background: white;
    transition: var(--transition-smooth);
    margin: 1px 0;
}

.navbar.scrolled .hamburger-line {
    background: var(--foreground);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    margin: 0 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-floating);
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--foreground);
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--accent);
    background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-cta {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: white;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(247, 127, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.particle-1 {
    top: 5rem;
    left: 5rem;
    width: 1rem;
    height: 1rem;
}

.particle-2 {
    top: 10rem;
    right: 8rem;
    width: 1.5rem;
    height: 1.5rem;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 10rem;
    left: 10rem;
    width: 0.75rem;
    height: 0.75rem;
    animation-delay: 2s;
}

.particle-4 {
    top: 15rem;
    right: 5rem;
    width: 1.25rem;
    height: 1.25rem;
    animation-delay: 0.5s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-glass);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    space-y: 2rem;
    animation: fadeUp 0.6s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.025em;
    margin: 1.5rem 0;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.title-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin: 1.5rem 0;
}

.hero-subtitle p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .hero-subtitle p {
        font-size: 1.875rem;
    }
}

.subtitle-underline {
    width: 5rem;
    height: 0.25rem;
    background: var(--gradient-accent);
    border-radius: 9999px;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 36rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeIn 0.5s ease-out 0.3s both;
}

@media (min-width: 1024px) {
    .hero-image {
        justify-content: flex-end;
    }
}

.image-container {
    position: relative;
}

.floating-ring {
    position: absolute;
    border: 1px solid rgba(247, 127, 0, 0.2);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.ring-1 {
    inset: -2rem;
}

.ring-2 {
    inset: -4rem;
    animation-duration: 30s;
    animation-direction: reverse;
}

.profile-image {
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-floating);
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    background: var(--gradient-glass);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.profile-image:hover img {
    transform: scale(1.1);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 7rem;
    height: 7rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-floating);
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: glow 2s ease-in-out infinite;
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.achievement {
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-floating);
    animation: float 3s ease-in-out infinite;
}

.achievement svg {
    width: 2rem;
    height: 2rem;
}

.achievement-1 {
    top: -1rem;
    left: -1rem;
}

.achievement-2 {
    top: -0.5rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--accent-light);
    animation-delay: 1s;
}

.achievement-2 svg {
    width: 1.5rem;
    height: 1.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeUp 0.6s ease-out 0.6s both;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat {
    text-align: center;
    transition: var(--transition-smooth);
}

.stat:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background: var(--gradient-accent);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 48, 73, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(0, 48, 73, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: fadeUp 0.6s ease-out;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-underline {
    width: 6rem;
    height: 0.25rem;
    background: var(--gradient-accent);
    border-radius: 9999px;
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeUp 0.6s ease-out 0.2s both;
}

/* About Section */
.about {
    background: var(--background);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    space-y: 1.5rem;
}

.about-journey h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-journey p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-skills h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--secondary);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.skill-tag:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.about-values h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(247, 127, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent);
}

.value-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Services Section */
.services {
    position: relative;
    background: linear-gradient(to bottom right, rgba(210, 220, 230, 0.3), rgba(210, 220, 230, 0.5));
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.bg-decoration-1 {
    top: 5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--gradient-accent);
}

.bg-decoration-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    background: var(--gradient-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
    overflow: hidden;
    animation: scaleIn 0.4s ease-out;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-floating);
    border-color: rgba(247, 127, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--gradient-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-button);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-content h3 {
    color: var(--primary-light);
}

.service-content p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    space-y: 0.75rem;
}

.service-features li {
    font-size: 0.875rem;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-smooth);
}

.service-features li::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-card:hover .service-features li::before {
    transform: scale(1.25);
}

.service-card:hover .service-features li {
    color: var(--primary);
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.service-card:hover .service-hover-line {
    transform: scaleX(1);
}

.services-cta {
    position: relative;
    background: var(--gradient-hero);
    color: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-floating);
    overflow: hidden;
    animation: fadeUp 0.6s ease-out 0.8s both;
}

@media (min-width: 1024px) {
    .services-cta {
        padding: 4rem 3rem;
    }
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cta-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .services-cta h3 {
        font-size: 3rem;
    }
}

.cta-accent {
    background: linear-gradient(135deg, hsl(30, 100%, 58%), hsl(30, 100%, 68%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Portfolio Section */
.portfolio {
    background: var(--background);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: var(--card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-timeline {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.portfolio-timeline svg {
    width: 1rem;
    height: 1rem;
}

.portfolio-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.portfolio-btn:hover {
    color: var(--accent-light);
}

.portfolio-btn svg {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-smooth);
}

.portfolio-btn:hover svg {
    transform: translateX(2px);
}

/* Modal Styles */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elegant);
    max-width: 32rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-large {
    max-width: 64rem;
}

.modal-header {
    position: relative;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--muted);
    color: var(--foreground);
}

.modal-close svg {
    width: 1rem;
    height: 1rem;
}

.modal-body {
    padding: 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background: rgba(210, 220, 230, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(247, 127, 0, 0.2);
}

.testimonial-quote svg {
    width: 2rem;
    height: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.testimonial-content {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-info h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.125rem;
}

.author-industry span {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(247, 127, 0, 0.1);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
}

.testimonials-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-elegant);
}

@media (min-width: 1024px) {
    .testimonials-cta {
        padding: 3rem;
    }
}

.testimonials-cta h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Section */
.blog {
    background: var(--background);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.blog-category {
    padding: 0.375rem 0.75rem;
    background: var(--secondary);
    color: var(--foreground);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.blog-read-time svg {
    width: 1rem;
    height: 1rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.blog-date svg {
    width: 1rem;
    height: 1rem;
}

.blog-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.blog-btn:hover {
    color: var(--accent-light);
}

.blog-btn svg {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-smooth);
}

.blog-btn:hover svg {
    transform: translateX(2px);
}

.blog-content {
    max-width: none;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.blog-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1rem 0 0.75rem;
}

.blog-content p {
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-content ul {
    color: var(--foreground);
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.blog-content strong {
    font-weight: 600;
    color: var(--primary);
}

/* Contact Section */
.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
}

.contact-info {
    space-y: 1.5rem;
}

.contact-intro h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--foreground);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-details {
    space-y: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.contact-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(247, 127, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-value:hover {
    color: var(--accent);
}

.contact-services {
    padding: 1.5rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
}

.contact-services h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-list {
    space-y: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.service-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form-container {
    padding: 2rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
}

.contact-form {
    space-y: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    space-y: 0.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: var(--background);
    color: var(--foreground);
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 5rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 1rem;
}

.form-message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #047857;
}

.form-message.error {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #dc2626;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    space-y: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 3;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
        margin-bottom: 0;
    }
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 28rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-nav h4,
.footer-services h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav ul,
.footer-services ul {
    list-style: none;
    space-y: 0.5rem;
}

.footer-nav li,
.footer-services li {
    margin-bottom: 0.5rem;
}

.footer-nav a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-nav a:hover,
.footer-services a:hover {
    color: var(--accent);
}

.footer-services a {
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgb(221 207 207 / 20%);
    padding: 2rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--accent);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(247, 127, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(247, 127, 0, 0.6);
    }
}

/* Utility Classes */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-cta h3 {
        font-size: 1.875rem;
    }
    
    .profile-image {
        width: 20rem;
        height: 20rem;
    }
    
    .experience-badge {
        width: 5rem;
        height: 5rem;
    }
    
    .badge-number {
        font-size: 1.25rem;
    }
    
    .badge-text {
        font-size: 0.625rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 5rem;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* No Content Styles */
.no-content {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    grid-column: 1 / -1;
}

.no-content p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .modal {
        display: none;
    }
} 