/* styles.css */

:root {
    --bg-main: #f5f1eb;
    --bg-light: #faf8f5;
    --bg-accent: #f5d4c8;
    --bg-brown: #9b8b7a;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --text-grey: #999999;
    --border-color: #e8e3dd;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: -0.3px;
    overflow-x: hidden;
    cursor: none;
}

/* Cursor */
.cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--text-dark);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cursor-ring.active,
.cursor-dot.active {
    opacity: 1;
    transform: scale(1.5);
}

/* Navigation - CARD STYLE */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    background: rgba(245, 241, 235, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(245, 241, 235, 0.95);
}

.navbar-card {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex: 1;
    margin-left: 4rem;
}

.nav-link {
    color: var(--text-dark);
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link.active {
    color: var(--text-dark);
}

.nav-link:not(.active) {
    color: var(--text-grey);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.language-toggle {
    font-size: 0.8rem;
    color: var(--text-grey);
}

.separator {
    margin: 0 0.5rem;
}

.btn-cta {
    padding: 0.7rem 1.6rem;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--bg-brown);
    transform: translateY(-2px);
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section - CARD STYLE */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
}

.hero-wrapper {
    width: 100%;
}

.hero-card {
    background: var(--white);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 600px;
}

.hero-left {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    width: fit-content;
    font-weight: 600;
    animation: slideInUp 0.8s ease-out backwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: slideInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.italic {
    font-style: italic;
    font-weight: 300;
    font-size: 1.8rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-divider {
    width: 50px;
    height: 1.5px;
    background: var(--text-dark);
    margin: 1.5rem 0 2rem 0;
    animation: slideInUp 0.8s ease-out 0.15s backwards;
}

.services-list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    animation: slideInUp 0.8s ease-out 0.25s backwards;
}

.divider-dot {
    font-size: 0.4rem;
    opacity: 0.5;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 350px;
    animation: slideInUp 0.8s ease-out 0.3s backwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: slideInUp 0.8s ease-out 0.35s backwards;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--bg-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* Hero Right - Image Section */
.hero-right {
    position: relative;
    height: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
}

.image-background {
    position: relative;
    width: 100%;
    height: 100%;
}

.gradient-left {
    background: linear-gradient(135deg, #ffd4c0 0%, #f5d4c8 100%);
    animation: gradientShift 6s ease-in-out infinite;
}

.gradient-right {
    background: linear-gradient(135deg, #b3a298 0%, #a89e82 100%);
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.portrait-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bg-brown), var(--bg-accent));
    transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-title.visible::after {
    width: 100%;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-canvas-container {
    width: 100%;
    height: 400px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-canvas-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

spline-viewer {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    display: block;
}

.about-content {
    background: var(--white);
    padding: 3rem 3.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

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

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--bg-accent);
}

.about-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Work Section - Technical Skills */
.work {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245, 212, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(155, 139, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.work>.section-container {
    position: relative;
    z-index: 1;
}

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

.skill-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.skill-category:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--bg-accent);
}

.skill-category:hover::before {
    left: 100%;
}

.skill-category h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--bg-accent);
    padding-bottom: 0.8rem;
}

.skill-tags {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.skill-tags li {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
}

.skill-tags li:before {
    content: "▸ ";
    color: var(--bg-brown);
    font-weight: bold;
    margin-right: 0.5rem;
}

.skill-tags li:hover {
    color: var(--text-dark);
    margin-left: 0.5rem;
}

/* Projects Section */
.projects {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 30%, rgba(155, 139, 122, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(245, 212, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.projects>.section-container {
    position: relative;
    z-index: 1;
}

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

.project-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 212, 200, 0) 0%, rgba(245, 212, 200, 0.1) 50%, rgba(245, 212, 200, 0) 100%);
    transition: right 0.6s ease;
}

.project-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--bg-accent);
}

.project-card:hover::before {
    right: 100%;
}

.project-header {
    margin-bottom: 1.5rem;
}

.project-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.project-tech {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.tech-tag {
    font-size: 0.75rem;
    background: var(--bg-accent);
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* Testimonials Section - Experience */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--bg-light) 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 60%, rgba(155, 139, 122, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 40%, rgba(245, 212, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials>.section-container {
    position: relative;
    z-index: 1;
}

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

.experience-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.experience-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--bg-brown), var(--bg-accent));
    transition: height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.experience-card:hover {
    transform: translateX(8px) translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--bg-accent);
}

.experience-card:hover::before {
    height: 100%;
}

.experience-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-card .company {
    color: var(--bg-brown);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.experience-card .subtitle {
    color: var(--text-grey);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.experience-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Leadership Section */
.leadership {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 50%, rgba(245, 212, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(155, 139, 122, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.leadership>.section-container {
    position: relative;
    z-index: 1;
}

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

.leadership-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 212, 200, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.leadership-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--bg-accent);
}

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

.leadership-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.leadership-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.work-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--bg-accent);
}

.work-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-brown) 100%);
    opacity: 0.2;
}

.work-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.work-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.work-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.work-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.work-tags span {
    font-size: 0.75rem;
    background: var(--bg-main);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--bg-accent);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-grey);
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.contact-card .section-title {
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--text-dark);
}

.info-separator {
    color: var(--text-grey);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

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

.footer-content p {
    color: var(--text-grey);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-grey);
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        display: none;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-canvas-container,
    spline-viewer {
        height: 300px;
    }

    .about-content {
        padding: 2rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-card {
        padding: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .navbar-card {
        padding: 0.8rem 1.5rem;
    }

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

    .nav-right {
        gap: 1rem;
        margin-left: auto;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-left {
        padding: 2.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .about,
    .work,
    .testimonials,
    .contact,
    .footer {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-canvas-container,
    spline-viewer {
        height: 250px;
    }

    .about-content {
        padding: 2rem;
    }

    .about-intro {
        font-size: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-info {
        flex-wrap: wrap;
    }

    .logo {
        font-size: 0.9rem;
    }

    .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}