/*
* Prahnah Housing - Custom Styles
* Theme: Building Dreams, Creating Homes
* Author: Developer
* Version: 1.0
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    /* Brand Colors */
    --primary-color: #5F7161;      /* Olive Green (Dark) */
    --secondary-color: #6D8B74;    /* Olive Green (Medium) */
    --tertiary-color: #8B9D77;     /* Olive Green (Light) */
    --accent-color: #D1B000;       /* Golden */
    --gold-light: #F0E68C;         /* Light Gold */
    --dark-color: #1E1E1E;         /* Black */
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

section {
    position: relative;
    padding: 0;
}

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

.section-title {
    margin-bottom: 50px;
}

.section-title .subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
}

.section-title p {
    font-size: 18px;
    color: var(--gray-medium);
}

.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

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

.btn-primary:hover, 
.btn-primary:focus {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover, 
.btn-secondary:focus {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

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

.img-fluid {
    max-width: 100%;
    height: auto;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--accent-color) !important;
}

.placeholder-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--white);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--primary-color);
    border-top-color: var(--white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--primary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.back-to-top i {
    font-size: 18px;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--white);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#mainNav {
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
    background-color: rgba(0, 0, 0, 0.7);
}

#mainNav.navbar-shrink {
    padding: 15px 0;
    background-color: var(--dark-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: -15.5px 0;
}

img.brand-logo {
    height: 74px;
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-top: 2px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    padding: 10px 15px;
    font-weight: 500;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover, 
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--accent-color);
}

.navbar-dark .navbar-nav .nav-link.active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--accent-color);
}

.navbar-toggler {
    padding: 0;
    font-size: 25px;
    line-height: 1;
    color: var(--white);
    background-color: transparent;
    border: none;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 82px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.5);
}

/* Hero Carousel Styles */
#heroCarousel {
    height: 100%;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    font-size: 30px;
    opacity: 0.7;
}

#heroCarousel .carousel-control-prev {
    left: -5px;
}

#heroCarousel .carousel-control-next {
    right: -5px;
}

#heroCarousel .carousel-control-prev:hover,
#heroCarousel .carousel-control-next:hover {
    opacity: 1;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-content {
    color: var(--white);
    z-index: 1;
    position: relative;
    padding: 30px 0;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    height: 40vh;
    min-height: 300px;
    background-image: linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7));
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 82px;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.7);
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header-content h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb .breadcrumb-item {
    color: var(--white);
    font-size: 16px;
}

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

.breadcrumb .breadcrumb-item a {
    color: var(--white);
}

.breadcrumb .breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-choose-us {
    position: relative;
}

.features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    margin-right: 20px;
    font-size: 24px;
    min-width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
}

.feature-text h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.experience-box {
    background-color: var(--tertiary-color);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.years {
    margin-bottom: 30px;
}

.years span {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.years p {
    font-size: 18px;
    margin-bottom: 0;
}

.experience-content p {
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Services Highlights Section
--------------------------------------------------------------*/
.services-highlights {
    position: relative;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--accent-color);
}

.service-icon {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/*--------------------------------------------------------------
# Projects Preview Section
--------------------------------------------------------------*/
.projects-preview {
    position: relative;
}

.project-filters {
    margin-bottom: 30px;
}

.project-filters ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.project-filters li {
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    font-weight: 500;
}

.project-filters li.active, 
.project-filters li:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.project-card {
    margin-bottom: 30px;
}

.project-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    transition: var(--transition);
}

.project-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(95, 113, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.project-card:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.overlay-content h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--white);
}

.overlay-content p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    position: relative;
}

/* Featured Testimonial */
.featured-testimonial {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.featured-testimonial-alt {
    background-color: var(--white);
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), 
                      url('../img/patterns/pattern-light.svg');
    background-size: cover;
}

.testimonial-gallery .row {
    margin-right: -8px;
    margin-left: -8px;
}

.testimonial-gallery .col-6 {
    padding-right: 8px;
    padding-left: 8px;
}

.testimonial-gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.testimonial-gallery img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.testimonial-gallery a::before {
    content: "\f00e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-gallery a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.testimonial-gallery a:hover::before,
.testimonial-gallery a:hover::after {
    opacity: 1;
}

.testimonial-gallery a:hover img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 0 15px;
}

.testimonial-content .testimonial-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.testimonial-content .testimonial-text p em {
    color: var(--primary-color);
    font-weight: 500;
}

/* Standard Testimonials */
.testimonial-item {
    padding: 30px;
    text-align: center;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.testimonial-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--gray-medium);
}

.carousel-control-prev, 
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/*--------------------------------------------------------------
# Custom Villas Budget Section
--------------------------------------------------------------*/
.custom-villas {
    position: relative;
    background-color: var(--gray-light);
}

.budget-category {
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 20px;
    transition: var(--transition);
}

.budget-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.8);
}

.budget-header {
    text-align: center;
    padding-bottom: 10px;
}

.budget-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.border-bottom {
    border-bottom: 1px solid rgba(95, 113, 97, 0.2) !important;
}

.budget-gallery {
    position: relative;
}

.budget-gallery .main-image {
    margin-bottom: 15px;
    height: 300px;
    object-fit: cover;
}

.budget-gallery .col-6 img {
    height: 150px;
    object-fit: cover;
}

.budget-content {
    padding: 20px;
}

.budget-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.budget-content .lead {
    font-size: 22px;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.features-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list li i {
    margin-right: 10px;
    font-size: 16px;
    color: var(--accent-color);
}

/* Lightbox customization for budget galleries */
a[data-lightbox^="low-budget"] .overlay,
a[data-lightbox^="medium-budget"] .overlay,
a[data-lightbox^="premium-budget"] .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(95, 113, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

a[data-lightbox^="low-budget"]:hover .overlay,
a[data-lightbox^="medium-budget"]:hover .overlay,
a[data-lightbox^="premium-budget"]:hover .overlay {
    opacity: 1;
}

a[data-lightbox^="low-budget"]::before,
a[data-lightbox^="medium-budget"]::before,
a[data-lightbox^="premium-budget"]::before {
    content: "\f00e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

a[data-lightbox^="low-budget"]:hover::before,
a[data-lightbox^="medium-budget"]:hover::before,
a[data-lightbox^="premium-budget"]:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {
    .budget-gallery {
        margin-bottom: 30px;
    }
    
    .budget-content {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/
.cta {
    background-image: linear-gradient(rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 0.8));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
}

.service-content {
    padding: 30px;
}

.service-list {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.service-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
}

.advantage-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.advantage-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-intro {
    position: relative;
}

.company-vision {
    margin-top: 30px;
}

.vision-item {
    margin-bottom: 30px;
}

.vision-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.vision-item h4 i {
    color: var(--accent-color);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--tertiary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.timeline-dot {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

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

.team-info {
    padding: 30px;
}

.team-info h4 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-info .designation {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 15px;
}

.team-info .bio {
    margin-bottom: 0;
}

.process-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.process-icon {
    position: relative;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item {
    margin-bottom: 30px;
}

.value-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item h4 i {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Gallery Page Styles
--------------------------------------------------------------*/
.gallery-intro {
    position: relative;
}

.gallery-filters ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-filters li {
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    font-weight: 500;
}

.gallery-filters li.active, 
.gallery-filters li:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-card {
    margin-bottom: 30px;
}

.gallery-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    transition: var(--transition);
}

.gallery-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(95, 113, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-card:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.featured-project {
    position: relative;
}

.project-details-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 30px;
}

.project-details-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.project-details-list li:last-child {
    border-bottom: none;
}

.project-details-list li strong {
    color: var(--primary-color);
    margin-right: 10px;
}

.project-highlights {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 15px;
}

.highlight-item {
    background-color: var(--gray-light);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.pagination .page-link {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-info {
    position: relative;
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 10px;
}

.contact-link:hover {
    color: var(--accent-color);
}

.business-hours {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    color: var(--white);
}

.business-hours h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 22px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.contact-form {
    position: relative;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control, 
.form-select {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    font-size: 16px;
    padding: 10px 15px;
}

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

textarea.form-control {
    height: auto;
}

.contact-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.social-contact h5 {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.map-wrapper {
    width: 100%;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*--------------------------------------------------------------
# Error Pages
--------------------------------------------------------------*/
.error-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    position: relative;
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 22px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
}

.footer .tagline {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 500;
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent-color);
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

.footer hr {
    background-color: rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Flash Messages
--------------------------------------------------------------*/
.flash-messages {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1000;
    width: 300px;
}

.alert {
    margin-bottom: 10px;
    border-radius: 10px;
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199.98px) {
    .section-title h2 {
        font-size: 36px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 15px;
    }
    
    .navbar-dark .navbar-nav .nav-link.active:before {
        display: none;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .featured-project-content h3 {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .page-header-content h1 {
        font-size: 30px;
    }
    
    .error-code {
        font-size: 80px;
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
    
    .flash-messages {
        width: calc(100% - 40px);
        right: 20px;
    }
}

/* Image Overlay Styles */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(95, 113, 97, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.placeholder-img:hover .image-overlay {
    opacity: 1;
    visibility: visible;
}

/* Custom styles for WordPress compatibility */
.wp-block-image {
    margin-bottom: 30px;
}

.wp-block-gallery {
    margin-bottom: 30px;
}

.wp-block-quote {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    background-color: var(--gray-light);
}

.our-team {
    display: none;
}
