* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Hide titlebar that creates gap */
.titlebar-inner,
.titlebar-container,
.titlebar {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    text-align: left;
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #00bcd4;
    color: white;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.cta-button:hover {
    background-color: #00acc1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
}

.hero-stats {
    margin-top: 40px;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 24px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Transform Section */
.transform-section {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
    line-height: 1.3;
}

.section-title .highlight {
    color: #00bcd4;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

/* Works Section */
.works-section {
    padding: 80px 0;
    background: #f8fafc;
}

.works-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00bcd4;
    color: white;
    border-color: #00bcd4;
}

.filter-icon {
    font-size: 1.2rem;
}

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

.work-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.work-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.work-info {
    padding: 20px;
}

.work-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.work-category {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

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

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

/* Promo Card */
.promo-column {
    position: sticky;
    top: 100px;
}

.promo-card {
    background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 131, 143, 0.3);
}

.promo-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.promo-badge {
    background: white;
    color: #1f2937;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.badge-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00838f;
    margin-bottom: 5px;
}

.badge-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 15px;
}

.badge-price {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.price-detail {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.promo-features {
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.checkmark {
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 10px;
    font-style: italic;
}

/* Form Column */
.form-column {
    background: white;
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group-full {
    width: 100%;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #00bcd4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #00838f 0%, #00acc1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 131, 143, 0.3);
}

.button-icon {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-column {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 60px 20px;
        text-align: center;
    }

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

    .hero-title,
    .hero-subtitle {
        max-width: 100%;
    }

    .transform-section,
    .works-section,
    .contact-section {
        padding: 60px 0;
    }

    .features-grid {
        gap: 40px;
    }

    .works-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .works-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-title {
        font-size: 1.75rem;
        text-align: center;
    }

    .form-subtitle {
        text-align: center;
    }
}

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

    .hero-title {
        font-size: 1.8rem;
    }

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

    .promo-card h2 {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }
}

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

.work-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.work-item:nth-child(1) { animation-delay: 0.1s; }
.work-item:nth-child(2) { animation-delay: 0.2s; }
.work-item:nth-child(3) { animation-delay: 0.3s; }
.work-item:nth-child(4) { animation-delay: 0.4s; }
.work-item:nth-child(5) { animation-delay: 0.5s; }
.work-item:nth-child(6) { animation-delay: 0.6s; }
.work-item:nth-child(7) { animation-delay: 0.7s; }
.work-item:nth-child(8) { animation-delay: 0.8s; }
.work-item:nth-child(9) { animation-delay: 0.9s; }

.work-item.visible {
    opacity: 1;
}

/* Smooth transitions */
.feature-card,
.filter-btn,
.work-item,
.form-input,
.form-textarea,
.submit-button {
    transition: all 0.3s ease;
}

/* Focus states */
.form-input:focus,
.form-textarea:focus {
    transform: translateY(-2px);
}

/* Button hover effects */
.cta-button:active,
.submit-button:active,
.filter-btn:active {
    transform: scale(0.98);
}