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

:root {
    --primary-orange: #FF6B35;
    --dark-orange: #E85A2B;
    --light-orange: #FF8C61;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --text-gray: #6C757D;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-box {
    display: flex;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.logo-letter {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.brand-text-full {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
}

.highlight-company {
    color: var(--primary-orange);
    font-weight: 800;
}

.brand-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    padding: 0.7rem 1.8rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
}

.hero-text-center {
    animation: fadeInUp 1s ease forwards;
}

.hero-slide.active .hero-text {
    animation: slideInLeft 0.8s ease forwards;
}

.hero-slide.active .hero-image {
    animation: slideInRight 0.8s ease forwards;
}

.hero-text {
    opacity: 0;
    transform: translateX(-50px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
}

.highlight-text {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 53, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    display: inline-block;
}

.primary-btn {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.primary-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-owner-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-owner {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dark-gray);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}

.cta-button:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(50px);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Hero Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    color: var(--dark-gray);
    backdrop-filter: blur(10px);
}

.hero-nav:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-dot:hover {
    background: rgba(255, 107, 53, 0.7);
    border-color: var(--primary-orange);
    transform: scale(1.3);
}

.hero-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.5);
}

/* Carousel Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Crafting Beautiful Spaces Section */
.crafting-spaces {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
    overflow: hidden;
}

.crafting-spaces::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23FF6B35" opacity="0.05"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

.crafting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.crafting-text {
    padding-right: 2rem;
}

.crafting-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.crafting-subtitle {
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 2rem;
}

.crafting-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.crafting-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.check-icon {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: bold;
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.crafting-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 107, 53, 0.2);
}

.crafting-stat {
    text-align: center;
}

.crafting-stat h3 {
    font-size: 2.8rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.crafting-stat p {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.crafting-images {
    position: relative;
}

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

.grid-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    height: 280px;
}

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

.grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

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

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    margin-bottom: 3rem;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    margin: 1rem 0;
}

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

.about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.about-image-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: var(--light-gray);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

/* Featured Services with Images */
.featured-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.featured-service-card {
    background: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.featured-service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.featured-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-service-card:hover .featured-service-image img {
    transform: scale(1.1);
}

.featured-service-content {
    padding: 2rem;
}

.featured-service-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.featured-service-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: var(--dark-orange);
    transform: translateX(5px);
}

/* Icon-based Services Grid */
.services-grid-icon {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-icon-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-orange);
}

.service-icon-box {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-card h3 {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-icon-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Projects Section */
.projects {
    padding: 5rem 0;
    background: var(--white);
}

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

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 280px;
}

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

.project-card:hover img {
    transform: scale(1.15);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-overlay p {
    font-size: 0.95rem;
    color: var(--light-orange);
}

.hidden-project {
    display: none;
}

.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    padding: 1rem 3rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.view-more-btn:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.view-more-btn.hide {
    display: none;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-orange);
}

.info-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.info-text h3 {
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-text p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.info-text a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--primary-orange);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    color: var(--text-gray);
    padding: 0.4rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-list-card {
    grid-column: span 2;
}

.map-link {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.5rem 1rem;
    background: var(--primary-orange);
    color: var(--white) !important;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form h3 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form select {
    cursor: pointer;
    color: #666;
}

.contact-form select option {
    padding: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--dark-gray);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.map-container {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-company-name {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.highlight-orange {
    color: var(--primary-orange);
    font-weight: 800;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* 3D Menu Carousel Section */
.menu-carousel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.menu-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    height: 600px;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 400px;
    height: 500px;
    margin-left: -200px;
    margin-top: -250px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    opacity: 0;
    pointer-events: none;
}

.carousel-item.active {
    opacity: 1;
    transform: translateZ(0) scale(1);
    z-index: 10;
    pointer-events: auto;
}

.carousel-item.prev {
    opacity: 0.6;
    transform: translateX(-350px) translateZ(-300px) rotateY(35deg) scale(0.85);
    z-index: 5;
    filter: brightness(0.7);
}

.carousel-item.next {
    opacity: 0.6;
    transform: translateX(350px) translateZ(-300px) rotateY(-35deg) scale(0.85);
    z-index: 5;
    filter: brightness(0.7);
}

.carousel-item.far-prev {
    opacity: 0.3;
    transform: translateX(-600px) translateZ(-500px) rotateY(45deg) scale(0.7);
    z-index: 1;
    filter: brightness(0.5);
}

.carousel-item.far-next {
    opacity: 0.3;
    transform: translateX(600px) translateZ(-500px) rotateY(-45deg) scale(0.7);
    z-index: 1;
    filter: brightness(0.5);
}

.carousel-card {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
}

.carousel-item.active .carousel-card {
    box-shadow: 
        0 30px 80px rgba(255, 107, 53, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 107, 53, 0.2);
}

.carousel-card:hover {
    transform: translateY(-10px);
}

.carousel-card img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-item.active .carousel-card:hover img {
    transform: scale(1.1);
}

.carousel-content {
    padding: 25px;
    background: linear-gradient(to top, white, rgba(255,255,255,0.95));
    position: relative;
}

.carousel-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.3;
}

.carousel-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 20;
}

.carousel-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: var(--dark-gray);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 107, 53, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-orange);
    width: 40px;
    border-radius: 6px;
    border-color: var(--primary-orange);
}

/* 3D Carousel Animations */
@keyframes carouselRotate {
    0%, 100% {
        transform: translateZ(0);
    }
    50% {
        transform: translateZ(50px);
    }
}

.carousel-item.active .carousel-card {
    animation: carouselRotate 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

    .hero-image {
        order: -1;
    }

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

    .hero-stats {
        gap: 2rem;
    }

    .hero-nav {
        width: 50px;
        height: 50px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .hero-image img {
        height: 350px;
    }

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

    .crafting-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .crafting-text {
        padding-right: 0;
    }

    .crafting-title {
        font-size: 2.2rem;
    }

    .crafting-subtitle {
        font-size: 1.5rem;
    }

    .crafting-stats {
        gap: 2rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .grid-item {
        height: 250px;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-title-large {
        font-size: 2.2rem;
    }

    .hero-subtitle-large {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }

    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero-slide {
        padding: 100px 0 80px 0;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .crafting-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .crafting-stat h3 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

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

    .brand-text {
        font-size: 1.2rem;
    }

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

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

    .stat-item h3 {
        font-size: 2rem;
    }
    
    /* Carousel responsive */
    .carousel-container {
        height: 500px;
    }
    
    .carousel-item {
        width: 320px;
        height: 420px;
        margin-left: -160px;
        margin-top: -210px;
    }
    
    .carousel-item.prev,
    .carousel-item.next {
        transform: translateX(-280px) translateZ(-250px) rotateY(25deg) scale(0.75);
    }
    
    .carousel-item.next {
        transform: translateX(280px) translateZ(-250px) rotateY(-25deg) scale(0.75);
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-image img {
        height: 250px;
    }

    .hero-nav {
        width: 45px;
        height: 45px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

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

    .logo-letter {
        font-size: 1rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Carousel mobile */
    .carousel-container {
        height: 450px;
    }
    
    .carousel-item {
        width: 280px;
        height: 380px;
        margin-left: -140px;
        margin-top: -190px;
    }
    
    .carousel-item.prev,
    .carousel-item.next {
        opacity: 0.3;
        transform: translateX(-200px) translateZ(-200px) scale(0.6);
    }
    
    .carousel-item.next {
        transform: translateX(200px) translateZ(-200px) scale(0.6);
    }
    
    .carousel-item.far-prev,
    .carousel-item.far-next {
        opacity: 0;
        display: none;
    }
    
    .carousel-controls {
        padding: 0 10px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-content h3 {
        font-size: 1.2rem;
    }
    
    .carousel-content p {
        font-size: 0.85rem;
    }
}
