/*
 * Lukumanu.com Exact Copy Styles
 * Coral/Peach color scheme with exact layout matching
 */

/* Color Variables */
:root {
    --coral-primary: #E8A67A;
    --coral-dark: #D4956B;
    --coral-light: #F2B993;
    --text-dark: #2C2C2C;
    --text-light: #FFFFFF;
    --background-light: #F8F5F1;
    --background-white: #FFFFFF;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-white);
}

/* Hero Section */
.lukumanu-hero {
    background: linear-gradient(to bottom, #E9D5C8 0%, #E9D5C8 60%, #D4956B 60%, #D4956B 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
    width: 100%;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 80px;
    color: var(--text-dark);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Carousel - Horizontal Scrolling */
.hero-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 100%;
    margin-top: -4rem;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

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

.hero-carousel-track-container {
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.hero-carousel-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.hero-carousel-item {
    flex: 0 0 auto;
    width: 18%;
    min-width: 160px;
    max-width: 200px;
}

.hero-image-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    font-size: 0;
    color: white;
    font-weight: 600;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    border-radius: 20px;
}

.hero-carousel-item:hover .hero-image-placeholder {
    transform: scale(1.03);
}

.hero-img-1,
.hero-img-2,
.hero-img-3,
.hero-img-4,
.hero-img-5 {
    background-color: #4a5568;
    background-blend-mode: overlay;
}

.hero-img-1 {
    background-color: #2d3748;
}

.hero-img-2 {
    background-color: #4a5568;
}

.hero-img-3 {
    background-color: #1a202c;
}

.hero-img-4 {
    background-color: #2c5282;
}

.hero-img-5 {
    background-color: #553c9a;
}

/* Get Started Section */
.lukumanu-get-started {
    background: #D4956B;
    padding: 80px 20px;
    text-align: center;
}

.get-started-container {
    max-width: 900px;
    margin: 0 auto;
}

.get-started-tagline {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.get-started-button {
    display: inline-block;
    background: #6B3D2E;
    color: var(--text-light);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

.get-started-button:hover {
    background: #5a2f23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.get-started-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social-proof-circles {
    display: flex;
    align-items: center;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #D4956B;
    display: inline-block;
    margin-left: -15px;
}

.circle:first-child {
    margin-left: 0;
}

.circle-orange {
    background: #E87722;
    z-index: 3;
}

.circle-blue {
    background: #3B82F6;
    z-index: 2;
}

.circle-green {
    background: #10B981;
    z-index: 1;
}

.social-proof-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* About Section */
.lukumanu-about {
    background: #D4956B;
    padding: 80px 3rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

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

.about-layout {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
}

.about-heading {
    position: absolute;
    left: -3rem;
    top: calc(50% - 10rem);
    transform: translateY(-50%);
    z-index: 2;
}

.about-title-small {
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: -10px;
}

.about-title-main {
    font-size: 3.5rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.about-image {
    margin-left: auto;
}

.about-portrait {
    width: 400px;
    height: 540px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
    color: var(--text-light);
}

/* Journey Section */
.lukumanu-journey {
    background-color: var(--background-light);
    background-image: url('https://lukumanu.com/wp-content/uploads/2025/10/bgs.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding: 0;
    min-height: 1000px;
    width: 100%;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.journey-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coral-dark);
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: var(--coral-primary);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-year {
    background: var(--coral-primary);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.timeline-photo {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    background-size: cover;
    background-position: center;
}

.timeline-photo-1 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), var(--coral-dark);
}

.timeline-photo-2 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), var(--coral-primary);
}

.timeline-photo-3 {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1)), var(--coral-light);
}

.timeline-content {
    max-width: 250px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.journey-cta {
    text-align: center;
}

.journey-button {
    display: inline-block;
    background: #E9D5C8;
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.journey-button:hover {
    background: #5a2f23;
    transform: translateY(-2px);
}

/* Services Section */
.lukumanu-services {
    background: #D4956B;
    padding: 80px 3rem;
}

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

.services-title {
    text-align: center;
    font-size: 3rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 60px;
}

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

.service-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card-image {
    width: 100%;
    height: 432px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-radius: 1rem 1rem 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.service-card-content {
    padding: 1rem;
    text-align: center;
    background: var(--background-white);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-button {
    display: inline-block;
    background: #6B3D2E;
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card-button:hover {
    background: #5a2f23;
    transform: translateY(-2px);
}

/* Trusted By Section */
.lukumanu-trusted {
    background: #6B3D2E;
    padding: 80px 3rem;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.trusted-title {
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 60px;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    align-items: center;
}

.logo-placeholder {
    background: transparent;
    padding: 20px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 104px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-item:hover {
    transform: scale(1.05);
}

/* My Work Section */
.lukumanu-work {
    background: #F8F5F1;
    padding: 80px 3rem;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.work-title {
    font-size: 3rem;
    color: #6B3D2E;
    font-weight: 700;
    margin-bottom: 60px;
}

.work-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.work-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.work-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.work-carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.work-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.work-card {
    flex: 0 0 calc(33.333% - 14px);
    background: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.work-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.work-card-content {
    padding: 25px 20px;
    text-align: center;
    background: var(--background-white);
}

.work-card-content h3 {
    font-size: 1.3rem;
    color: #6B3D2E;
    font-weight: 600;
    margin: 0;
}

/* Testimonials Section */
.lukumanu-testimonials {
    background: #6B3D2E;
    padding: 80px 3rem;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    font-size: 3rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.testimonials-track-container {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(50% - 15px);
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.3rem;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #E8A67A;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 700;
    margin: 0 0 5px 0;
}

.author-info span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

/* Blog Section */
.lukumanu-blog {
    background: #D4956B;
    padding: 80px 3rem;
}

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

.blog-title {
    text-align: center;
    font-size: 3rem;
    color: #6B3D2E;
    font-weight: 700;
    margin-bottom: 60px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.blog-post-item {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    background: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-item:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.blog-post-date,
.blog-post-category {
    display: inline-block;
}

.blog-post-category {
    color: #6B3D2E;
    font-weight: 600;
}

.blog-post-content h3 {
    font-size: 1.8rem;
    color: #6B3D2E;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-content h3 a {
    color: #6B3D2E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-content h3 a:hover {
    color: #5a2f23;
}

.blog-post-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-block;
    color: #6B3D2E;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.blog-read-more::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #5a2f23;
}

.blog-read-more:hover::after {
    transform: translateX(5px);
}

.blog-view-all {
    text-align: center;
    margin-top: 40px;
}

.blog-view-all-link {
    display: inline-block;
    background: #6B3D2E;
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.blog-view-all-link:hover {
    background: #5a2f23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Blog Archive Header */
.blog-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Blog Pagination */
.blog-pagination {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: var(--background-white);
    color: #6B3D2E;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.blog-pagination .page-numbers:hover {
    background: #6B3D2E;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.blog-pagination .page-numbers.current {
    background: #6B3D2E;
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.blog-pagination .page-numbers.dots {
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}

/* Blog Page Main and Archive additional spacing */
.blog-page-main,
.blog-page-archive {
    min-height: 60vh;
}

/* Blog Section Responsive */
@media (max-width: 1024px) {
    .blog-post-item {
        grid-template-columns: 300px 1fr;
    }

    .blog-post-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-post-item {
        grid-template-columns: 1fr;
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-post-content {
        padding: 30px;
    }

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

    .blog-post-content h3 {
        font-size: 1.3rem;
    }

    .blog-pagination .page-numbers {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

/* Newsletter Section */
.lukumanu-newsletter {
    background: var(--background-white);
    padding: 80px 0;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.newsletter-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--coral-primary);
}

.newsletter-form button {
    background: #6B3D2E;
    color: var(--text-light);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #5a2f23;
    transform: translateY(-2px);
}

/* Final CTA Section */
.lukumanu-final-cta {
    background: #6B3D2E;
    padding: 80px 3rem;
}

.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-left h1 {
    font-size: 3rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 30px;
}

.final-cta-button {
    display: inline-block;
    background: #D4956B;
    color: var(--text-light);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-cta-button:hover {
    background: #5a2f23;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    aspect-ratio: 2 / 1.2;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-right {
    color: var(--text-light);
}

.cta-right p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-right h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 30px 0 10px;
    color: var(--text-light);
}

.contact-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container,
    .about-container,
    .services-container,
    .trusted-container,
    .work-container,
    .testimonials-container,
    .blog-container,
    .final-cta-container {
        padding: 0 2rem;
    }

    .hero-main-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .about-portrait {
        width: 350px;
        height: 490px;
    }

    .about-title-small,
    .about-title-main {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card-image {
        height: 380px;
    }

    .trusted-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 15px;
    }
}

@media (max-width: 1024px) {
    .hero-container,
    .about-container,
    .services-container,
    .trusted-container,
    .work-container,
    .testimonials-container,
    .blog-container,
    .final-cta-container {
        padding: 0 1.5rem;
    }

    .lukumanu-hero,
    .lukumanu-get-started,
    .lukumanu-about,
    .lukumanu-services,
    .lukumanu-trusted,
    .lukumanu-work,
    .lukumanu-testimonials,
    .lukumanu-blog,
    .lukumanu-final-cta {
        padding: 60px 1.5rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }

    .hero-carousel-item {
        min-width: 200px;
        max-width: 260px;
    }

    .hero-image-placeholder {
        height: 260px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-layout {
        flex-direction: column;
        align-items: center;
    }

    .about-heading {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        margin-bottom: 30px;
    }

    .about-portrait {
        width: 320px;
        height: 440px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card-image {
        height: 350px;
    }

    /* Trusted Logos */
    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 15px;
    }

    /* Final CTA */
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(60% - 15px);
    }

    /* Work Carousel */
    .work-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .hero-container,
    .about-container,
    .services-container,
    .trusted-container,
    .work-container,
    .testimonials-container,
    .blog-container,
    .final-cta-container {
        padding: 0 1rem;
    }

    .lukumanu-hero,
    .lukumanu-get-started,
    .lukumanu-about,
    .lukumanu-services,
    .lukumanu-trusted,
    .lukumanu-work,
    .lukumanu-testimonials,
    .lukumanu-blog,
    .lukumanu-final-cta {
        padding: 50px 1rem;
    }

    /* Hero Section - Mobile Spacing Adjustments */
    .lukumanu-hero {
        padding-top: 30px;
        min-height: 56vh;
        padding-bottom: 56px;
    }

    .hero-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .hero-carousel-wrapper {
        margin-top: 0;
    }

    /* Get Started Section - Mobile Spacing Adjustments */
    .lukumanu-get-started {
        padding-top: 40px;
    }

    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-carousel-wrapper {
        gap: 10px;
    }

    .hero-carousel-item {
        min-width: 160px;
        max-width: 200px;
    }

    .hero-image-placeholder {
        height: 220px;
    }

    /* Get Started */
    .get-started-tagline {
        font-size: 1.2rem;
    }

    .get-started-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .social-proof-circles {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-proof-text {
        font-size: 1rem;
        text-align: center;
    }

    /* About Section */
    .about-title-small,
    .about-title-main {
        font-size: 2.5rem;
    }

    .about-portrait {
        width: 280px;
        height: 380px;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Services */
    .services-title {
        font-size: 2.2rem;
    }

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

    .service-card-image {
        height: 300px;
    }

    .service-card-content h3 {
        font-size: 1.3rem;
    }

    .service-card-content p {
        font-size: 0.95rem;
    }

    /* Journey Section */
    .lukumanu-journey {
        min-height: 25vh;
        padding: 50px 1rem;
        background-color: #E8D4C7;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }

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

    .journey-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .journey-timeline::before {
        display: none;
    }

    .timeline-photo {
        width: 120px;
        height: 120px;
    }

    /* Trusted Logos */
    .trusted-title {
        font-size: 2rem;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
    }

    /* Work Section */
    .work-title {
        font-size: 2.2rem;
    }

    .work-carousel-wrapper {
        gap: 10px;
    }

    .work-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .work-card {
        flex: 0 0 calc(80% - 10px);
    }

    .work-card-image {
        height: 250px;
    }

    /* Testimonials */
    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonials-carousel-wrapper {
        gap: 10px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .testimonial-card {
        flex: 0 0 calc(90% - 15px);
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .author-info h5 {
        font-size: 1rem;
    }

    .author-info span {
        font-size: 0.85rem;
    }

    /* Blog Section */
    .blog-title {
        font-size: 2.2rem;
    }

    /* Newsletter */
    .newsletter-title {
        font-size: 2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        max-width: 400px;
    }

    /* Final CTA */
    .lukumanu-final-cta {
        padding: 50px 2rem;
    }

    .cta-left h1 {
        font-size: 2.2rem;
    }

    .cta-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        width: calc(100% - 1rem);
    }

    .cta-right {
        padding-right: 3rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .about-container,
    .services-container,
    .trusted-container,
    .work-container,
    .testimonials-container,
    .blog-container,
    .final-cta-container {
        padding: 0 0.75rem;
    }

    .lukumanu-hero,
    .lukumanu-get-started,
    .lukumanu-about,
    .lukumanu-services,
    .lukumanu-trusted,
    .lukumanu-work,
    .lukumanu-testimonials,
    .lukumanu-blog,
    .lukumanu-final-cta {
        padding: 40px 0.75rem;
    }

    /* Hero Section */
    .hero-main-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-carousel-wrapper {
        gap: 8px;
    }

    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .hero-carousel-track {
        gap: 8px;
    }

    .hero-carousel-item {
        min-width: 140px;
        max-width: 180px;
    }

    .hero-image-placeholder {
        height: 200px;
    }

    /* Get Started */
    .get-started-tagline {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .get-started-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .social-proof-circles .circle {
        width: 40px;
        height: 40px;
    }

    .social-proof-text {
        font-size: 0.9rem;
    }

    /* About Section */
    .about-title-small,
    .about-title-main {
        font-size: 2rem;
    }

    .about-portrait {
        width: 240px;
        height: 320px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Services */
    .services-title {
        font-size: 1.8rem;
    }

    .service-card-image {
        height: 250px;
    }

    .service-card-content {
        padding: 0.75rem;
    }

    .service-card-content h3 {
        font-size: 1.2rem;
    }

    .service-card-content p {
        font-size: 0.9rem;
    }

    .service-card-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Journey Section */
    .journey-title {
        font-size: 1.7rem;
    }

    .timeline-year {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .timeline-photo {
        width: 100px;
        height: 100px;
    }

    .timeline-content {
        font-size: 0.9rem;
    }

    /* Trusted Logos */
    .trusted-title {
        font-size: 1.8rem;
    }

    .trusted-logos {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    /* Work Section */
    .work-title {
        font-size: 1.8rem;
    }

    .work-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .work-card {
        flex: 0 0 calc(95% - 8px);
    }

    .work-card-image {
        height: 220px;
    }

    .work-card-content {
        padding: 20px 15px;
    }

    .work-card-content h3 {
        font-size: 1.2rem;
    }

    /* Testimonials */
    .testimonials-title {
        font-size: 1.8rem;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .testimonial-card {
        flex: 0 0 calc(95% - 10px);
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .author-info h5 {
        font-size: 0.95rem;
    }

    .author-info span {
        font-size: 0.8rem;
    }

    /* Blog Section */
    .blog-title {
        font-size: 1.8rem;
    }

    .blog-post-content h3 {
        font-size: 1.2rem;
    }

    .blog-post-excerpt {
        font-size: 0.9rem;
    }

    .blog-view-all-link {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Newsletter */
    .newsletter-title {
        font-size: 1.7rem;
    }

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

    .newsletter-form input,
    .newsletter-form button {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    /* Final CTA */
    .cta-left h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .final-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .cta-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gallery-item {
        aspect-ratio: 16 / 9;
    }

    .cta-right p,
    .cta-right h3 {
        font-size: 0.95rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}
/* Single Post Page */
.lukumanu-single-post {
    background: #D4956B;
    padding: 80px 3rem;
    min-height: 70vh;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
}

.single-post-article {
    background: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Post Header */
.single-post-header {
    padding: 50px 60px 30px;
    border-bottom: 1px solid #eee;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meta-separator {
    color: #ddd;
}

.single-post-date {
    color: #999;
}

.single-post-category {
    color: #6B3D2E;
    font-weight: 600;
}

.single-post-author a {
    color: #6B3D2E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.single-post-author a:hover {
    color: #5a2f23;
}

.single-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #6B3D2E;
    margin: 0;
}

/* Featured Image */
.single-post-thumbnail {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
}

.single-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Post Content */
.single-post-content {
    padding: 50px 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.single-post-content p {
    margin-bottom: 1.5em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: #6B3D2E;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

.single-post-content h4 {
    font-size: 1.25rem;
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.single-post-content li {
    margin-bottom: 0.5em;
}

.single-post-content a {
    color: #6B3D2E;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-post-content a:hover {
    color: #5a2f23;
}

.single-post-content blockquote {
    border-left: 4px solid #E8A67A;
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: #666;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.page-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-links-title {
    font-weight: 600;
    color: #6B3D2E;
    margin-right: 10px;
}

.page-links span {
    display: inline-block;
    padding: 8px 15px;
    background: #f5f5f5;
    color: #6B3D2E;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-links a span {
    background: #6B3D2E;
    color: white;
}

.page-links a span:hover {
    background: #5a2f23;
    transform: translateY(-2px);
}

/* Post Footer */
.single-post-footer {
    padding: 30px 60px 50px;
    border-top: 1px solid #eee;
}

.single-post-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-label {
    font-weight: 600;
    color: #6B3D2E;
}

.single-post-tags a {
    display: inline-block;
    padding: 6px 15px;
    background: #f5f5f5;
    color: #6B3D2E;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.single-post-tags a:hover {
    background: #6B3D2E;
    color: white;
    transform: translateY(-2px);
}

/* Post Navigation */
.single-post-navigation {
    margin: 40px 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 30px;
}

.single-post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-previous,
.nav-next {
    display: block;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 20px;
    background: var(--background-white);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-previous a:hover,
.nav-next a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: #6B3D2E;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Comments Section */
.single-post-comments {
    background: var(--background-white);
    border-radius: 15px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.single-post-comments .comments-title {
    font-size: 2rem;
    color: #6B3D2E;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Responsive Single Post */
@media (max-width: 768px) {
    .lukumanu-single-post {
        padding: 40px 20px;
    }

    .single-post-header,
    .single-post-content,
    .single-post-footer,
    .single-post-comments {
        padding: 30px 25px;
    }

    .single-post-title {
        font-size: 1.8rem;
    }

    .single-post-content {
        font-size: 1rem;
    }

    .single-post-content h2 {
        font-size: 1.5rem;
    }

    .single-post-content h3 {
        font-size: 1.25rem;
    }

    .single-post-navigation .nav-links {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }
}
