/* Projects Section - Professional Redesign */
.work {
    padding: 100px 0 120px;
    background-color: #0a0a0a;
}

.work .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.work .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffc000;
    margin-bottom: 16px;
}

.work .section-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.work .section-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

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

.project-card {
    display: block;
    text-decoration: none;
    background: #151515;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: inherit;
}

.project-card:focus,
.project-card:active {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    line-height: 0;
    font-size: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border: none;
}

.project-image picture {
    display: block;
    line-height: 0;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
}

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

.view-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 192, 0, 0.9);
    padding: 12px 20px;
    border-radius: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.view-project svg {
    width: 18px;
    height: 18px;
}

.project-card:hover .view-project {
    transform: translateY(0);
}

.project-content {
    padding: 28px 30px 32px;
    border-top: none;
}

.project-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.project-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffc000 !important;
    background: rgba(255, 192, 0, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 192, 0, 0.2);
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff !important;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: #ffc000 !important;
}

.project-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #999 !important;
    margin: 0;
}

.project-card:hover .project-desc {
    color: #bbb !important;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border-radius: 20px;
    padding: 50px 60px;
    border: 1px solid #333;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 16px;
    color: #888;
    margin: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: #ffc000;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 192, 0, 0.3);
}

/* Mobile Responsive */
@media screen and (max-width: 767px) {
    .work {
        padding: 60px 0 80px;
    }

    .work .section-header {
        margin-bottom: 50px;
    }

    .work .section-title {
        font-size: 28px;
    }

    .work .section-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .project-content {
        padding: 22px 24px 26px;
    }

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

    .project-desc {
        font-size: 14px;
    }

    .project-image {
        aspect-ratio: 16/9;
    }

    .project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    }

    .view-project {
        transform: translateY(0);
        padding: 10px 16px;
        font-size: 12px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }

    .cta-content h3 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-btn {
        padding: 14px 30px;
        width: 100%;
        justify-content: center;
    }
}

/* Tablet responsive */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .projects-grid {
        gap: 30px;
    }

    .project-content {
        padding: 24px 26px 28px;
    }

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

    .cta-box {
        padding: 40px 45px;
    }
}

/* ============================================
   Services Section - Redesigned
   ============================================ */

.services {
    padding: 100px 0;
    background: #fafafa;
}

.services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services .section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.services .section-title {
    font-size: 48px;
    font-weight: 400;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.services .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card > p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-features li {
    font-size: 13px;
    color: #666;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.service-card:hover .service-features li {
    background: #eee;
}

/* Responsive: Tablet */
@media screen and (max-width: 991px) {
    .services {
        padding: 80px 0;
    }

    .services .section-title {
        font-size: 40px;
    }

    .services-grid {
        gap: 24px;
    }

    .service-card {
        padding: 32px;
    }
}

/* Responsive: Mobile */
@media screen and (max-width: 767px) {
    .services {
        padding: 60px 0;
    }

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

    .services .section-title {
        font-size: 32px;
    }

    .services .section-subtitle {
        font-size: 16px;
    }

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

    .service-card {
        padding: 28px;
    }

    .service-card:hover {
        transform: none;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-icon svg {
        width: 24px;
        height: 24px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-features {
        gap: 8px;
    }

    .service-features li {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* ============================================
   Client Logos Section
   ============================================ */

.clients {
    padding: 60px 0;
    background: #fff;
}

.clients ul.marquee__group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.clients ul.marquee__group li {
    margin: 0 !important;
}

.clients ul.marquee__group li img {
    max-height: 45px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.clients ul.marquee__group li img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .clients {
        padding: 40px 0;
    }

    .clients ul.marquee__group {
        gap: 30px;
    }

    .clients ul.marquee__group li img {
        max-height: 35px;
    }
}

/* ============================================
   Modern Contact Section Styles
   ============================================ */

.contact {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffc000;
    margin-bottom: 16px;
}

.contact-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #888;
    margin: 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Methods */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #222;
    border-color: #ffc000;
    transform: translateX(8px);
    text-decoration: none;
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.email-method .method-icon {
    background: rgba(255, 192, 0, 0.15);
    color: #ffc000;
}

.whatsapp-method .method-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.linkedin-method .method-icon {
    background: rgba(0, 119, 181, 0.15);
    color: #0077b5;
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.method-label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method-value {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
}

.method-arrow {
    color: #555;
    transition: all 0.3s ease;
}

.contact-method:hover .method-arrow {
    color: #ffc000;
    transform: translateX(4px);
}

.contact-note {
    padding: 24px;
    background: rgba(255, 192, 0, 0.08);
    border-left: 3px solid #ffc000;
    border-radius: 0 12px 12px 0;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #aaa;
    margin: 0;
}

/* Modern Contact Form */
.contact-form-wrapper {
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 40px;
}

.modern-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-contact-form .form-group {
    margin-bottom: 24px;
}

.modern-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 10px;
}

.modern-contact-form label .optional {
    font-weight: 400;
    color: #666;
}

.modern-contact-form .form-control {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    font-family: inherit;
    color: #fff;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modern-contact-form .form-control::placeholder {
    color: #555;
}

.modern-contact-form .form-control:hover {
    border-color: #3a3a3a;
}

.modern-contact-form .form-control:focus {
    outline: none;
    border-color: #ffc000;
    background: #111;
    box-shadow: 0 0 0 4px rgba(255, 192, 0, 0.1);
}

.modern-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.modern-contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: #ffc000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-contact-form .btn-submit:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 192, 0, 0.3);
}

.modern-contact-form .btn-submit:active {
    transform: translateY(0);
}

.modern-contact-form .btn-submit svg {
    transition: transform 0.3s ease;
}

.modern-contact-form .btn-submit:hover svg {
    transform: translateX(4px);
}

.modern-contact-form .form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    display: none;
}

.modern-contact-form .form-message.success {
    display: block;
    background: rgba(40, 167, 69, 0.15);
    color: #5cb85c;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.modern-contact-form .form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Contact Section Responsive */
@media screen and (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media screen and (max-width: 767px) {
    .contact {
        padding: 60px 0 80px;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 30px 24px;
        border-radius: 16px;
    }

    .modern-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modern-contact-form .form-group {
        margin-bottom: 20px;
    }

    .modern-contact-form .form-control {
        padding: 14px 16px;
        font-size: 16px;
    }

    .modern-contact-form .btn-submit {
        padding: 16px 28px;
    }

    .contact-method {
        padding: 16px 18px;
    }

    .method-icon {
        width: 44px;
        height: 44px;
    }

    .method-value {
        font-size: 15px;
    }

    .contact-note {
        padding: 20px;
    }

    .contact-note p {
        font-size: 14px;
    }
}
