* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
header {
    background: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s;
}
header.scrolled {
    padding: 1rem 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b6b;
    letter-spacing: -0.5px;
}
.logo a {
    text-decoration: none;
    color: inherit;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}
nav a.active {
    color: #ff6b6b;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s;
}
nav a:hover::after,
nav a.active::after {
    width: 100%;
}
nav a:hover {
    color: #ff6b6b;
}
.hero {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}
.hero-content {
    padding: 2rem 0;
}
.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}
.hero-image:hover img {
    transform: scale(1.02);
}
.page-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
}
.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid;
}
.btn-primary {
    background: #ff6b6b;
    color: #fff;
    border-color: #ff6b6b;
}
.btn-primary:hover {
    background: transparent;
    color: #ff6b6b;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: #ff6b6b;
    border-color: #ff6b6b;
}
.btn-secondary:hover {
    background: #ff6b6b;
    color: #fff;
}
.section {
    padding: 6rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.project-card:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}
.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.project-card:hover .project-overlay {
    opacity: 1;
}
.project-card:hover .project-image {
    transform: scale(1.1);
}
.project-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.project-info p {
    color: #fff;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.project-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}
.project-link:hover {
    gap: 1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.service-item {
    text-align: center;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}
.service-item > div:last-child {
    padding: 2rem;
}
.service-icon {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.service-item p {
    color: #666;
    line-height: 1.8;
}
.creative-showcase {
    background: #f8f9fa;
    padding: 6rem 0;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.showcase-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}
.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}
.showcase-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.showcase-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
}
.showcase-item:hover .showcase-image::after {
    opacity: 1;
}
.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}
.showcase-content {
    padding: 2.5rem;
    text-align: center;
}
.showcase-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}
.showcase-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.showcase-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}
.creative-timeline {
    background: #f8f9fa;
}
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff6b6b, #4ecdc4);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}
.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 3rem;
}
.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}
.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.timeline-content {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.timeline-item:hover .timeline-content {
    transform: scale(1.05);
}
.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.timeline-content p {
    color: #666;
    line-height: 1.6;
}
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.8rem 2rem;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.filter-btn:hover {
    background: #ff6b6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 1;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.portfolio-item:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.3);
}
.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}
.portfolio-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.portfolio-overlay p {
    color: #fff;
    opacity: 0.9;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}
.about-text-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}
.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.value-card p {
    color: #666;
    line-height: 1.8;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.team-member {
    text-align: center;
}
.team-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: transform 0.3s ease;
}
.team-member:hover .team-avatar {
    transform: scale(1.1);
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.team-role {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 1rem;
}
.team-bio {
    color: #666;
    line-height: 1.8;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 {
    text-align: left;
    margin-bottom: 2rem;
}
.info-item {
    margin-bottom: 2.5rem;
}
.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 700;
}
.info-item p {
    color: #666;
    line-height: 1.8;
}
.social-links {
    margin-top: 3rem;
}
.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}
.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.social-icon {
    padding: 0.8rem 1.5rem;
    background: #f0f0f0;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}
.social-icon:hover {
    background: #ff6b6b;
    color: #fff;
}
.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form h2 {
    text-align: left;
    margin-bottom: 2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b6b;
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}
.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}
.cta-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: #fff;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}
@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}
.cta-section > .container {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-section .btn-primary {
    background: #fff;
    color: #ff6b6b;
    border-color: #fff;
}
.cta-section .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}
.footer-section p,
.footer-section a {
    color: #aaa;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: #ff6b6b;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 3rem;
    background: #fff;
    position: relative;
    border-radius: 12px;
    animation: fadeInUp 0.5s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #ff6b6b;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s;
}
.modal-close:hover {
    color: #4ecdc4;
}
.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 8px;
}
.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}
.modal-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e0e0e0;
}
.modal-detail-item h4 {
    font-weight: 700;
    font-size: 0.9rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.modal-detail-item p {
    color: #333;
    font-size: 1.1rem;
}
::-webkit-scrollbar {
    display: none;
}
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: row !important;
    }
    .timeline-item .timeline-content {
        margin-left: 3rem !important;
        margin-right: 0 !important;
        text-align: left !important;
    }
    .timeline-marker {
        left: 20px !important;
        transform: translateX(-50%);
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

