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

html {
    overflow-x: hidden;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #F4F4F4;
    color: #333;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}




.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 35px;
}

.main-container {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 20px;
    
}

/* Hero Section */
.hero-section {
    background: #f4f4f4;
    padding: 50px 35px 120px 35px;
    position: relative;
    z-index: 999;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
}

.hero-content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 8rem;
    font-weight: 300;
    color: #212121;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.02em;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-description {
    font-size: 1.125rem;
    color: #333;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    text-align: justify;
}

.hero-intro {
    font-weight: 400;
    font-size: 1.35rem;
}

.hero-body {
    color: #787878;
    font-weight: 300;
    text-align: justify;
    text-align-last: justify;
    hyphens: auto;
    display: block;
}

/* Header */
.header {
    background: #F6F6F6;
    z-index: 1000;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #DEDEDE 0px,
        #DEDEDE 6px,
        transparent 6px,
        transparent 12px
    );
}

.header-logo-link {
    display: block;
    line-height: 0;
}

.header-logo {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #F6F6F6;
    padding-bottom: 20px;
    z-index: 1000;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        #DEDEDE 0px,
        #DEDEDE 6px,
        transparent 6px,
        transparent 12px
    );
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 35px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: #787878;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0px;
}

/* Filter Section */
.filter-section {
    padding-top: 35px;
}

.filter-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-text {
    font-size: 0.875rem;
    color: #787878;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.filter-chips-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-separator {
    width: 1px;
    height: 20px;
    background: #DEDEDE;
    margin: 0 4px;
}

.autoplay-toggle.active {
    background: #212121;
    color: #ffffff;
}

.toggle-switch {
    width: 32px;
    height: 18px;
    background: #DEDEDE;
    border-radius: 9px;
    position: relative;
    transition: background 0.3s ease;
}

.autoplay-toggle.active .toggle-switch {
    background: #ffffff;
}

.toggle-slider {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
}

.autoplay-toggle.active .toggle-slider {
    transform: translateX(14px);
    background: #212121;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 500px;
    border: none;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 400;
}

.filter-chip:hover {
    transform: scale(1.05);
}

.filter-chip.active {
    background: #212121;
    color: #ffffff;
    border-color: #212121;
}

.filter-chip.active .filter-chip-icon {
    filter: brightness(0) invert(1);
    opacity: 1;
}

.filter-chip-icon {
    width: 14px;
    height: 14px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s ease, filter 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.right-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0px;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: 25px;
}

.social-link {
    color: rgba(33,33,33,0.6);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #212121;
}

.social-link ion-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: block;
    transition: color 0.3s ease;
}

.social-link:hover ion-icon {
    color: #212121;
}

.social-icon-img {
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%);
}

.social-link:hover .social-icon-img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(13%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%);
}

.logo-about-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
    
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #787878;
    margin: 0;
    line-height: 1.2;
}

.logo-title {
    font-size: 2rem;
    font-weight: 400;
    color: #212121;
    margin: 0;
    line-height: 1.2;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    height: 100%;
    align-items: stretch;
}

.pricing-card {
    background: #F4F4F4;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    width: 100%;
    cursor: pointer;
    height: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

.pricing-card:hover {
    transform: scale(1.2);
}

.pricing-card.monthly {
    background: #F4F4F4;
    color: #333;
}


.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 10px;
}

.card-label {
    font-size: 12px;
    opacity: 0.8;
    justify-content: flex-start;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card-price {
    font-size: 32px;
    font-weight: 300;
}

.card-frequency {
    font-size: 11px;
    opacity: 0.7;
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

.card-action {
    background: rgba(33,33,33,0.9);
    color: #ffffff;
    padding: 8px;
    border-radius: 50%;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-action ion-icon {
    transform: rotate(-45deg);
}

.card-action:hover {
    background: white;
    transform: scale(1.05);
}

.resume-btn {
    background: white;
    border: 1px solid #DEDEDE;
    color: #212121;
    padding: 8px 12px;
    border-radius: 25px;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.resume-btn:hover {
    transform: scale(1.05);
}

.lets-talk-btn {
    background: #212121;
    margin-left: 8px;
    color: white;
    padding: 8px 12px;
    border-radius: 25px;
    border: none;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lets-talk-btn:hover {
    background: #212121;
    color: white;
    transform: scale(1.05);
}

.whatsapp-btn {
    background: white;
    border: 1px solid #DEDEDE;
    color: #212121;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 0;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn-icon {
    width: 18px;
    height: 18px;
    display: block;
}

/* About Section */
.about-section {
    margin: 40px 0;
}

.about-toggle {
    background: #F4F4F4;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: left;
    
}

.about-toggle:hover {
    background: #212121;
    color: #ffffff;
}

.about-toggle:hover .plus-icon {
    background: #ffffff;
    color: #212121;
}

.plus-icon {
    width: 24px;
    height: 24px;
    background: #212121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.plus-icon.open {
    transform: rotate(45deg);
}

.about-content {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: padding 0.3s ease;
    display: none;
}

.about-content.open {
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
}

.about-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
}

.about-card {
    background: #F4F4F4;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 200px;
    transition: transform 0.3s ease;
}


.about-card h3 {
    font-size: 24px;
    font-weight: 200;
    margin: 0 0 10px 0;
    color: #333;
}

.about-card p {
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.4;
}

.about-description {
    padding: 20px 0;
    font-size: 16px;
    color: #666;
}

.team-section, .partners-section {
    margin: 30px 0;
}

.section-title {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 15px;
}

.team-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.team-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.team-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.partners-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo {
    padding: 10px 15px;
    background: #f0f0f0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: #4ecdc4;
    color: white;
    transform: translateY(-2px);
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.project-card {
    background: #F6F6F6;
    border: 1px solid #DEDEDE;
    border-radius: 20px;
    padding: 20px;
    box-shadow: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #212121;
    font-size: 14;
}

.project-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.project-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #F4F4F4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.project-image img,
.project-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-image img.loaded,
.project-image video.loaded {
    opacity: 1;
}

.project-thumbnail {
    opacity: 1 !important;
    z-index: 1;
}

.project-image video {
    z-index: 2;
}

/* Skeleton Loading */
.skeleton-card {
    background: #F6F6F6;
    border: 1px solid #DEDEDE;
    border-radius: 20px;
    padding: 20px;
    cursor: default;
    pointer-events: none;
}

.skeleton-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.skeleton-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #E0E0E0;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-title {
    height: 16px;
    width: 60%;
    border-radius: 4px;
    background: #E0E0E0;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #E0E0E0;
    border-radius: 15px;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton-icon,
.skeleton-title,
.skeleton-image {
    background: linear-gradient(
        90deg,
        #E0E0E0 0%,
        #F0F0F0 50%,
        #E0E0E0 100%
    );
    background-size: 1000px 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}


/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33,33,33,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.modal.open {
    display: flex;
}

.modal-content {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalAppear 0.3s ease;
    margin: 0;
    padding: 40px;
    overflow: hidden;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-container {
    width: 100%;
    max-width: 90vw;
    max-height: 90vh;
    background: #F6F6F6;
    
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    padding-bottom: 40px;


    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.modal-media-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-media-container img,
.modal-media-container video {
    width: 100%;
    height: auto;
    max-width: 70vw;
    max-height: 60vh;
    display: block;
    object-fit: contain;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    text-align: left;
    margin: 0;
}

.modal-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.modal-chip {
    padding: 4px 10px;
    border: 1px solid #dedede;
    border-radius: 500px;
    font-size: 0.875rem;
    color: #333;
    background: #F4F4F4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.modal-chip-icon {
    width: 14px;
    height: 14px;
}

.modal-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.modal-button {
    padding: 8px 16px;
    background: #212121;
    color: #ffffff;
    border-radius: 500px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.modal-button:hover {
    background: #333;
}



/* Mobile Responsive */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    
    .header-container {
        padding: 20px 25px;
    }
    
    .footer-container {
        padding: 20px 25px;
    }
    
    .main-container {
        padding: 20px 25px;
    }
    
    .filter-container {
        padding: 0 25px;
    }
    
    .header-top {
        gap: 20px;
    }
    
    .pricing-cards {
        gap: 15px;
        width: 100%;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    
    .header-container {
        padding: 20px 20px;
    }
    
    .footer-container {
        padding: 20px 20px;
    }
    
    .main-container {
        padding: 20px 20px;
    }
    
    .filter-container {
        padding: 0 20px;
        justify-content: center;
    }
    
    .header-top {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-content-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 5rem;
        text-align: center;
    }
    
    .hero-right {
        align-items: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .header-content {
        justify-content: center;
    }
    
    .left-section {
        justify-content: center;
        width: 100%;
    }
    
    .right-section {
        width: 100%;
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-about-container {
        gap: 30px;
        width: 100%;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .header-container {
        padding: 15px 15px;
    }
    
    .footer-container {
        padding: 15px 15px;
    }
    
    .main-container {
        padding: 15px 15px;
    }
    
    .filter-section {
        padding: 15px 0;
    }
    
    .filter-container {
        padding: 0 15px;
        justify-content: center;
    }
    
    .hero-section {
        padding: 50px 15px;
    }
    
    .hero-content-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 4rem;
        text-align: center;
    }
    
    .hero-right {
        align-items: center;
    }
    
    .hero-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .filter-text {
        display: none;
    }
    
    .filter-separator {
        display: none;
    }
    
    .filter-chips {
        gap: 8px;
    }
    
    .filter-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .filter-chip-icon {
        width: 12px;
        height: 12px;
    }
    
    .header {
        padding-bottom: 20px;
    }
    
    main {
        margin-top: 20px;
    }
    
    .header-content {
        justify-content: center;
    }
    
    .left-section {
        justify-content: center;
        width: 100%;
    }
    
    .logo-text {
        text-align: center;
        width: 100%;
    }
    
    .right-section {
        justify-content: center;
    }
    
    .header-buttons {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    .project-card {
        padding: 10px;
        border-radius: 12px;
    }
    
    .project-image {
        border-radius: 10px;
    }
    
    .modal-container {
        border-radius: 20px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
        padding-bottom: 20px;
    }
    
    .modal-media-container {
        border-radius: 15px;
    }
    
    .modal-media-container img,
    .modal-media-container video {
        max-width: 85vw;
        max-height: 70vh;
    }
    
    .modal-content {
        padding: 0;
    }
    
    .modal-header {
        align-items: center;
    }
    
    .header-top {
        gap: 15px;
    }
    
    .logo-about-container {
        gap: 30px;
        width: 100%;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 55px;
        margin: 30px 0;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-card h3 {
        font-size: 20px;
    }
    
    .about-card p {
        font-size: 14px;
    }
    
    .modal {
        padding: 0;
    }
    
    .modal-content {
        padding: 0;
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-media-container {
        margin-bottom: 15px;
    }
    
    .modal-media-container img,
    .modal-media-container video {
        max-width: 90vw;
        max-height: 75vh;
    }
    
    .modal-info {
        gap: 8px;
        font-size: 0.8rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    
    .header-container {
        padding: 10px 10px;
    }
    
    .footer-container {
        padding: 10px 10px;
    }
    
    .main-container {
        padding: 10px 10px;
    }
    
    .filter-section {
        padding: 12px 0;
    }
    
    .hero-section {
        padding: 40px 10px;
    }
    
    .hero-content-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-right {
        align-items: center;
    }
    
    .hero-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .filter-container {
        padding: 0 10px;
        justify-content: center;
    }
    
    .filter-separator {
        display: none;
    }
    
    .filter-chips {
        gap: 6px;
    }
    
    .filter-chip {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    
    .filter-chip-icon {
        width: 11px;
        height: 11px;
    }
    
    .header {
        padding-bottom: 15px;
    }
    
    main {
        margin-top: 15px;
    }
    
    .header-top {
        gap: 10px;
    }
    
    .logo-image {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .about-toggle {
        padding: 15px;
        font-size: 14px;
        width: 100%;
    }
    
    .header-buttons {
        margin-top: 0px;
        margin-left: 0px;
    }
    
    .resume-btn {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .lets-talk-btn {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .whatsapp-btn {
        width: 32px;
        height: 32px;
    }
    
    .whatsapp-btn-icon {
        width: 16px;
        height: 16px;
    }
    
    .social-link {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .projects-grid {
        gap: 15px;
        margin: 20px 0;
    }
    
    .project-header {
        font-size: 12px;
    }
    
    .project-icon {
        width: 14px;
        height: 14px;
    }
    
    .about-cards {
        gap: 10px;
    }
    
    .about-card {
        padding: 15px;
    }
    
    .about-card h3 {
        font-size: 18px;
    }
    
    .about-card p {
        font-size: 13px;
    }
    
    .modal {
        padding: 0;
    }
    
    .modal-content {
        padding: 0;
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-media-container {
        margin-bottom: 15px;
    }
    
    .modal-media-container img,
    .modal-media-container video {
        max-width: 88vw;
        max-height: 72vh;
    }
    
    .modal-info {
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .footer {
        margin-top: 40px;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    
    .header-container {
        padding: 8px 8px;
    }
    
    .footer-container {
        padding: 8px 8px;
    }
    
    .main-container {
        padding: 8px 8px;
    }
    
    .hero-section {
        padding: 30px 8px;
    }
    
    .hero-content-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-right {
        align-items: center;
    }
    
    .hero-description {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .filter-container {
        padding: 0 8px;
        justify-content: center;
    }
    
    .filter-separator {
        display: none;
    }
    
    .filter-chip {
        padding: 5px 8px;
        font-size: 0.7rem;
    }
    
    .filter-chip-icon {
        width: 10px;
        height: 10px;
    }
    
    .logo-image {
        max-width: 100%;
    }
    
    .about-toggle {
        padding: 12px;
        font-size: 13px;
    }
    
    .header-buttons {
        margin-top: 20px;
        margin-left: 0px;
    }
    
    .resume-btn {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .lets-talk-btn {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .whatsapp-btn {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-btn-icon {
        width: 14px;
        height: 14px;
    }
    
    .social-link {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .project-header {
        font-size: 11px;
    }
    
    .project-icon {
        width: 12px;
        height: 12px;
    }
    
    .about-card h3 {
        font-size: 16px;
    }
    
    .about-card p {
        font-size: 12px;
    }
}
