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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    overflow-x: hidden;
}

header {
    background: #0f0f0f;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5f5f5, transparent);
    transition: width 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    nav a:hover::after {
        width: 100%;
    }

    nav a:hover {
        opacity: 1;
    }
}

.hero {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%), url('./images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    color: #0f0f0f;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
}

section {
    padding: 5rem 2rem;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #0f0f0f;
    font-weight: 700;
    background: linear-gradient(135deg, #0f0f0f 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

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

.services {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 1rem;
    padding-top: 1rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.services::-webkit-scrollbar {
    height: 8px;
}

.services::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.services::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
}

@media (hover: hover) and (pointer: fine) {
    .services::-webkit-scrollbar-thumb:hover {
        background: #222;
    }
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex: 0 0 280px;
    min-width: 280px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0f0f0f, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .service-card:hover::before {
        opacity: 1;
    }
}

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

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover .icon {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Individual Service Card Colors */
.service-card-1 {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.service-card-1::before {
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
}

.service-card-2 {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.service-card-2::before {
    background: linear-gradient(90deg, transparent, #9C27B0, transparent);
}

.service-card-3 {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.service-card-3::before {
    background: linear-gradient(90deg, transparent, #4CAF50, transparent);
}

.service-card-4 {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.service-card-4::before {
    background: linear-gradient(90deg, transparent, #FF9800, transparent);
}

.service-card-5 {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.service-card-5::before {
    background: linear-gradient(90deg, transparent, #E91E63, transparent);
}

.portfolio {
    background: #f8f9fa;
    border-left: none;
    border-right: none;
    max-width: 100%;
    padding: 5rem 2rem;
    margin: 0;
    overflow: hidden;
}

.portfolio-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    padding: 0 2rem;
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    padding: 0;
    width: 100%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.portfolio-item {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    flex: 0 0 calc(100% - 1.33rem);
    min-width: calc(100% - 1.33rem);
    scroll-snap-align: start;
    border: none;
    box-sizing: border-box;
}



.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

@media (hover: hover) and (pointer: fine) {
    .dot:hover {
        background: #999;
        transform: scale(1.2);
    }
}

.dot.active {
    background: #0f0f0f;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(15,15,15,0.3);
}

.portfolio-item {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    border: none;
    box-sizing: border-box;
}

.portfolio-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    color: #111;
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%), url('./images/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    width: 100vw;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
}

.cta-button-white {
    display: inline-block;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    color: #0f0f0f;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-button-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    transition: left 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .cta-button-white:hover::before {
        left: 100%;
    }

    .cta-button-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(255,255,255,0.2);
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

@media (hover: hover) and (pointer: fine) {
    .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .faq-question:hover {
        background: #f0f0f0;
    }
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #0f0f0f;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 1rem auto 3rem;
}

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

.contact-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

@media (hover: hover) and (pointer: fine) {
    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

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

.contact-card h3 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.contact-link {
    display: inline-block;
    color: #0f0f0f;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

@media (hover: hover) and (pointer: fine) {
    .contact-link:hover {
        background: #e5e5e5;
        transform: scale(1.05);
    }
}

.contact-cta {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: white;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-benefits li {
    font-size: 1rem;
    opacity: 0.95;
}

footer {
    background: linear-gradient(180deg, #000000 0%, #000000 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    footer:hover p {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 4rem 1rem;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .services {
        padding-bottom: 0.5rem;
    }

    .service-card {
        flex: 0 0 260px;
        min-width: 260px;
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .icon {
        font-size: 2.5rem;
    }

    .portfolio {
        padding: 3rem 1rem;
    }

    .portfolio-wrapper {
        max-width: 100%;
    }

    .portfolio-grid {
        padding: 0;
    }

    .portfolio-item {
        border-radius: 15px;
    }

    .portfolio-img {
        height: 180px;
        font-size: 1rem;
    }

    .portfolio-content {
        padding: 1.2rem;
    }

    .portfolio-content h3 {
        font-size: 1.1rem;
    }

    .portfolio-content p {
        font-size: 0.85rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .cta-section {
        padding: 3rem 1.5rem;
        width: 100vw;
        margin: 0 calc(-50vw + 50%);
        background-attachment: scroll;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button-white {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-intro {
        font-size: 1rem;
        margin: 1rem 1rem 2rem;
    }

    .contact-container {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .contact-cta {
        padding: 2rem;
    }

    .contact-cta h3 {
        font-size: 1.3rem;
    }

    .contact-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    footer {
        padding: 2rem 1rem;
        font-size: 0.85rem;
    }
}
