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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation - Template Style */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255,71,26,0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 105px !important;
    width: auto !important;
    transition: all 0.3s ease;
}

nav.scrolled .logo-img {
    height: 35px !important;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #ff471a;
}

.nav-cta {
    padding: 12px 28px;
    background: #ff471a;
    color: #fff !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #ff5a2e;
    transform: translateY(-2px);
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 60px 100px;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-bg-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.15), transparent);
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-bg-circle:nth-child(1) {
    top: -200px;
    right: -100px;
}

.hero-bg-circle:nth-child(2) {
    bottom: -200px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-intro {
    font-size: clamp(70px, 12vw, 140px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: -3px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
    font-family: 'Playfair Display', sans-serif;
}

.hero-intro span {
    display: inline-block;
    margin: 0 15px;
}

.hero-intro .small-text {
    font-size: clamp(30px, 4vw, 50px);
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.hero-intro .name {
    color: #ff471a;
    font-weight: 300; /* Slightly heavier for emphasis */
    position: relative;
}

.hero-label {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.2s;
    font-family: 'Playfair Display', sans-serif;
}

.hero-intro .role {
     font-weight: 300; /* Light weight for emphasis */
}

/* Main Title (BNW Capital) */
.hero-title-main {
    font-size: clamp(70px, 12vw, 140px);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 50px;
    letter-spacing: -3px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
    font-family: 'Playfair Display', sans-serif;
}

.hero-title-main .name {
    color: #ff471a;
    font-weight: 400;
}

/* Subtitle/Description */
.hero-subtitle {
    font-size: clamp(28px, 4.5vw, 56px);
    font-weight: 200;
    line-height: 1.4;
    max-width: 1200px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

.hero-subtitle .small-text {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 200;
    color: rgba(255,255,255,0.9);
}

.hero-subtitle .role {
    font-weight: 300;
}

.hero-subtitle .highlight {
    color: #ff471a;
    font-weight: 300;
}

.hero-subtitle span {
    display: inline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-label {
        font-size: 12px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .hero-title-main {
        font-size: clamp(48px, 12vw, 80px);
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: clamp(20px, 6vw, 32px);
    }

    .hero-subtitle .small-text {
        font-size: clamp(18px, 5vw, 28px);
    }
}

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

/* Marquee Section */
.marquee-section {
    padding: 50px 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    padding: 0 40px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: lowercase;
}

/* Label Section */
.label-section {
    padding: 100px 0;
    text-align: center;
}

.section-number {
    font-size: 18px;
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.section-title-large {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -2px;
    margin-bottom: 60px;
}

.section-title-large strong {
    font-weight: 700;
}

/* Image Grid - Carousel Style */
.image-grid-section {
    padding: 80px 60px;
    background: #0a0a0a;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.grid-item {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.grid-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.grid-item:hover::after {
    opacity: 1;
}

/* Services Section - Template Style */
.services-section {
    padding: 100px 60px;
    background: #0a0a0a;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #FFA726);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-10px);
    background: #111;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,167,38,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    transform: scale(1.1) rotate(10deg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-price {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.price-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
}

/* About Section */
.about-section {
    padding: 120px 60px;
    background: linear-gradient(180deg, #0a0a0a, #0f0f0f);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -2px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

.about-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

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

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,71,26,0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover::after {
    opacity: 1;
}

/* Process Section */
.process-section {
    padding: 120px 60px;
    background: #0a0a0a;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    font-size: 72px;
    font-weight: 700;
    color: rgba(255,107,53,0.3);
    margin-bottom: 20px;
    line-height: 1;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-description {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 100px 60px;
    background: #050505;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.stat-item.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 60px;
    background: linear-gradient(180deg, #0a0a0a, #0f0f0f);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* CTA Section */
.cta-section {
    padding: 150px 60px;
    background: #0a0a0a;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 50px;
}

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

.btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: #FF6B35;
    color: #fff;
}

.btn-primary:hover {
    background: #ff8c61;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    border-color: #FF6B35;
    color: #FF6B35;
}

/* Footer */
footer {
    padding: 80px 60px 40px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-size: 15px;
}


.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* Portfolio Showcase Grid */
.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto 80px;
}

.portfolio-showcase-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff471a, #ff6b35);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.portfolio-showcase-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-showcase-card:hover {
    background: linear-gradient(135deg, rgba(255,71,26,0.1), rgba(255,71,26,0.05));
    border-color: rgba(255,71,26,0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255,71,26,0.2);
}

.portfolio-showcase-card:hover::before {
    transform: scaleX(1);
}


.portfolio-showcase-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

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

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

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

.portfolio-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,71,26,0.95) 0%, rgba(10,10,10,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-showcase-item:hover .portfolio-showcase-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff471a;
    margin-bottom: 20px;
    font-weight: 700;
    display: block;
}

.portfolio-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.portfolio-showcase-card:hover .portfolio-name {
    color: #ff471a;
}

.portfolio-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: auto;
    flex-grow: 1;
}

.portfolio-return {
    font-size: 28px;
    font-weight: 700;
    color: #ff471a;
    margin-top: 25px;
    display: block;
    letter-spacing: -1px;
}

.portfolio-showcase-card:hover .portfolio-return {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-showcase-card {
        padding: 35px 25px;
    }
}

/* Consultation Form */
.consultation-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff471a;
    background: rgba(255,255,255,0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
    padding: 18px;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255,71,26,0.1);
    border-radius: 20px;
    border: 1px solid rgba(255,71,26,0.3);
}

.form-success h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #ff471a;
}

.form-success p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 1200px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .image-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav,
    .hero-section,
    .image-grid-section,
    .services-section,
    .about-section,
    .process-section,
    .stats-section,
    .testimonials-section,
    .cta-section,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .logo-img {
        height: 32px !important;
    }
    
    nav.scrolled .logo-img {
        height: 28px !important;
    }

    .nav-links {
        display: none;
    }

    .image-grid,
    .services-grid,
    .process-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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