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

:root {
    --orange: #e94e1a;
    --orange-dark: #d03e0e;
    --orange-light: #ff6b38;
    --black: #000000;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f7f7f7;
    --white: #ffffff;
    --shadow: 0 5px 25px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 45px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--black);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: var(--white);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header-content .nav {
    margin-left: auto;
    margin-right: 20px;
}

.logo {
    display: inline-block;
    transition: transform 0.35s ease;
}

.logo:hover {
    transform: translateY(-3px);
}

.logo img {
    height: 80px;
    width: auto;
    transition: all 0.35s ease;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 42px;
}

.nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav a:hover::before {
    width: 100%;
}

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

.mobile-header-right {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
}

.phone-button:hover {
    background: var(--light-gray);
    color: var(--orange);
}

.phone-button svg {
    flex-shrink: 0;
}

.btn-header {
    background: var(--orange);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(233,78,26,0.25);
}

.btn-header:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233,78,26,0.35);
}

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

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--light-gray);
    padding: 90px 40px;
    position: relative;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8em;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -1.2px;
}

.hero-text h1::after {
    content: '.';
    color: var(--orange);
}

.hero-text > p {
    font-size: 1.25em;
    margin-bottom: 40px;
    color: var(--gray);
    line-height: 1.75;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-feature-icon {
    width: 38px;
    height: 38px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    flex-shrink: 0;
}

.hero-feature-item span {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--black);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    aspect-ratio: 1;
}

.hero-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.hero-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hero-grid-item:hover img {
    transform: scale(1.1);
}

/* Slider */
.slider-section {
    background: var(--white);
    padding: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 33.333%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.slide:hover img {
    transform: scale(1.06);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 40px 30px;
    color: var(--white);
}

.slide-overlay h3 {
    font-size: 1.75em;
    font-weight: 700;
    margin: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 30px 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--orange);
    width: 35px;
    border-radius: 6px;
}

/* Buttons */
.btn {
    padding: 16px 42px;
    font-size: 1.05em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(233,78,26,0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(233,78,26,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Sections */
.section {
    padding: 100px 40px;
    background: var(--white);
}

.section-alt {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3.2em;
    margin-bottom: 18px;
    color: var(--black);
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2em;
    color: var(--gray);
    margin-top: 25px;
}

/* About Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: var(--black);
    font-weight: 800;
}

.about-text p {
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 22px;
    font-size: 1.08em;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.about-image:hover img {
    transform: scale(1.08);
}

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

.stat-mini-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-mini-item strong {
    display: block;
    font-size: 2.2em;
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-mini-item span {
    color: var(--gray);
    font-size: 0.95em;
}

/* Offer Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

.offer-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.06);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-card-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    padding: 35px 28px;
    text-align: center;
    color: var(--white);
}

.offer-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.offer-card-header h3 {
    font-size: 1.7em;
    font-weight: 800;
    margin: 0;
}

.offer-card-body {
    padding: 32px 28px;
}

.offer-card-body p {
    color: var(--gray);
    margin-bottom: 18px;
}

.offer-card-body strong {
    color: var(--black);
    font-size: 1.1em;
}

.offer-card-body ul {
    list-style: none;
    margin: 20px 0;
}

.offer-card-body ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray);
}

.offer-card-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.offer-price {
    font-size: 1.4em;
    font-weight: 800;
    color: var(--orange);
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.benefit-item {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3.5em;
    font-weight: 900;
    color: rgba(233,78,26,0.1);
    line-height: 1;
}

.benefit-item h3 {
    font-size: 1.6em;
    margin-bottom: 18px;
    color: var(--black);
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.benefit-item p {
    color: var(--gray);
    line-height: 1.8;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    padding: 30px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-box {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.contact-box h3 {
    font-size: 2em;
    margin-bottom: 35px;
    color: var(--black);
    font-weight: 800;
}

.contact-row {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-row:last-of-type {
    border-bottom: none;
}

.contact-label {
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
    font-size: 1.05em;
}

.contact-value {
    color: var(--gray);
    line-height: 1.7;
}

.contact-value a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-value a:hover {
    color: var(--orange);
}

.contact-cta-box p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(233,78,26,0.08) 0%, rgba(255,107,56,0.08) 100%);
    padding: 22px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.contact-info-box strong {
    display: block;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.contact-info-box p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95em;
}

/* Footer */
.footer {
    background: var(--dark);
    color: #cccccc;
    padding: 80px 40px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.4em;
    font-weight: 800;
}

.footer-section p {
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999999;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 3em;
    }

    .section-title {
        font-size: 2.6em;
    }

    .slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav li {
        border-bottom: 1px solid var(--light-gray);
    }

    .nav a {
        display: block;
        padding: 15px 30px;
    }

    .header-right {
        display: none;
    }

    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-phone-btn {
        color: var(--black);
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;
        white-space: nowrap;
        transition: all 0.3s;
        padding: 8px 12px;
        border-radius: 6px;
        background: var(--light-gray);
    }

    .mobile-phone-btn:hover {
        background: var(--orange);
        color: var(--white);
    }

    .mobile-toggle {
        display: flex;
    }

    .logo img {
        height: 60px;
    }

    .hero {
        padding: 70px 20px;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .hero-image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .slide {
        min-width: 100%;
    }

    .section {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 2em;
    }

    .stats-mini {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .benefits-grid,
    .portfolio-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .container {
        padding: 0 20px;
    }

    .contact-box {
        padding: 35px 25px;
    }
}

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

.offer-card,
.benefit-item,
.portfolio-item {
    animation: slideInUp 0.6s ease-out;
}
