/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0; /* handled inside nav and pseudo panel */
}

:root { --header-opacity: 0.48; }

/* Frosted panel behind the nav with requested margins */
.header::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 32px;
    right: 32px;
    background-color: rgba(9, 8, 8, var(--header-opacity));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    z-index: 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px; /* adjusted vertical padding */
    position: relative; /* to sit above frosted panel */
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 42px; /* slightly smaller */
    width: auto;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-links a:hover {
        color: #1dac4b;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Mobile Menu Button - Hidden on Desktop */
    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu-overlay {
        display: none;
    }

.cta-button {
    background-color: #1dac4b;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #169a3f;
}

/* Hero Contact Button Specific Styling */
.hero-contact {
    background: linear-gradient(135deg, #1dac4b, #2dd36f) !important;
    padding: 20px 40px !important;
    border-radius: 15px !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 25px rgba(29, 172, 75, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

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

.hero-contact:hover {
    background: linear-gradient(135deg, #2dd36f, #1dac4b) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(29, 172, 75, 0.4) !important;
}

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

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #ffffff;
}

.highlight {
    color: #1dac4b;
}

.hero-text p {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    width: 100%;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}



.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    width: 100%;
    height: 100%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Floating Arrow */
.hero-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

.floating-arrow {
    width: 30px;
    height: 30px;
    filter: invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.floating-arrow:hover {
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(29, 172, 75, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 211, 111, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(29, 172, 75, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Mobile responsive fixes for About section */
@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about::before {
        background-image: 
            radial-gradient(circle at 30% 70%, rgba(29, 172, 75, 0.06) 0%, transparent 40%),
            radial-gradient(circle at 70% 30%, rgba(45, 211, 111, 0.06) 0%, transparent 40%);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slogan-container {
        padding: 12px 20px;
        margin: 15px auto;
    }
    
    .section-slogan {
        font-size: 1rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about::before {
        background-image: 
            radial-gradient(circle at 50% 50%, rgba(29, 172, 75, 0.04) 0%, transparent 30%);
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slogan-container {
        padding: 10px 16px;
        margin: 12px auto;
    }
    
    .section-slogan {
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1dac4b, #2dd36f);
    border-radius: 2px;
}

/* Remove green line specifically from About section */
.about .section-title::after {
    display: none;
}

.slogan-container {
    background: linear-gradient(135deg, rgba(29, 172, 75, 0.1) 0%, rgba(45, 211, 111, 0.1) 100%);
    border: 2px solid #1dac4b;
    border-radius: 50px;
    padding: 15px 30px;
    margin: 20px auto;
    max-width: fit-content;
    position: relative;
    overflow: hidden;
}

.slogan-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 172, 75, 0.2), transparent);
    transition: left 0.6s ease;
}

.slogan-container:hover::before {
    left: 100%;
}

.section-slogan {
    font-size: 1.2rem;
    color: #1dac4b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.about-text {
    padding: 20px 0;
}

.about-text p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 18px;
}

.about-approach {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1dac4b;
    margin: 25px 0 18px 0;
    font-style: normal;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.about-stats .stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1dac4b;
    margin-bottom: 5px;
}

.about-stats .stat p {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.about-images {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.about-image-square {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.image-overlap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-overlap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-overlap img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.1;
}

.services-background .large-text {
    font-size: 8rem;
    font-weight: 900;
    color: #ffffff;
    white-space: nowrap;
    line-height: 1;
}

.services-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.services-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1dac4b, #2dd36f);
    border-radius: 2px;
}

.services-content .small {
    font-size: 1rem;
    font-weight: 500;
    color: #cccccc;
    display: block;
    margin-bottom: 10px;
}

.services-content .services-subtitle {
    text-align: center;
    color: #666666;
    max-width: 800px;
    margin: -30px auto 50px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.services-lead {
    text-align: center;
    color: #666666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.services-explore {
    text-align: center;
    color: #1dac4b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.services-slider {
    position: relative;
}

.services-page {
    display: none;
}

.services-page.active {
    display: block;
}

.services-nav {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.services-nav button {
    background: #1dac4b;
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

.services-nav button.active {
    display: flex;
}

.services-nav button:hover {
    background: #169a3f;
    transform: scale(1.1);
}

    .services-nav button:disabled {
        background: #cccccc;
        cursor: not-allowed;
        transform: none;
    }

    /* Let's Build Section */
    .lets-build {
        position: relative;
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        height: fit-content;
    }

    .lets-build-background {
        position: relative;
        width: auto;
        height: auto;
        z-index: 1;
    }

    .lets-build-bg {
        display: block;
        max-width: 100%;
        height: auto;
        filter: blur(2px);
    }

    .lets-build-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 2;
    }

    .lets-build-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        text-align: center;
        max-width: 800px;
        padding: 20px;
    }

    .lets-build-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 30px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .lets-build-content p {
        font-size: 1.2rem;
        color: #ffffff;
        margin-bottom: 40px;
        line-height: 1.7;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .lets-build-btn {
        background: #1dac4b;
        color: #ffffff;
        border: 2px solid #1dac4b;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .lets-build-btn:hover {
        background: #169a3f;
        border-color: #169a3f;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(29, 172, 75, 0.3);
    }

    /* Project Modal Styles */
    .project-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .project-modal__backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .project-modal__dialog {
        position: relative;
        background: white;
        border-radius: 12px;
        padding: 30px;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        margin: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .project-modal__close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .project-modal__close:hover {
        background: #f0f0f0;
        color: #333;
    }

    .project-modal__content {
        margin-top: 10px;
    }

    .project-modal__title {
        font-size: 2rem;
        font-weight: 700;
        color: #1dac4b;
        margin-bottom: 20px;
        padding-right: 40px;
        text-align: center;
    }

    .project-modal__content p {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 20px;
    }

    .project-modal__content ul {
        margin: 20px 0;
        padding-left: 20px;
    }

    .project-modal__content li {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #666;
        margin-bottom: 10px;
    }

    .project-modal__content strong {
        color: #333;
        font-weight: 600;
    }

.service-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 172, 75, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #1dac4b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 8px 15px rgba(29, 172, 75, 0.2);
    background-color: #ffffff;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #1dac4b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    box-shadow: 0 8px 20px rgba(29, 172, 75, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #1dac4b;
}

.service-card p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.learn-more {
    color: #1dac4b;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 12px;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.portfolio-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.1;
}

.portfolio-background .large-text {
    font-size: 6rem;
    font-weight: 900;
    color: #333333;
    white-space: nowrap;
    line-height: 1;
}

.portfolio-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #333333;
}

.portfolio-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    margin: 20px auto 0;
    border-radius: 2px;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: #666666;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: center;
}



.portfolio-text h3 {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 5px;
}

.portfolio-text .subtitle {
    font-size: 1rem;
    color: #1dac4b;
    margin-bottom: 15px;
    font-weight: 600;
}

.portfolio-text h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
}

.portfolio-text p {
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.project-button-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 25px;
}

.view-project {
    background-color: #1dac4b;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-project:hover {
    background-color: #169a3f;
}

.portfolio-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    transition: none !important;
    transform: none !important;
}

.portfolio-image img:hover {
    transform: none !important;
    transition: none !important;
}

.portfolio-image {
    animation: none !important;
}

.portfolio-image * {
    animation: none !important;
    transition: none !important;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    padding: 60px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 100px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo {
    align-self: end;
    margin-top: 60px;
}

.footer-logo .logo-link {
    display: block;
    margin-bottom: 15px;
}

    .footer-slogan {
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin: 0;
        white-space: nowrap;
    }

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1dac4b;
    text-align: center;
    width: 100%;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .contact-item .contact-icon {
        background: transparent;
        color: #1dac4b;
        width: 35px;
        height: 35px;
        border: 2px solid #1dac4b;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
    }

.contact-item .contact-icon i {
    font-size: 1rem;
}

.contact-item .contact-text p {
    margin: 0;
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1dac4b;
}

.footer-section:last-child {
    justify-self: end;
    margin-right: 0;
}

.footer-section:nth-child(2) {
    justify-self: center;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    background-color: #1dac4b;
    transform: scale(1.1);
}

.social-icons a i {
    font-size: 1.2rem;
    pointer-events: none;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.success-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.success-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.success-modal__icon {
    font-size: 3rem;
    color: #1dac4b;
    margin-bottom: 20px;
}

.success-modal__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.success-modal__message {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-modal__close {
    background: #1dac4b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-modal__close:hover {
    background: #2dd36f;
    transform: translateY(-2px);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav {
        justify-content: space-between;
        padding: 20px;
        align-items: center;
    }
    
    .nav-logo {
        flex-shrink: 0;
    }
    
    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
        white-space: nowrap;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        flex-shrink: 0;
    }
    
    .hamburger-line {
        width: 24px;
        height: 2px;
        background-color: #ffffff;
        margin: 3px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(9, 8, 8, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-overlay.active {
        right: 0;
    }
    
    .mobile-menu-content {
        width: 100%;
        padding: 60px 30px 40px 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 25px;
        right: 25px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: #ffffff;
        font-size: 20px;
        cursor: pointer;
        padding: 12px;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .mobile-nav-links {
        list-style: none;
        margin: 60px 0 40px 0;
        width: 100%;
    }
    
    .mobile-nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-nav-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-links a {
        color: #ffffff;
        text-decoration: none;
        font-size: 20px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: block;
        padding: 20px 0;
        text-align: center;
        position: relative;
    }
    
    .mobile-nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #1dac4b;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    
    .mobile-nav-links a:hover::after {
        width: 50px;
    }
    
    .mobile-nav-links a:hover {
        color: #1dac4b;
    }
    
    .mobile-cta-button {
        background: linear-gradient(135deg, #1dac4b 0%, #2dd36f 100%);
        color: white;
        border: none;
        padding: 18px 40px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 40px;
        width: 100%;
        max-width: 200px;
        box-shadow: 0 4px 15px rgba(29, 172, 75, 0.2);
    }
    
    .mobile-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(29, 172, 75, 0.3);
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .portfolio-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-nav {
        justify-content: center;
    }

    .services-nav button {
        width: 40px;
        height: 40px;
    }

    .lets-build-content h2 {
        font-size: 2rem;
    }

    .lets-build-content p {
        font-size: 1rem;
    }
    
    /* Let's Build Section Mobile Fixes */
    .lets-build {
        width: 100%;
        height: auto;
        min-height: 350px;
        position: relative;
        margin: 40px 0;
    }
    
    .lets-build-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .lets-build-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: blur(1px);
    }
    
    .lets-build-overlay {
        background-color: rgba(0, 0, 0, 0.6);
    }
    
    .lets-build-content {
        padding: 30px 20px;
        max-width: 90%;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }
    
    .lets-build-content h2 {
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .lets-build-content p {
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .lets-build-btn {
        padding: 14px 28px;
        font-size: 1.1rem;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(29, 172, 75, 0.3);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services-background .large-text,
    .portfolio-background .large-text,
    .contact-background .large-text {
        font-size: 3rem;
    }

    .service-card,
    .portfolio-item {
        margin-bottom: 30px;
    }
    
    /* Let's Build Section Small Mobile Fixes */
    .lets-build {
        min-height: 280px;
        margin: 30px 0;
    }
    
    .lets-build-content {
        padding: 25px 15px;
        max-width: 95%;
    }
    
    .lets-build-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .lets-build-content p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .lets-build-btn {
        padding: 12px 24px;
        font-size: 1rem;
        margin-top: 15px;
        border-radius: 8px;
    }
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    color: #333333;
    padding: 80px 24px;
    border-radius: 24px;
    margin: 0 32px;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 172, 75, 0.05) 0%, rgba(45, 211, 111, 0.05) 100%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(29, 172, 75, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 172, 75, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(29, 172, 75, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(29, 172, 75, 0);
    }
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.inquiry-section {
    background: #0B0A0A;
    color: #ffffff;
    padding: 80px 24px;
    border-radius: 24px;
    margin: 0 32px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.inquiry-image-wrap {
    display: none;
}

.inquiry-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inquiry-form {
    width: 100%;
    max-width: 900px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.inquiry-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    color: #333333;
    text-align: center;
}

.inquiry-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1dac4b, #2dd36f);
    border-radius: 2px;
}

.inquiry-subtitle {
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: center;
    font-size: 1.1rem;
}

.form-row { margin-bottom: 35px; }

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e9ecef;
    color: #333333;
    padding: 22px 28px;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
    color: #999999;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #1dac4b;
    box-shadow: 0 0 0 3px rgba(29, 172, 75, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.inquiry-submit {
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    color: white;
    border: none;
    cursor: pointer;
}

.inquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 172, 75, 0.3);
}

.inquiry-submit i {
    font-size: 1rem;
}

.services-section {
    margin-bottom: 40px;
}

.services-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 25px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-checkbox:hover {
    background: #f8f9fa;
    border-color: #1dac4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #1dac4b;
    cursor: pointer;
    flex-shrink: 0;
}

.service-checkbox label {
    color: #333333;
    font-size: 0.95rem;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .contact-content {
        padding: 0 20px;
    }

    .inquiry-form {
        padding: 0;
    }

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

    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-image { max-width: 100%; }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 60px 0;
    }

    .inquiry-form {
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-checkbox {
        padding: 10px 12px;
    }

    .contact-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(29, 172, 75, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 211, 111, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hww-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hww-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(29, 172, 75, 0.3);
}

.hww-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.hww-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hww-subtitle {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.workflow-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workflow-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.workflow-step {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 25px 20px;
    width: 200px;
    min-height: 130px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 172, 75, 0.1), transparent);
    transition: left 0.6s ease;
}

.workflow-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.1);
    border-color: #1dac4b;
}

.workflow-step:hover::before {
    left: 100%;
}

.workflow-step h3 { 
    font-size: 1.1rem; 
    margin: 8px 0 6px; 
    color: #333333;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.workflow-step p { 
    color: #666666; 
    font-size: 0.9rem; 
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.step-number {
    display: inline-block;
    font-weight: 800;
    color: #1dac4b;
    font-size: 1rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1dac4b, #2dd36f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.workflow-arrow {
    color: #1dac4b;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.workflow-arrow:hover {
    transform: scale(1.2);
    color: #2dd36f;
}

.workflow-arrow-down {
    color: #1dac4b;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.workflow-arrow-down:hover {
    transform: scale(1.2);
    color: #2dd36f;
}

.iterate-icon {
    font-size: 2rem;
    color: #1dac4b;
}

.iterate-icon i {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Comprehensive Mobile Responsive Design */

/* Tablet Styles (max-width: 900px) */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    /* Portfolio Section */
    .portfolio-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .portfolio-image img {
        height: 300px;
    }
    

    

    
    /* How We Work */
    .workflow-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .workflow-step {
        width: 180px;
        min-height: 100px;
        padding: 20px 15px;
    }
    
    /* Contact Form */
    .inquiry-form {
        padding: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header::before {
        top: 4px;
        bottom: 4px;
        left: 8px;
        right: 8px;
        border-radius: 10px;
    }
    
    .nav {
        padding: 16px 10px;
        max-width: 100%;
    }
    
    .nav-logo {
        gap: 8px;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Add top margin to hero section to prevent overlap */
    .hero {
        margin-top: 90px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .services-nav {
        justify-content: center;
    }
    
    .services-nav button {
        width: 40px;
        height: 40px;
    }
    
    /* Portfolio Section */
    .portfolio-content h2 {
        font-size: 2.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .portfolio-text h4 {
        font-size: 2rem;
    }
    
    .portfolio-text h3 {
        font-size: 0.8rem;
    }
    
    .portfolio-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* How We Work */
    .hww-title {
        font-size: 2.5rem;
    }
    
    .hww-subtitle {
        font-size: 1rem;
    }
    
    .workflow-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .workflow-step {
        width: 100%;
        max-width: 300px;
        min-height: 90px;
        padding: 15px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 15px;
        margin: 0 15px;
    }
    
    .inquiry-form {
        padding: 25px;
    }
    
    .inquiry-title {
        font-size: 2rem;
    }
    
    .inquiry-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-checkbox {
        padding: 12px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center;
        margin-top: 0;
    }
    
    .footer-section {
        justify-self: center;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    .header::before {
        top: 2px;
        bottom: 2px;
        left: 4px;
        right: 4px;
        border-radius: 8px;
    }
    
    .nav {
        padding: 10px 6px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Adjust hero margin for smaller screens */
    .hero {
        margin-top: 80px;
    }
    
    /* Hero Section */
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-contact {
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
    }
    
    /* About Section */
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .slogan-container {
        padding: 10px 16px;
        margin: 12px auto;
    }
    
    .section-slogan {
        font-size: 0.9rem;
        letter-spacing: 0.08em;
    }
    
    /* Services Section */
    .service-card {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Portfolio Section */
    .portfolio-content h2 {
        font-size: 2rem;
    }
    
    .portfolio-text h4 {
        font-size: 1.8rem;
    }
    
    .portfolio-text p {
        font-size: 0.9rem;
    }
    
    .portfolio-image img {
        height: 200px;
    }
    
    /* How We Work */
    .hww-title {
        font-size: 2rem;
    }
    
    .hww-subtitle {
        font-size: 0.9rem;
    }
    
    .workflow-step {
        padding: 12px;
        min-height: 80px;
    }
    
    .workflow-step h3 {
        font-size: 1rem;
    }
    
    .workflow-step p {
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 40px 10px;
        margin: 0 10px;
    }
    
    .inquiry-form {
        padding: 20px;
    }
    
    .inquiry-title {
        font-size: 1.8rem;
    }
    
    .inquiry-subtitle {
        font-size: 0.9rem;
    }
    
    .inquiry-form input,
    .inquiry-form textarea {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .service-checkbox {
        padding: 10px;
    }
    
    .service-checkbox label {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .social-icons a i {
        font-size: 1rem;
    }
}

/* Extra Small Mobile Styles (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    /* Header */
    .header::before {
        top: 1px;
        bottom: 1px;
        left: 2px;
        right: 2px;
        border-radius: 6px;
    }
    
    .nav {
        padding: 8px 4px;
    }
    
    .logo-image {
        height: 26px;
    }
    
    .cta-button {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    /* Adjust hero margin for extra small screens */
    .hero {
        margin-top: 70px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .portfolio-content h2 {
        font-size: 1.8rem;
    }
    
    .hww-title {
        font-size: 1.8rem;
    }
    
    .inquiry-title {
        font-size: 1.6rem;
    }
    
    .contact-section {
        padding: 30px 8px;
        margin: 0 8px;
    }
    
    .inquiry-form {
        padding: 15px;
    }
} 