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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff4757;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    color: #ff4757;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: #000;
    margin-bottom: 60px;
    font-weight: 300;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.hero-description p:last-child {
    font-weight: 600;
    color: #000;
}

/* Brands Section */
.brands-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.brands-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 50px;
    color: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.brands-grid img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.brands-grid img:hover {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: #ff4757;
    color: white;
    padding: 100px 0;
}

.cta-content {
    text-align: left;
    max-width: 600px;
}

.cta-content h2 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: #ff4757;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 20px;
    margin-bottom: 20px;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: white;
    color: #ff4757;
}

/* Work Section */
.work-section {
    background: #f8f9fa;
    padding: 100px 0;
}

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

.work-header h2 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 300;
    line-height: 0.9;
    color: #000;
    margin-bottom: 10px;
}

.work-highlight {
    color: #ff4757;
    font-weight: 900;
    position: relative;
}

.work-highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    right: -40px;
    height: 3px;
    background: #ff4757;
    z-index: -1;
}

.work-highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    right: -80px;
    height: 3px;
    background: #ff4757;
    z-index: -1;
    transform: translateY(-15px);
}

.work-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.work-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.work-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-item.featured {
    grid-template-columns: 1.2fr 0.8fr;
}

.work-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.work-content {
    padding: 40px;
}

.work-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.work-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.work-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #ff4757;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    background: #1a1a1a;
    color: white;
    padding: 100px 0;
}

.services-section h2 {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.offer-highlight {
    color: #ff4757;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.service-quarter {
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 40px 30px;
    min-height: 400px;
}

.service-quarter:nth-child(4n) {
    border-right: none;
}

.quarter-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff4757;
    margin-bottom: 20px;
    line-height: 1;
}

.service-quarter h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.service-quarter ul {
    list-style: none;
}

.service-quarter li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
    color: #ccc;
    transition: color 0.3s ease;
}

.service-quarter li:hover {
    color: white;
}

.service-quarter li:last-child {
    border-bottom: none;
}

/* Nice Things Section */
.nice-things-section {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.nice-things-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.nice-things-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff4757;
    margin: 20px auto;
}

.nice-things-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.nice-thing-item {
    text-align: center;
}

.nice-thing-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.nice-thing-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.nice-thing-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.see-more-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background: #e73c48;
    transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta-section {
    background: #ff4757;
    color: white;
    padding: 100px 0;
}

.final-cta-content h2 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.final-cta-button {
    background: white;
    color: #ff4757;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 30px;
}

.footer-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    max-width: 300px;
}

.footer-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-badges img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-badges img:hover {
    opacity: 1;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-character {
    position: absolute;
    bottom: 0;
    right: 5%;
}

.footer-character img {
    height: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-description {
        text-align: center;
    }

    .work-item {
        grid-template-columns: 1fr;
    }

    .work-item.featured {
        grid-template-columns: 1fr;
    }

    .work-item img {
        height: 200px;
    }

    .work-content {
        padding: 30px 20px;
    }

    .work-stats {
        justify-content: center;
        gap: 30px;
    }

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

    .service-quarter {
        border-right: none;
        border-bottom: 1px solid #333;
        min-height: auto;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-character {
        position: static;
        text-align: center;
        margin-top: 40px;
    }

    .footer-links ul {
        justify-content: center;
    }
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
