/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3B6255;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3B6255;
}

.nav-menu a.active {
    color: #3B6255;
    font-weight: 700;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #8BA49A 0%, #3B6255 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #D2C49E;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #3B6255;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3B6255;
}

/* Featured projects */
.featured-projects {
    padding: 100px 0;
    background: #CBDED3;
}

.featured-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.project-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tech-tag {
    background: #E2DFDA;
    color: #3B6255;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.project-link {
    color: #3B6255;
    text-decoration: none;
    font-weight: 600;
}

.project-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #3B6255;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Content Hub Preview */
.content-hub-preview {
    padding: 80px 0;
    background: #E2DFDA;
    text-align: center;
}

.content-hub-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.rotating-cards {
    position: relative;
    height: 400px;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    gap: 1.5rem;
}

.card-thumbnail {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.card-content {
    flex: 1;
    padding: 1.5rem 1.5rem 1.5rem 0;
    border-left: 4px solid #3B6255;
    padding-left: 1rem;
}

.card.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-category {
    background: #3B6255;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-date {
    color: #64748b;
    font-size: 0.875rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #3B6255;
    text-decoration: none;
    font-weight: 600;
}

.card-link:hover {
    text-decoration: underline;
}

.card-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8BA49A;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #3B6255;
}

/* Photo Gallery */
.photo-gallery {
    padding: 80px 0;
    background: #f8fafc;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.photo-placeholder {
    background: #E2DFDA;
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B6255;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.photo-placeholder:hover {
    transform: translateY(-5px);
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* LinkedIn Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 3px solid #3B6255;
}

.close {
    color: #3B6255;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #2d4a3e;
}

.modal-content h2 {
    color: #3B6255;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.modal-content p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.modal-buttons .btn {
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-buttons .btn-primary {
    background: #3B6255;
    color: white !important;
    border: none;
}

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



/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #3B6255;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Responsive design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    /* Hero sections mobile */
    .hero h1, .projects-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }
    
    .hero-content-centered {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-subtitle, .projects-subtitle, .about-subtitle, .contact-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Projects page mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
        justify-content: center;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        flex: 1;
        min-width: 0;
    }
    
    .project-card-detailed {
        margin: 0 1rem;
    }
    
    .project-info {
        padding: 1.5rem;
    }
    
    .project-info h3 {
        font-size: 1.5rem;
    }
    
    .project-tech {
        gap: 0.25rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* About page mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .skills-list li {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .work-item h4 {
        font-size: 1.2rem;
    }
    
    .personality-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .personality-item {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-image img {
        max-width: 250px;
    }
    
    /* Contact page mobile */
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .availability-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .status-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-cta {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    /* Content Hub mobile */
    .photo-gallery h2, .content-hub-preview h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .photo-placeholder {
        height: 150px;
    }
    
    .card {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    .rotating-cards {
        height: 500px;
    }
    
    .card-thumbnail {
        width: 100%;
        height: 200px;
        margin: 0;
        border-radius: 15px 15px 0 0;
    }
    
    .card-content {
        padding: 1.5rem;
        border-left: none;
        border-top: 4px solid #3B6255;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    /* General mobile improvements */
    .container {
        padding: 0 1rem;
    }
    
    main {
        margin-top: 70px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Touch-friendly interactions */
    .btn, .contact-action-btn, .filter-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .contact-card:hover {
            transform: none;
            border-color: transparent;
            box-shadow: 0 8px 25px rgba(59, 98, 85, 0.1);
        }
        
        .project-card:hover {
            transform: none;
        }
        
        .photo-placeholder:hover {
            transform: none;
        }
    }
}
.personality-item:nth-child(1),
.personality-item:nth-child(2) {
    grid-column: 1 / -1;
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero h1, .projects-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle, .projects-subtitle, .about-subtitle, .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-intro h2 {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 1rem;
        margin: 0;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .contact-action-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
    
    .rotating-cards {
        height: 450px;
    }
    
    .availability-banner {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
}

/* Projects Page Styles */
.projects-hero {
    background: linear-gradient(135deg, #8BA49A 0%, #3B6255 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.projects-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.projects-content {
    padding: 80px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #3B6255;
    border: 2px solid #3B6255;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3B6255;
    color: white;
}

.project-card-detailed {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card-detailed.hidden {
    display: none;
}

.projects-grid {
    display: grid;
    gap: 3rem;
}

.project-image {
    height: 200px;
    overflow: hidden;
}

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

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.project-description {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.project-details h4 {
    color: #1e293b;
    margin: 1.5rem 0 0.5rem;
    font-size: 1rem;
}

.project-details p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.project-links .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 2rem;
    }
    
    .project-links {
        flex-direction: column;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #8BA49A 0%, #3B6255 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.about-text h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.skills-list {
    list-style: none;
    padding-left: 0;
}

.skills-list li {
    padding: 1rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.skills-list li:before {
    content: "→";
    color: #3B6255;
    position: absolute;
    left: 0;
}

.work-history {
    margin-top: 1rem;
}

.work-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.work-item:last-child {
    border-bottom: none;
}

.work-item h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.work-company {
    color: #3B6255;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.work-dates {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.work-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.key-achievements {
    margin-top: 1rem;
}

.key-achievements h5 {
    color: #3B6255;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.key-achievements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.key-achievements li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.linkedin-button-container {
    margin-top: 2rem;
    text-align: center;
}

.linkedin-button-container .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.personality-section {
    margin-bottom: 2rem;
}

.personality-section h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.personality-item {
    background: #E2DFDA;
    color: #3B6255;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.personality-item:hover {
    background: #3B6255;
    color: white;
    transform: translateY(-2px);
}

.profile-image {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tech-stack h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.tech-item {
    background: #E2DFDA;
    color: #3B6255;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #8BA49A 0%, #3B6255 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #3B6255, #8BA49A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(59, 98, 85, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 164, 154, 0.1), transparent);
    transition: left 0.6s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    border-color: #8BA49A;
    box-shadow: 0 15px 35px rgba(59, 98, 85, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-action-btn {
    background: linear-gradient(135deg, #3B6255, #8BA49A);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.contact-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 98, 85, 0.3);
    color: white;
    text-decoration: none;
}

.email-reveal {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 2px dashed #8BA49A;
}

.revealed-email {
    font-family: monospace;
    font-size: 1.1rem;
    color: #3B6255;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.copy-btn {
    background: #8BA49A;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.copy-btn:hover {
    background: #3B6255;
}

.location-note {
    background: #E2DFDA;
    color: #3B6255;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

.availability-banner {
    background: linear-gradient(135deg, #dcfce7, #f0fdf4);
    border: 2px solid #22c55e;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.availability-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.status-indicator {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-text h3 {
    color: #166534;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.status-text p {
    color: #15803d;
    margin: 0;
}

.contact-cta {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: #CBDED3;
    border-radius: 20px;
}

.contact-cta h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-intro h2 {
        font-size: 2rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .availability-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
}