/* Layout Styles */

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(12, 11, 25, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-normal);
    /* Force hardware acceleration for Chrome */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: box-shadow;
}

.nav__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.nav__logo {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.nav__link {
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-normal);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    border-radius: 2px;
    display: block;
    position: relative;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-xxxl);
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero__title {
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.hero__subtitle {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
}

.hero__cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero__image {
    text-align: center;
}

.hero__photo {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.about__image {
    text-align: center;
}

.about__photo {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.about__photo--mobile {
    display: none;
}

.about__photo--desktop {
    display: block;
}

.about__bio p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

.about__details {
    margin-top: var(--spacing-lg);
}

.detail-item {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-light);
}

.detail-item strong {
    color: var(--color-text);
    margin-right: var(--spacing-xs);
}

/* Skills Section */
.skills {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.skills .container {
    position: relative;
    z-index: 1;
}

.skills__category {
    margin-bottom: var(--spacing-xxl);
    opacity: 0;
    transform: translateY(30px);
}

.skills__category.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.skills__category:nth-child(1).animate {
    animation-delay: 0.1s;
}

.skills__category:nth-child(2).animate {
    animation-delay: 0.2s;
}

.skills__category:nth-child(3).animate {
    animation-delay: 0.3s;
}

.skills__category:nth-child(4).animate {
    animation-delay: 0.4s;
}

.skills__category:last-child {
    margin-bottom: 0;
}

.skills__category-title {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-bold);
    position: relative;
    display: inline-block;
}

.skills__category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
}

.skills__grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.skill-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1.5px solid rgba(108, 92, 231, 0.4);
    border-radius: 8px;
    color: var(--color-text);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

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

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

.skill-badge.animate {
    animation: skillBadgeFadeIn 0.5s ease-out forwards;
    will-change: transform, opacity;
}

.skill-badge:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15) 0%, rgba(93, 74, 236, 0.15) 100%);
    border-color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3),
                0 0 20px rgba(108, 92, 231, 0.1);
    color: var(--primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes skillBadgeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Projects Section */
.projects {
    background-color: var(--deep-dark);
}

.projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.project-card {
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    border-color: var(--primary);
}

.project-card__image {
    width: 100%;
    height: 200px;
    background-color: var(--dark);
    overflow: hidden;
}

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

/* Adjust specific project images */
/* Cloud Tracker - move image up to show the CloudTracker text */
.project-card[data-category*="flask fullstack python"] .project-card__image img {
    object-position: center top;
}

/* Crypto Stash - center and level the image */
.project-card[data-category*="react flask ai fullstack python"] .project-card__image img {
    object-position: center 45%;
}

.project-card__content {
    padding: var(--spacing-lg);
}

.project-card__title {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.project-card__description {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-small);
}

.project-card__tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.tech-badge {
    padding: 4px 12px;
    background-color: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
}

.project-card__links {
    display: flex;
    gap: var(--spacing-md);
}

.project-link {
    color: var(--primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-small);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.project-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.project-link__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.project-link:hover .project-link__icon {
    transform: scale(1.15);
    opacity: 0.9;
}

.project-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contact Section */
.contact__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 6px;
    background-color: rgba(12, 11, 25, 0.9);
    color: var(--color-text);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.contact__info h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.contact-detail {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.contact-detail strong {
    color: var(--color-text);
    margin-right: var(--spacing-xs);
}

.contact__social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    color: var(--primary);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social-link__icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link:hover .social-link__icon {
    transform: scale(1.15);
    opacity: 0.9;
}

.social-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* MacBook Pro 14 inch specific fix */
@media (min-width: 1512px) and (max-width: 1520px) {
    .social-link__icon {
        width: 40px;
        height: 40px;
    }
    
    .project-link__icon {
        width: 30px;
        height: 30px;
    }
}

.contact__nav {
    display: none;
}

/* Footer */
.footer {
    background-color: var(--deep-dark);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: var(--spacing-md) 0;
    }
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.footer__nav a {
    color: var(--color-text-light);
    transition: color var(--transition-normal);
}

.footer__nav a:hover {
    color: var(--primary);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.social-icon {
    color: var(--primary);
    font-weight: var(--font-weight-medium);
}

.social-icon:hover {
    color: var(--primary-dark);
}

.footer__copyright {
    text-align: center;
    color: var(--color-text-light);
    font-size: var(--font-size-small);
    margin: 0;
}

/* Responsive Design */

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Container adjustments for tablet */
    .container {
        padding: 0 var(--spacing-lg);
    }

    /* Section spacing for tablet */
    section {
        padding: var(--spacing-xxl) 0;
    }

    /* Navigation - Keep horizontal menu */
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        padding: 0;
        flex-direction: row;
    }

    .nav__link {
        display: inline-block;
        padding: var(--spacing-xs) var(--spacing-sm);
        border-bottom: none;
    }

    .nav__link.active::after {
        display: block;
    }

    /* Hero Section - Side by side with adjusted sizing */
    .hero {
        padding-top: 100px;
        padding-bottom: var(--spacing-xxl);
    }

    .hero__content {
        gap: var(--spacing-lg);
    }

    .hero__title {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero__photo {
        max-width: 320px;
    }

    /* About Section */
    .about__content {
        gap: var(--spacing-lg);
    }

    .about__photo {
        max-width: 280px;
    }

    .about__bio p {
        font-size: 16px;
        line-height: 1.7;
    }

    /* Projects - 2 columns */
    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .project-card__image {
        height: 200px;
    }

    /* Cloud Tracker - show top portion (cloud icon) on tablet */
    .project-card[data-category*="flask fullstack python"] .project-card__image {
        overflow: hidden;
    }

    .project-card[data-category*="flask fullstack python"] .project-card__image img {
        object-position: center top;
        transform: translateY(0%);
    }

    /* Typography adjustments */
    .section__title {
        font-size: 32px;
        margin-bottom: var(--spacing-xl);
    }

    .project-card__title {
        font-size: 22px;
    }

    .project-card__description {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Skills */
    .skills__category {
        margin-bottom: var(--spacing-xl);
    }

    .skills__category-title {
        font-size: 22px;
        margin-bottom: var(--spacing-md);
    }

    .skills__category-title::after {
        width: 55px;
    }

    .skills__grid {
        gap: var(--spacing-sm);
    }

    .skill-badge {
        padding: 11px 20px;
        font-size: 15px;
    }

    /* Contact Section */
    .contact__content {
        max-width: 650px;
    }

    .contact__info {
        margin-top: var(--spacing-xl);
        gap: var(--spacing-md);
    }

    .contact__social {
        gap: var(--spacing-lg);
    }

    .contact__nav {
        display: none;
    }
}

/* Tablet and below (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero__content {
        gap: var(--spacing-lg);
    }

    .about__content {
        gap: var(--spacing-lg);
    }

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

@media (max-width: 768px) {
    /* Navigation */
    .nav__wrapper {
        padding: var(--spacing-sm) 0;
    }

    .nav__logo {
        font-size: 18px;
    }

    .nav__menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(12, 11, 25, 0.98);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        transition: left var(--transition-normal);
        backdrop-filter: blur(10px);
        gap: 0;
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__menu li {
        width: 100%;
    }

    .nav__link {
        display: block;
        padding: var(--spacing-md);
        font-size: 18px;
        text-align: center;
        border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    }

    .nav__link.active::after {
        display: none;
    }

    .nav__toggle {
        display: flex;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

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

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

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Ensure hamburger lines are visible and reset when menu is closed */
    .nav__toggle:not(.active) span {
        opacity: 1;
        transform: none;
        width: 25px;
    }

    /* Hero Section */
    .hero {
        padding-top: 80px;
        padding-bottom: var(--spacing-xxl);
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero__text {
        order: 1;
    }

    .hero__image {
        order: 2;
        display: none;
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }

    .hero__subtitle {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: var(--spacing-lg);
    }

    .hero__cta {
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .hero__photo {
        max-width: 260px;
    }

    /* About Section */
    .about__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }

    .about__photo {
        max-width: 220px;
    }

    .about__photo--mobile {
        display: block;
    }

    .about__photo--desktop {
        display: none;
    }

    .about__bio {
        text-align: left;
    }

    .about__bio p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: var(--spacing-md);
    }

    .about__details {
        margin-top: var(--spacing-md);
        text-align: left;
    }

    .detail-item {
        font-size: 15px;
        margin-bottom: var(--spacing-xs);
    }

    /* Skills Section */
    .skills__category {
        margin-bottom: var(--spacing-xl);
    }

    .skills__category-title {
        font-size: 20px;
        margin-bottom: var(--spacing-md);
    }

    .skills__category-title::after {
        width: 50px;
        height: 2px;
    }

    .skills__grid {
        gap: var(--spacing-xs);
        justify-content: center;
    }

    .skill-badge {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* About Section - Mobile refinements */
    .about__details {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    /* Projects Section */
    .projects__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .project-card__content {
        padding: var(--spacing-md);
    }

    .project-card__title {
        font-size: 20px;
    }

    .project-card__description {
        font-size: 14px;
        line-height: 1.6;
    }

    .project-card__image {
        height: 180px;
    }

    /* Cloud Tracker - show top portion (cloud icon) on mobile */
    .project-card[data-category*="flask fullstack python"] .project-card__image {
        overflow: hidden;
    }

    .project-card[data-category*="flask fullstack python"] .project-card__image img {
        object-position: center top;
        transform: translateY(0%);
    }

    /* Contact Section */
    .contact__content {
        max-width: 100%;
        padding: 0;
    }

    .contact__form {
        gap: var(--spacing-sm);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact__info {
        margin-top: var(--spacing-lg);
        width: 100%;
        gap: var(--spacing-md);
    }

    .contact__social {
        display: none;
    }

    .social-link {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 16px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .contact__nav {
        display: none;
    }

    /* Footer */
    .footer__nav {
        display: none;
    }

    .footer__social {
        display: none;
    }

    /* Section Titles */
    .section__title {
        font-size: 28px;
        margin-bottom: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .nav__logo {
        font-size: 16px;
    }

    .nav__toggle {
        min-width: 40px;
        min-height: 40px;
        padding: 8px;
    }

    .nav__toggle span {
        width: 22px;
        height: 2.5px;
    }

    /* Hero Section */
    .hero {
        padding-top: 70px;
        padding-bottom: var(--spacing-xl);
    }

    .hero__title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 15px;
        line-height: 1.6;
    }

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

    .hero__cta .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
    }

    .hero__photo {
        max-width: 220px;
    }

    /* About Section */
    .about__photo {
        max-width: 200px;
    }

    .about__bio p {
        font-size: 14px;
        line-height: 1.7;
    }

    .detail-item {
        font-size: 14px;
    }

    /* Skills Section */
    .skills__category {
        margin-bottom: var(--spacing-lg);
    }

    .skills__category-title {
        font-size: 18px;
        margin-bottom: var(--spacing-md);
    }

    .skills__category-title::after {
        width: 40px;
        height: 2px;
    }

    .skills__grid {
        gap: var(--spacing-xs);
        justify-content: center;
    }

    .skill-badge {
        padding: 9px 16px;
        font-size: 13px;
    }

    /* Projects Section */
    .project-card__content {
        padding: var(--spacing-sm);
    }

    .project-card__title {
        font-size: 18px;
    }

    .project-card__description {
        font-size: 13px;
        line-height: 1.6;
    }

    .project-card__image {
        height: 160px;
    }

    /* Cloud Tracker - show top portion (cloud icon) on small mobile */
    .project-card[data-category*="flask fullstack python"] .project-card__image {
        overflow: hidden;
    }

    .project-card[data-category*="flask fullstack python"] .project-card__image img {
        object-position: center top;
        transform: translateY(0%);
    }

    .tech-badge {
        padding: 3px 10px;
        font-size: 11px;
    }

    /* Contact Section */
    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact__form .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px;
    }

    .contact__info {
        gap: var(--spacing-sm);
    }

    .contact__social {
        display: none;
    }

    .contact__nav {
        display: none;
    }

    /* About Section - Small mobile refinements */
    .about__details {
        gap: var(--spacing-xs);
    }

    /* Section Titles */
    .section__title {
        font-size: 24px;
        margin-bottom: var(--spacing-lg);
        line-height: 1.3;
    }

    /* Hero CTA - Better spacing on small screens */
    .hero__cta .btn {
        margin-bottom: 0;
    }

    /* Footer */
    .footer__nav {
        display: none;
    }

    .footer__social {
        display: none;
    }
}

