/* Modern Portfolio Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 50%, #f5f5f5 100%);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Elements */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

/* Decorative dots pattern */
.shape-1 {
    top: 15%;
    left: 8%;
    width: 8px;
    height: 8px;
    background: #4a4a4a;
    border-radius: 50%;
    animation-delay: 0s;
    box-shadow: 
        20px 0 0 #4a4a4a,
        40px 0 0 #4a4a4a,
        60px 0 0 #4a4a4a,
        0 20px 0 #4a4a4a,
        20px 20px 0 #4a4a4a,
        40px 20px 0 #4a4a4a,
        60px 20px 0 #4a4a4a,
        0 40px 0 #4a4a4a,
        20px 40px 0 #4a4a4a,
        40px 40px 0 #4a4a4a,
        60px 40px 0 #4a4a4a;
    animation-duration: 8s;
}

.shape-2 {
    top: 65%;
    right: 12%;
    width: 120px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 80px 80px 80px 20px;
    animation-delay: 2s;
    animation-duration: 10s;
    transform: rotate(25deg);
}

/* Organic leaf shape */
.shape-3 {
    bottom: 25%;
    left: 15%;
    width: 60px;
    height: 100px;
    background: radial-gradient(ellipse at center, #f0f0f0 0%, #4a4a4a 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation-delay: 4s;
    animation-duration: 7s;
    transform: rotate(-15deg);
}

/* Abstract curved shape */
.shape-4 {
    top: 35%;
    right: 35%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, transparent 30%, #e0e0e0 31%, #e0e0e0 69%, transparent 70%);
    border-radius: 50%;
    animation-delay: 1s;
    animation-duration: 12s;
}

/* Small decorative elements */
.shape-5 {
    bottom: 15%;
    right: 25%;
    width: 4px;
    height: 4px;
    background: #4a4a4a;
    border-radius: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
    box-shadow: 
        15px 10px 0 #4a4a4a,
        30px 5px 0 #4a4a4a,
        45px 15px 0 #4a4a4a,
        -10px 20px 0 #4a4a4a,
        -25px 10px 0 #4a4a4a;
}

/* Floating particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatUp 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 15s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 11s;
}

/* Moving grid lines */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(184, 160, 130, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    animation: moveGrid 25s linear infinite;
}

/* Keyframes for animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 247, 244, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 160, 130, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    background: #4a4a4a;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    color: #5d4e37;
}

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

.nav-menu a {
    color: #5d4e37;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4a4a4a;
}

.cta-button {
    background: #4a4a4a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #a08b73;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Decorative corner elements */
.hero::before {
    content: '';
    position: absolute;
    top: 100px;
    right: 50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 4px 4px, #e0e0e0 2px, transparent 2px);
    background-size: 25px 25px;
    opacity: 0.3;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 30px;
    width: 150px;
    height: 80px;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 196, 168, 0.2) 31%, rgba(212, 196, 168, 0.2) 69%, transparent 70%);
    border-radius: 50px;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    color: #5a5a5a;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    color: #4a4a4a;
}

.hero-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    background: #4a4a4a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #a08b73;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(139, 115, 85, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4a4a4a;
    color: white;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #4a4a4a;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.decorative-elements {
    position: absolute;
    inset: 0;
}

.circle {
    position: absolute;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: -20px;
    right: -20px;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 50px;
    left: -30px;
    background: rgba(255, 105, 180, 0.2);
}

.lines {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 200px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 105, 180, 0.1) 50%, transparent 100%);
    background-size: 20px 20px;
    background-image: repeating-linear-gradient(0deg, rgba(255, 105, 180, 0.2) 0px, rgba(255, 105, 180, 0.2) 2px, transparent 2px, transparent 20px);
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #5d4e37;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.05);
}

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

.about-content p {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-icon {
    width: 80px;
    height: 80px;
    background: #4a4a4a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #5d4e37;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #5d4e37;
}

.project-card p {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(255, 105, 180, 0.2);
    color: #4a4a4a;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Skills Section */
.skills {
    background: rgba(255, 255, 255, 0.05);
}

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

.skill-item {
    text-align: center;
    padding: 2rem;
}

.skill-item i {
    font-size: 3rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.skill-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #5d4e37;
}

.skill-item p {
    color: #5a5a5a;
}

/* Contact Section */
.contact-description {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #5d4e37;
}

/* Success Message Banner */
.success-banner {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.success-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.success-content i {
    font-size: 1.2rem;
}

.close-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.close-btn:hover {
    opacity: 0.8;
}

/* Hamburger Menu - Mobile Navigation */
.hamburger {
    display: none; /* Hidden by default, shown only on mobile */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    position: relative;
    background: transparent;
    border: none;
    pointer-events: auto;
}

.hamburger:hover {
    background-color: rgba(184, 160, 130, 0.1);
    border-radius: 8px;
}

.hamburger:active {
    background-color: rgba(184, 160, 130, 0.2);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #4a4a4a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    pointer-events: none; /* Prevent clicks on lines from interfering */
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(248, 247, 244, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu li a {
        font-size: 1.2rem;
        font-weight: 500;
    }

    .cta-button {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 300px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

/* Additional Page Styles */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #5d4e37;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #5a5a5a;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #5d4e37;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #4a4a4a;
}

.about-text p {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.drive-list {
    list-style: none;
    margin-top: 1rem;
}

.drive-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #5a5a5a;
}

.drive-list i {
    color: #4a4a4a;
    width: 20px;
}

.project-highlights {
    list-style: none;
    margin: 1rem 0;
}

.project-highlights li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    color: #5a5a5a;
}

.project-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a4a4a;
    font-weight: bold;
}

.project-highlights strong {
    color: #5d4e37;
}

.about-photo {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #5a5a5a;
    font-size: 0.9rem;
}

/* Education Timeline */
.education {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #4a4a4a;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #4a4a4a;
}

.timeline-content h3 {
    color: #5d4e37;
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: #4a4a4a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #5a5a5a;
    line-height: 1.6;
}

/* Projects Page Styles */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #5a5a5a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #4a4a4a;
    color: #5d4e37;
}

.projects-grid-detailed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.project-card-detailed {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.project-card-detailed:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-link,
.project-code {
    width: 50px;
    height: 50px;
    background: #4a4a4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5d4e37;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.project-link:hover,
.project-code:hover {
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: #5d4e37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-content > p {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-features h4 {
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.project-features ul {
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.project-features li {
    margin-bottom: 0.25rem;
}

/* Future Projects */
.future-projects {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

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

.future-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.future-card:hover {
    transform: translateY(-5px);
}

.future-card i {
    font-size: 3rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.future-card h3 {
    color: #5d4e37;
    margin-bottom: 1rem;
}

.future-card p {
    color: #5a5a5a;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    color: #5d4e37;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: #5a5a5a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-method i {
    font-size: 1.5rem;
    color: #4a4a4a;
    width: 30px;
}

.contact-method h3 {
    color: #5d4e37;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #4a4a4a;
    text-decoration: none;
}

.contact-method a:hover {
    color: #5d4e37;
}

.availability h3 {
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.availability p {
    color: #5a5a5a;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
}

.contact-form h2 {
    color: #5d4e37;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #5d4e37;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #5d4e37;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a4a4a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a5a5a;
}

.error-message {
    color: #6f6768;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #5a5a5a;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    background: #4a4a4a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    background: #a08b73;
    transform: translateY(-2px);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-status.success {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    display: block;
}

.form-status.error {
    background: rgba(231, 76, 60, 0.2);
    color: #f1e1df;
    display: block;
}

/* Map Section */
.map-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
    text-align: center;
}

.location-info p {
    color: #5a5a5a;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer p {
    color: #5a5a5a;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #4a4a4a;
}

/* Additional Responsive Design */
@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-card-detailed {
        grid-template-columns: 1fr;
    }
    
    .project-image img {
        height: 200px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
