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

:root {
    --orange: #F57C00;
    --orange-light: #FF9800;
    --orange-dark: #E65100;
    --dark: #1A1A1A;
    --gray: #555;
    --light: #F8F8F8;
    --white: #FFFFFF;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    line-height: 1.1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.98) 0%, rgba(255, 152, 0, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(245, 124, 0, 0.2);
}

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

.brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--dark);
}

.nav-cta {
    padding: 0.8rem 1.8rem;
    background: var(--white);
    color: var(--orange);
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero */
.hero {
    position: relative;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F57C00 0%, #FF9800 50%, #FFB74D 100%);
    opacity: 0.05;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border-radius: 50px;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 0.95;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-hero,
.btn-hero-outline {
    display: inline-block;
    padding: 1.3rem 3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(245, 124, 0, 0.3);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(245, 124, 0, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--orange);
    border: 3px solid var(--orange);
}

.btn-hero-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-5px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Services */
.services {
    padding: 120px 0;
    background: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.label {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border-radius: 50px;
}

.section-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-number {
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 8rem;
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    z-index: 0;
}

.service-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-media img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-item:hover .service-media img {
    transform: scale(1.05);
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.service-info p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-list li {
    padding-left: 1.8rem;
    position: relative;
    color: var(--gray);
    font-weight: 600;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900;
    font-size: 1.2rem;
}

/* About */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--light);
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.03) 0%, rgba(255, 152, 0, 0.03) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.value {
    flex: 1;
    text-align: center;
}

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

.value h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.value p {
    font-size: 0.95rem;
    margin: 0;
}

.btn-about {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-about:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 124, 0, 0.4);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(245, 124, 0, 0.4);
}

.badge-text {
    color: var(--white);
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.3;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: var(--white);
    color: var(--orange);
    text-decoration: none;
    font-weight: 900;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--dark);
    color: var(--white);
}

/* Contact */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    color: var(--gray);
    margin: 0;
}

.company-info {
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 5px solid var(--orange);
}

.company-info p {
    margin: 0.5rem 0;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 3rem;
    border-radius: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.2rem;
    border: 3px solid transparent;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-field textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 124, 0, 0.4);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0.3rem 0;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-wrapper,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .service-item.reverse {
        direction: ltr;
    }

    .about-badge {
        position: static;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .service-list,
    .about-values {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-info {
        text-align: center;
    }
}
