/*
 Theme Name:   My Child Theme
 Theme URI:    http://example.com/
 Description:  A child theme of Parent Theme
 Author:       Your Name
 Template:     parent-theme-folder-name
 Version:      1.0.0
*/

/* Your custom CSS goes below here */
/* Container Structure */
.landor-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
}

/* Header / Title Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #000000;
}

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

/* Two-Column Grid Setup */
.content-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.image-box {
    flex: 1.1;
}

.image-box img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.text-box {
    flex: 0.9;
    padding-top: 10px;
}

/* Description Typography */
.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 25px;
}

/* Link with underline accent */
.cta-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid #d4df28; /* Highlight accent yellow */
    padding-bottom: 2px;
    margin-bottom: 35px;
    transition: opacity 0.2s;
}

.cta-link:hover {
    opacity: 0.8;
}

/* Divider Line */
.divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin-bottom: 30px;
}

/* Middle Footer Context Area */
.contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.question-text {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.phone-icon {
    background-color: #000000;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pill CTA Button styling */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #F7BF55; /* Accent yellow color from mockup */
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    transition: background-color 0.2s ease;
}

.learn-more-btn:hover {
    background-color: #c2cc24;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #000000;
    border-radius: 50%;
}

/* Responsive Breakdown for Tablets and Mobile */
@media (max-width: 900px) {
    .content-grid {
        flex-direction: column;
    }
    
    .image-box, .text-box {
        width: 100%;
        flex: none;
    }

    .section-header h1 {
        font-size: 1.9rem;
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Header Section styling */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.section-header h2 {
    color: #f27043;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-header .subtitle {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.section-header .description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Carousel Container setup */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

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

/* Project Card layout mirroring the screenshot */
.project-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 0 0 calc(33.333% - 13.33px); /* Default 3 cards per row minus layout gap */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Badges positioned top right */
.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #f27043;
    color: #fff;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    border-bottom-left-radius: 4px;
}

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

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    min-height: 55px;
	margin-top:10px;
}

.project-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
}

.project-title .sub-title {
    font-size: 0.75rem;
    color: #666;
}

.project-status {
    text-align: right;
    font-size: 0.8rem;
    color: #f27043;
    line-height: 1.3;
}

.project-status .location {
    color: #777;
}

.card-pricing {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.card-pricing .size {
    font-size: 0.85rem;
    color: #888;
}

.card-pricing .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    text-align: right;
    line-height: 1.1;
}

.card-pricing .price small {
    font-size: 0.75rem;
    color: #666;
    font-weight: normal;
}

.know-more-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #555;
}

.know-more-btn:hover {
    background: #f27043;
    color: #fff;
    border-color: #f27043;
}

/* Image container styling */
.card-image-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.project-card:hover .card-image-box img {
    transform: scale(1.04);
}

/* Carousel Navigation Arrows */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #555;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #f27043;
    color: white;
    border-color: #f27043;
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

/* Bottom See More Button styling */
.see-more-container {
    text-align: center;
    margin-top: 40px;
}

.see-more-btn {
    background-color: #f27043;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(242, 112, 67, 0.2);
    transition: background-color 0.2s ease;
}

.see-more-btn:hover {
    background-color: #d6592d;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .project-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
    }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
}

@media (max-width: 600px) {
    .project-card {
        flex: 0 0 100%; /* 1 card on mobile */
    }
    .nav-btn {
        width: 35px;
        height: 35px;
    }
    .prev-btn { left: -5px; }
    .next-btn { right: -5px; }
}
/* Decorative Divider between sections */
.section-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    max-width: 1200px;
    margin: 40px auto;
}

/* ====================================
   HAPPY CUSTOMER GALLERY CAROUSEL
   ==================================== */
.gallery-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.gallery-card {
    background: #000;
    border-radius: 6px;
    flex: 0 0 calc(33.333% - 13.33px); /* 3 boxes on desktop */
    position: relative;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Overlay that displays info cleanly on hover */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 20px;
    color: #fff;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
    opacity: 0.75;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.customer-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.customer-loc {
    font-size: 0.8rem;
    color: #f27043;
    font-weight: 600;
}

/* Specific button placements for gallery */
.prev-gallery { left: -25px; }
.next-gallery { right: -25px; }


/* ====================================
   OUR VIDEO GRID SECTION
   ==================================== */
.video-section {
    padding: 60px 20px;
    background-color: #f4f6f8;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Clean 3-column desktop layout */
    gap: 25px;
    margin-top: 20px;
}

.video-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: #111;
    overflow: hidden;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

/* Traditional circular video play overlay button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f27043;
    color: #ffffff;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px; /* Realignment fix for the visual weight of standard play arrows */
    box-shadow: 0 4px 15px rgba(242, 112, 67, 0.4);
    transition: all 0.2s ease;
}

.video-card:hover .play-btn {
    background: #d6592d;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 8px;
    font-weight: 700;
}

.video-info p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}


/* ====================================
   RESPONSIVE LAYOUT UPDATES
   ==================================== */
@media (max-width: 992px) {
    .gallery-card {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet view ports */
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 videos per row */
    }
}

@media (max-width: 600px) {
    .gallery-card {
        flex: 0 0 100%; /* 1 item mobile */
    }
    .video-grid {
        grid-template-columns: 1fr; /* Stacked vertical list cards */
    }
    .prev-gallery { left: -5px; }
    .next-gallery { right: -5px; }
}