/* ==========================================
   HOME IN HILLS - MAIN STYLESHEET
   ========================================== */

:root {
    --primary-color: #C4A574;
    --secondary-color: #1A3A3A;
    --accent-color: #2D5555;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #F5EFE7;
    --gold: #C4A574;
    --teal-dark: #1A3A3A;
    --teal-light: #2D5555;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar-custom {
    background: #142725 !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar-toggler-icon{
    color:#fff !important;
    background-color: #C4A574 !important;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

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

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link-custom {
    color: #fff !important;
    font-weight: 500;
    padding: 8px 20px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--gold) !important;
    background: rgba(196, 165, 116, 0.1);
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: var(--gold) !important;
    background: rgba(196, 165, 116, 0.15);
    font-weight: 600;
}

/* ==========================================
   COMMON SECTIONS
   ========================================== */

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

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

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--teal-light));
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-primary-custom {
    background: linear-gradient(135deg, var(--gold) 0%, #D4B896 100%);
    border: none;
    padding: 12px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 165, 116, 0.4);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================
   HOME PAGE - VIDEO HERO SECTION
   ========================================== */

.video-hero-section {
    margin-top: 76px;
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 58, 0.85) 0%, rgba(45, 85, 85, 0.7) 100%);
    z-index: 2;
}

.video-hero-content {
    position: relative;
    z-index: 3;
    animation: heroFadeIn 1.5s ease-out;
}

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

.video-hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, #E5D4B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.video-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.video-hero-buttons .btn-secondary-custom {
    border-color: white;
    color: white;
    background: transparent;
}

.video-hero-buttons .btn-secondary-custom:hover {
    background: white;
    color: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce-indicator 2s infinite;
}

@keyframes bounce-indicator {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.scroll-indicator span {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
    cursor: pointer;
}

/* ==========================================
   IMAGE SLIDER SECTION
   ========================================== */

.image-slider-section {
    /* padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%); */
}

.image-slide {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 58, 0.85) 0%, rgba(45, 85, 85, 0.75) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, #D4B896 100%);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.slide-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 165, 116, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(196, 165, 116, 0.9);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

/* ==========================================
   FEATURE CARDS
   ========================================== */

.feature-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   ABOUT PREVIEW SECTION
   ========================================== */

.about-preview-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fef3e2 0%, #ffffff 100%);
}

.about-image-wrapper {
    position: relative;
}

.about-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary-custom {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-hero,
.projects-hero,
.media-hero,
.contact-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 76px;
}

.about-hero {
    background-image: url('https://images.unsplash.com/photo-1533222625417-13702532d05d');
}

.projects-hero {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5');
}

.media-hero {
    background-image: url('https://images.unsplash.com/photo-1609622565747-1b71d6c983bf');
}

.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1626885930974-4b69aa21bbf9');
}

.about-hero-overlay,
.projects-hero-overlay,
.media-hero-overlay,
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.85) 0%, rgba(21, 128, 61, 0.7) 100%);
}

.about-hero-content,
.projects-hero-content,
.media-hero-content,
.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-title,
.projects-hero-title,
.media-hero-title,
.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.about-hero-subtitle,
.projects-hero-subtitle,
.media-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.story-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fef3e2 0%, #ffffff 100%);
}

.mission-card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.mission-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

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

.mission-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d97706 0%, #15803d 100%);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Values Section */
.values-section {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.value-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   PROJECTS PAGE
   ========================================== */

.filter-section {
    padding: 50px 0 20px;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
    border-color: var(--primary-color);
    color: white;
}

.project-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ea580c 100%);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    color: white;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.project-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.project-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ==========================================
   MEDIA PAGE
   ========================================== */

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.gallery-category {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: capitalize;
    background: rgba(217, 119, 6, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-block;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-info-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-detail {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.form-control {
    padding: 12px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--secondary-color) 100%);
    color: #e5e7eb;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, #D4B896 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-text {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-heading {
    color: #f9fafb;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* ==========================================
   COUNTER STATS SECTION
   ========================================== */

.counter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.counter-item {
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--teal-light));
    transition: all 0.5s ease;
}

.counter-item:hover::before {
    left: 0;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.counter-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    background: white;
}

.process-card {
    padding: 40px 30px;
    background: linear-gradient(to bottom, #fef3e2 0%, #ffffff 100%);
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--teal-light));
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(196, 165, 116, 0.15);
    line-height: 1;
}

.process-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.5s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.2) rotate(10deg);
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.testimonial-stars {
    font-size: 2rem;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: white;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    background: rgba(255, 255, 255, 0.2);
}

.testimonials-section .carousel-control-prev:hover,
.testimonials-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   VIDEO SECTION
   ========================================== */

.video-section {
    background: linear-gradient(to bottom, #fef3e2 0%, #ffffff 100%);
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.video-wrapper img {
    width: 100%;
    transition: all 0.5s ease;
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #D4B896 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 165, 116, 0.7);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(196, 165, 116, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(196, 165, 116, 0);
    }
}

.video-play-button span {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.video-features li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-left: 10px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .navbar-custom {
        padding: 10px 0;
    }

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

    /* Video Hero Mobile */
    .video-hero-section {
        min-height: 600px;
        height: auto;
        padding: 80px 0;
    }

    .video-hero-title {
        font-size: 2.8rem;
    }

    .video-hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .video-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .video-hero-buttons .btn-primary-custom,
    .video-hero-buttons .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
    }

    .video-hero-buttons .ms-3 {
        margin-left: 0 !important;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Image Slider Mobile */
    .image-slider-section {
        padding: 50px 0;
    }

    .image-slide {
        height: 400px;
    }

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

    .slide-description {
        font-size: 1rem;
    }

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

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

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

    .about-hero-title,
    .projects-hero-title,
    .media-hero-title,
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle,
    .projects-hero-subtitle,
    .media-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1.05rem;
    }

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

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

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

    .stat-number,
    .counter-number {
        font-size: 2.5rem;
    }

    .counter-icon,
    .process-icon {
        font-size: 2.5rem;
    }

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

    .gallery-item {
        height: 250px;
    }

    .about-hero,
    .projects-hero,
    .media-hero,
    .contact-hero {
        height: 300px;
    }

    .testimonial-card {
        padding: 30px;
    }

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

    .process-number {
        font-size: 3rem;
    }

    .testimonials-section .carousel-control-prev,
    .testimonials-section .carousel-control-next {
        display: none;
    }
}
/* ===============================
   Premium Banner Section
================================ */

.premium-banner {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url('../images/image_hills.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Dark overlay */
.premium-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Content */
.premium-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.premium-banner-content h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}

.premium-banner-content p {
  font-size: clamp(15px, 2vw, 18px);
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.6;
  opacity: 0.95;
}

/* ===============================
   Buttons (Matched Style)
================================ */

.banner-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Base button */
.btn {
  min-width: 220px;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

/* Filled beige button */
.btn-filled {
  background-color: #d8b98b;
  color: #ffffff;
  border: none;
}

.btn-filled:hover {
  background-color: #c9a874;
  transform: translateY(-2px);
}

/* Outline white button */
.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ===============================
   Mobile Optimization
================================ */

@media (max-width: 768px) {
  .premium-banner {
    min-height: 360px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }
}

.by-builder {
  font-size: 0.45em;
  font-weight: 500;
  opacity: 0.8;
}

/* SECTION */
.hi-floor-plans {
  padding: 70px 0;
  background: #f9f9f9;
}

.hi-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hi-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.hi-section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hi-section-header p {
  opacity: 0.8;
}

/* GRID */
.hi-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.hi-plan-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hi-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.hi-plan-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  cursor: zoom-in;
}

.hi-plan-content {
  padding: 20px;
}

.hi-plan-content h4 {
  margin-bottom: 8px;
}

.hi-plan-content p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

/* BUTTONS */
.hi-plan-actions {
  display: flex;
  gap: 10px;
}

.hi-btn-solid,
.hi-btn-outline {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.hi-btn-solid {
  background: var(--primary-color, #2c6e49);
  color: #fff;
}

.hi-btn-outline {
  border: 1px solid var(--primary-color, #2c6e49);
  color: var(--primary-color, #2c6e49);
  background: transparent;
}

.hi-btn-outline:hover {
  background: var(--primary-color, #2c6e49);
  color: #fff;
}

/* DISCLAIMER */
.hi-disclaimer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* LIGHTBOX */
.hi-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hi-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.hi-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hi-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hi-plans-grid {
    grid-template-columns: 1fr;
  }
}
