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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Floating background shapes - reduced opacity for cleaner look */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: #00a3e0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: #fdb913;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 120px;
    height: 120px;
    background: #00a3e0;
    border-radius: 70% 30% 70% 30% / 30% 30% 30% 70%;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: #fdb913;
    border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%;
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -40px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

/* Navigation - More prominent and sticky */
nav {
    background: white;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 163, 224, 0.08);
    border-bottom: 3px solid #00a3e0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    margin-left: 0;
}

.nav-brand:hover h1 {
    color: inherit;
    text-decoration: none;
}

nav h1 {
    font-family: "Space Grotesk", system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-decoration: none;
    cursor: pointer;
    margin: 0;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

nav a {
    color: #666;
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 600;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    position: relative;
}

nav a:not(.nav-brand)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00a3e0, #fdb913);
    transition: width 0.3s ease;
}

nav a:not(.nav-brand):hover,
nav a:not(.nav-brand).active {
    color: #00a3e0;
}

nav a:not(.nav-brand):hover::after,
nav a:not(.nav-brand).active::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Section - Much stronger presence */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5fafd 100%);
    padding: 7rem 2rem 5rem;
    text-align: left;
    border-bottom: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00a3e0 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fdb913 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a3e0 0%, #006b8f 50%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #00a3e0;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 650px;
    line-height: 1.9;
    color: #555;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Hero Banner - Elevated design */
.hero-banner {
    background: linear-gradient(135deg, #ffffff 0%, #f5fafd 100%);
    padding: 5rem 2rem;
    border-bottom: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-banner.center {
    text-align: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00a3e0 0%, transparent 70%);
    opacity: 0.12;
    border-radius: 50%;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fdb913 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.hero-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00a3e0 0%, #006b8f 50%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.hero-banner p {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.hero-banner.center p {
    margin: 0 auto;
}

/* CTA Buttons - More dynamic */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn {
    padding: 0.95rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #00a3e0 0%, #0088b8 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 163, 224, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fdb913 0%, #f0a500 100%);
    color: #1a1a1a;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(253, 185, 19, 0.4);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Sections - Clean and spacious */
section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    background: white;
}

section.alternate {
    background: #f9fbfd;
}

section.alternate::before {
    content: '';
    position: absolute;
    top: 80px;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ec008c 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

section.alternate::after {
    content: '';
    position: absolute;
    bottom: 150px;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #00a3e0 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 0;
    background: linear-gradient(135deg, #00a3e0 0%, #006b8f 50%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #00a3e0, #fdb913);
    border-radius: 3px;
}

section.center h2 {
    text-align: center;
}

section.center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Featured Work Grid - More dynamic */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
}

.featured-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border: 2px solid #f0f0f0;
    border-left: 5px solid #00a3e0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.featured-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: #ec008c;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.35s;
}

.featured-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    border-radius: 50% 0 0 0;
    opacity: 0.15;
    transition: all 0.35s;
}

.featured-item:hover {
    transform: translateY(-8px);
    border-left-color: #fdb913;
    box-shadow: 0 16px 32px rgba(0, 163, 224, 0.15);
}

.featured-item:hover::before {
    opacity: 0.1;
    transform: scale(1.1);
}

.featured-item:hover::after {
    opacity: 0.25;
}

.featured-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-item .year {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.about-grid p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.about-grid p:last-child {
    margin-bottom: 0;
}

.quick-facts {
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid #00a3e0;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 163, 224, 0.12);
    transition: all 0.3s;
}

.quick-facts:hover {
    border-left-color: #fdb913;
    box-shadow: 0 10px 24px rgba(0, 163, 224, 0.18);
}

.quick-facts h3 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    padding: 1rem 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.95rem;
    color: #555;
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts strong {
    color: #00a3e0;
    font-weight: 700;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.expertise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid #00a3e0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #f0f0f0;
    border-left: 5px solid #00a3e0;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: #ec008c;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s;
}

.expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    border-radius: 50% 0 0 0;
    opacity: 0.15;
    transition: all 0.35s;
}

.expertise-card:hover {
    border-left-color: #fdb913;
    box-shadow: 0 12px 28px rgba(0, 163, 224, 0.15);
    transform: translateY(-5px);
}

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

.expertise-card:hover::after {
    opacity: 0.2;
}

.expertise-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Work Page Styles */
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.project-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    border-left: 5px solid #00a3e0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0;
    border-left: 5px solid #00a3e0;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: #ec008c;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s;
}

.project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    border-radius: 50% 0 0 0;
    opacity: 0.15;
    transition: all 0.35s;
}

.project-card:hover {
    border-left-color: #fdb913;
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 163, 224, 0.18);
}

.project-card:hover::before {
    opacity: 0.1;
}

.project-card:hover::after {
    opacity: 0.2;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    gap: 2rem;
}

.project-title-group h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.project-year {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a3e0 0%, #0088b8 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 163, 224, 0.25);
    white-space: nowrap;
}

.project-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.project-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    background: #f0f8ff;
    color: #00a3e0;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    border: 2px solid #00a3e0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tag:hover {
    background: #00a3e0;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 163, 224, 0.3);
}

/* Skills Section */
.skills-section {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.skills-section h3 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

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

.skill-item {
    background: linear-gradient(135deg, #f9fbfd 0%, #f0f8ff 100%);
    padding: 1.2rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00a3e0;
    border: 2px solid #e0f2ff;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.skill-item:hover {
    background: linear-gradient(135deg, #00a3e0 0%, #0088b8 100%);
    color: white;
    border-color: #00a3e0;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 163, 224, 0.25);
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 5px solid #00a3e0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0;
    border-left: 5px solid #00a3e0;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150px;
    height: 150px;
    background: #ec008c;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.35s;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    border-radius: 50% 0 0 0;
    opacity: 0.15;
    transition: all 0.35s;
}

.contact-card:hover {
    border-left-color: #fdb913;
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 163, 224, 0.18);
}

.contact-card:hover::before {
    opacity: 0.1;
}

.contact-card:hover::after {
    opacity: 0.2;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-card a {
    display: inline-block;
    font-size: 1.15rem;
    color: #00a3e0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.contact-card a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fdb913;
    transition: width 0.3s;
}

.contact-card a:hover {
    color: #fdb913;
}

.contact-card a:hover::after {
    width: 100%;
}

.contact-card p {
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Social Links */
.social-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e8e8e8;
    position: relative;
    z-index: 2;
}

.social-section h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00a3e0 0%, #fdb913 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
    border: 2px solid #00a3e0;
    border-radius: 50%;
    color: #00a3e0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 163, 224, 0.12);
}

.social-link:hover {
    background: linear-gradient(135deg, #00a3e0 0%, #0088b8 100%);
    color: white;
    transform: scale(1.15) translateY(-3px);
    border-color: #0088b8;
    box-shadow: 0 8px 20px rgba(0, 163, 224, 0.3);
}

/* Footer */
footer {
    background: #f9fbfd;
    color: #666;
    text-align: center;
    padding: 3rem;
    border-top: 2px solid #e0e0e0;
    position: relative;
    z-index: 1;
}

footer a {
    color: #00a3e0;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

footer a:hover {
    color: #fdb913;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background: #0f0f0f;
        color: #e0e0e0;
    }

    nav {
        background: #1a1a1a;
        border-bottom-color: #00a3e0;
    }

    nav a {
        color: #b0b0b0;
    }

    nav a:hover,
    nav a.active {
        color: #00a3e0;
    }

    .hero,
    .hero-banner {
        background: linear-gradient(135deg, #1a1a1a 0%, #252a2f 100%);
    }

    .hero p,
    .hero-banner p {
        color: #b0b0b0;
    }

    section {
        background: #1a1a1a;
    }

    section.alternate {
        background: #252525;
    }

    .featured-item,
    .expertise-card,
    .project-card,
    .contact-card {
        background: #252525;
        color: #b0b0b0;
        border-color: #333;
    }

    .featured-item p,
    .expertise-card p,
    .project-description {
        color: #b0b0b0;
    }

    .featured-item .year {
        color: #888;
    }

    .about-grid p {
        color: #b0b0b0;
    }

    .quick-facts {
        background: #252525;
        border-left-color: #00a3e0;
        box-shadow: 0 6px 16px rgba(0, 163, 224, 0.2);
    }

    .quick-facts li {
        color: #b0b0b0;
        border-bottom-color: #333;
    }

    .quick-facts strong {
        color: #00a3e0;
    }

    .expertise-card:hover,
    .project-card:hover,
    .contact-card:hover {
        border-left-color: #fdb913;
        box-shadow: 0 12px 28px rgba(0, 163, 224, 0.2);
    }

    .tag {
        background: #333;
        color: #00a3e0;
        border-color: #00a3e0;
    }

    .tag:hover {
        background: #00a3e0;
        color: #1a1a1a;
    }

    .skill-item {
        background: #333;
        color: #00a3e0;
        border-color: #444;
    }

    .skill-item:hover {
        background: #00a3e0;
        color: #1a1a1a;
        border-color: #00a3e0;
    }

    .contact-card p {
        color: #b0b0b0;
    }

    .social-link {
        background: #252525;
        border-color: #00a3e0;
        color: #00a3e0;
        box-shadow: 0 4px 12px rgba(0, 163, 224, 0.2);
    }

    .social-link:hover {
        background: #00a3e0;
        color: #1a1a1a;
        box-shadow: 0 8px 20px rgba(0, 163, 224, 0.4);
    }

    footer {
        background: #252525;
        color: #b0b0b0;
        border-top-color: #333;
    }

    footer a {
        color: #00a3e0;
    }

    footer a:hover {
        color: #fdb913;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav a {
        margin-left: 0;
        margin-right: 1.5rem;
    }

    section h2 {
        font-size: 2.2rem;
    }

    .about-grid,
    .featured-grid,
    .expertise-grid,
    .projects-list,
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-header {
        flex-direction: column;
    }

    .project-year {
        margin-top: 1rem;
    }

    .shape {
        opacity: 0.05;
    }

    .featured-item,
    .expertise-card,
    .project-card,
    .contact-card {
        padding: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}