:root {
    --primary: #FF6B35;
    --primary-dark: #E85A2D;
    --dark: #1A1A1A;
    --darker: #0F0F0F;
    --gray: #2D2D2D;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --text-muted: #888888;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    filter: drop-shadow(0 4px 8px rgba(255,107,53,0.3));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    letter-spacing: 2px;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

/* Split Hero */
.hero-split {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--darker);
}

.diagonal-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,107,53,0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    width: fit-content;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title .line1,
.hero-title .line2 {
    display: block;
    font-size: 5rem;
    line-height: 0.9;
}

.hero-title .line2 {
    color: var(--primary);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

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

.hero-stats-row .stat {
    display: flex;
    flex-direction: column;
}

.hero-stats-row .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}

.hero-stats-row .stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-right {
    display: flex;
    align-items: center;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 500px;
}

.img-large {
    grid-row: 1;
    grid-column: 1 / -1;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.img-small {
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

/* Trust Bar */
.trust-bar {
    background: var(--primary);
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.5rem;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

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

.section-title {
    font-size: 3.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--light);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover * {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary);
}

.service-card.featured {
    background: var(--dark);
    color: var(--white);
}

.service-card.featured::before {
    background: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card:hover p {
    color: rgba(255,255,255,0.9);
}

.link-arrow {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .link-arrow {
    color: var(--white);
}

/* Featured Project */
.featured-project {
    background: var(--dark);
    padding: 0;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.project-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.project-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-label {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.project-info h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.project-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.project-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.project-stats div {
    color: var(--text-muted);
}

.project-stats strong {
    color: var(--primary);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    display: block;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
    background: var(--white);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 2rem;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.portfolio-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--light);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary);
    background: var(--light);
    display: inline-block;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: var(--dark);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray);
    padding: 2rem;
    border-top: 3px solid var(--primary);
}

.testimonial-card.featured {
    background: var(--primary);
    transform: translateY(-20px);
}

.testimonial-card.featured .stars,
.testimonial-card.featured p,
.testimonial-card.featured .client strong,
.testimonial-card.featured .client span {
    color: var(--white);
}

.stars {
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client strong {
    color: var(--white);
    display: block;
}

.client span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: var(--light);
}

.cta-box {
    background: var(--primary);
    padding: 4rem;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-box .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.cta-box .btn-primary:hover {
    background: var(--dark);
    color: var(--white);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item span:first-child {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item span:last-child {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
}

.contact-form {
    background: var(--light);
    padding: 2.5rem;
}

.contact-form h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-control,
.form-select {
    border: none;
    border-radius: 0;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 2px var(--primary);
    border: none;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    display: block;
    letter-spacing: 2px;
}

.footer-brand span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .diagonal-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.5;
    }
    
    .hero-right {
        display: none;
    }
    
    .project-content {
        grid-template-columns: 1fr;
    }
    
    .portfolio-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .hero-title .line1,
    .hero-title .line2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .portfolio-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats-row {
        gap: 2rem;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    padding: 150px 0 80px;
    margin-top: 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5" x="0" y="0" width="100" height="100"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.page-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    background: transparent;
    position: relative;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--light) !important;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,107,53,0.3);
}

.experience-badge .years {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
}

.story-content {
    padding-left: 40px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.story-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-features {
    margin-top: 30px;
}

.story-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.story-features .feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-card .icon i {
    color: white;
    font-size: 1.8rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.why-choose-us .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card .icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 991px) {
    .story-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .experience-badge {
        right: 20px;
        bottom: -10px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}