:root {
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --navy: #1a1a2e;
    --dark-gray: #2d2d44;
    --medium-gray: #6b6b7b;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 0.8s var(--transition-smooth) forwards;
}
@keyframes pageLoad { to { opacity: 1; } }
::selection { background-color: var(--gold); color: var(--white); }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
    background: transparent;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 5%;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}
.logo:hover::after { width: 100%; }
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--navy);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid var(--navy);
}
.nav-cta:hover {
    background: transparent;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--navy);
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}
.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-content { z-index: 2; }
.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.2s forwards;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--navy);
}
.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--transition-smooth) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-role {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.5s forwards;
}
.hero-tagline {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.6s forwards;
}
.hero-tagline span {
    color: var(--gold);
    font-weight: 500;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.7s forwards;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s var(--transition-smooth);
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s var(--transition-smooth);
    border: 2px solid var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.8s forwards;
}
.stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-image {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 1s var(--transition-smooth) 0.5s forwards;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    animation: fadeIn 1s var(--transition-smooth) 1s forwards;
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}
.hero-image:hover img { filter: grayscale(0%); }
.availability-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 1.2s forwards;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.availability-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

section {
    padding: 6rem 5%;
    position: relative;
}
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}
.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth) 0.1s;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth) 0.2s;
}
.section-header.revealed .section-label,
.section-header.revealed .section-title,
.section-header.revealed .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.about { background: var(--light-gray); }
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}
.about-content.revealed {
    opacity: 1;
    transform: translateY(0);
}
.about-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.about-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s var(--transition-smooth);
}
.highlight-item.revealed {
    opacity: 1;
    transform: translateX(0);
}
.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s var(--transition-smooth) 0.2s;
}
.about-image.revealed {
    opacity: 1;
    transform: translateX(0);
}
.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth) 0.4s;
}
.about-image.revealed .experience-card {
    opacity: 1;
    transform: translateY(0);
}
.exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}
.exp-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}
.service-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: transform 0.4s var(--transition-smooth);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}
.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.service-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.experience { background: var(--light-gray); }
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    transform: translateX(-50%);
    transform-origin: top;
    transform: translateX(-50%) scaleY(0);
    transition: transform 1.5s var(--transition-smooth);
}
.timeline.revealed .timeline-line {
    transform: translateX(-50%) scaleY(1);
}
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}
.timeline-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
.timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
}
.timeline-item:nth-child(even) .timeline-date {
    grid-column: 1;
    text-align: right;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
    z-index: 2;
}
.timeline-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
}
.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-smooth);
}
.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-5px);
}
.timeline-role {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.timeline-company {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}
.timeline-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
}
.timeline-achievements {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.achievement {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.achievement::before {
    content: '→';
    color: var(--gold);
    font-weight: 600;
}

.skills-container {
    max-width: 1000px;
    margin: 0 auto;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.skill-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--transition-smooth);
}
.skill-category.revealed {
    opacity: 1;
    transform: translateY(0);
}
.skill-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.skill-category-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.skill-item {
    margin-bottom: 1.5rem;
}
.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.skill-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
}
.skill-percent {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 600;
}
.skill-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
}
.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s var(--transition-smooth);
}

.projects { background: var(--light-gray); }
.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.project-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}
.project-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.project-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.project-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.project-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy);
}
.project-body {
    padding: 1.5rem 2rem;
}
.project-problem, .project-solution, .project-result {
    margin-bottom: 1.25rem;
}
.project-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.project-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.7;
}
.project-result .project-text {
    color: var(--gold);
    font-weight: 500;
}
.project-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.project-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 20px;
    font-weight: 500;
}

.why-choose-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.why-card {
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}
.why-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.why-card:hover {
    background: var(--light-gray);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.why-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1rem;
}
.why-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.why-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.testimonials {
    background: var(--navy);
    color: var(--white);
}
.testimonials .section-title {
    color: var(--white);
}
.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.testimonial-card {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}
.testimonial-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}
.testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.testimonial-role {
    font-size: 0.9rem;
    color: var(--gold);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s var(--transition-smooth);
}
.contact-info.revealed {
    opacity: 1;
    transform: translateX(0);
}
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.contact-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.4s var(--transition-smooth);
}
.contact-item:hover .contact-icon {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}
.contact-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
}
.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
}
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s var(--transition-smooth) 0.2s;
}
.contact-form-wrapper.revealed {
    opacity: 1;
    transform: translateX(0);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white);
}
.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
textarea.form-input {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-submit:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 5%;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s var(--transition-smooth);
}
.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 999;
    border: none;
    font-size: 1.2rem;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-image {
        order: -1;
    }
    .hero-image-wrapper {
        margin: 0 auto;
        max-width: 350px;
    }
    .availability-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-stats {
        justify-content: center;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-date {
        grid-column: 1;
        text-align: left;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .projects-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(212, 175, 55, 0.1);
}
@media (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
}