/* ==================== GLOBAL STYLES ==================== */
:root {
    --primary-color: #2e7d32;
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --secondary-color: #ffb300;
    --secondary-light: #ffe54c;
    --secondary-dark: #c68400;
    --text-dark: #263238;
    --text-light: #eceff1;
    --bg-light: #f5f5f6;
    --bg-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.18);
    --transition: all 0.3s ease;
    --gradient-light: #d0e8d1;
    --gradient-dark: #a8d5aa;
    --gradient-bg: linear-gradient(135deg, var(--gradient-light), var(--gradient-dark));
    --gradient-bg2: linear-gradient(180deg, #4b5e40 0%, #3a4e33 40%, #2e3e29 70%, #1f2d20 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    background: url('../images/bg.jpg') center/cover no-repeat fixed !important;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: 'Space Grotesk', sans-serif;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    border-radius: 50px;
}

.badge-primary {
    background-color: var(--primary-color);
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadein {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.particle-body {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-light);
    border-top-color: var(--primary-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-weight: 500;
    color: var(--primary-dark);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==================== NAVIGATION ==================== */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link,
.navbar.scrolled .ti-menu {
    color: var(--text-dark) !important;
}

.navbar.scrolled .navbar-brand span {
    color: var(--primary-color) !important;
}

.navbar.scrolled .btn-outline-light {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.navbar.scrolled .btn-outline-light:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    transition: all 0.4s ease;
}

.navbar-brand span {
    color: white;
    transition: all 0.4s ease;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.nav-link i {
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light {
    border: 2px solid;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .navbar {
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 10px;
    }

    .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
        padding: 0.5rem 0 !important;
    }

    .navbar-collapse .btn-outline-light {
        color: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        margin-top: 0.5rem;
    }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0 60px;
    background: rgba(0, 0, 0, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    /* Added margin for better spacing */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    /* Better line height for headings */
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.6;
    /* Improved readability */
}

.hero-glass {
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    /* Center the content */
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.hero-image-container {
    position: relative;
    padding: 0;
    height: 100%;
    max-height: 500px;
    margin: 30px 0;
    /* Added margin for better spacing */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.5s ease;
}

/* Hover Effects */
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 16px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        margin-top: 50px;
        padding: 70px 0 50px;
        text-align: center;
        /* Center content on tablets */
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-glass {
        padding: 2rem;
    }

    .hero-image-container {
        max-height: 400px;
        margin: 25px auto;
        /* Centered with margin */
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 50px;
        padding: 60px 0 40px;
        min-height: auto;
        /* Remove fixed height on mobile */
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        margin: 15px 0;
    }

    .hero-image-container {
        max-height: 350px;
        margin: 20px auto;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 0 30px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-glass {
        padding: 1.5rem;
    }

    .hero-image-container {
        max-height: 300px;
    }

    .hero-badge {
        margin-bottom: 1rem;
        font-size: 0.8rem;
    }
}

/* ==================== CLIENT LOGOS SECTION ==================== */
.client-logos {
    position: relative;
    background-color: rgba(128, 128, 128, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-carousel {
    padding: 30px 0;
}

.logo-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 15px;
    transition: var(--transition);
}

.logo-item img {
    max-height: 60px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    filter: none !important;
}

.logo-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.slick-dots {
    bottom: 5px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .carousel-slide {
        width: 280px;
    }

    .carousel-slide.prev {
        transform: translate(-50%, -50%) translateX(-85%) translateZ(-100px) rotateY(20deg);
    }

    .carousel-slide.next {
        transform: translate(-50%, -50%) translateX(85%) translateZ(-100px) rotateY(-20deg);
    }
}

/* ==================== 3D CAROUSEL SECTION ==================== */
.carousel-section {
    position: relative;
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.carousel-container {
    position: relative;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 1s;
    width: 100%;
    perspective: 1500px;
}

.section-header {
    position: relative;
    z-index: 2;
}

.section-title {
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-3d {
    position: relative;
    perspective: 1000px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.carousel-container {
    position: relative;
    height: 500px;
    transform-style: preserve-3d;
    transition: transform 1s;
    width: 100%;
    perspective: 1500px;
}

.carousel-slide {
    position: absolute;
    width: 320px;
    /* Pertahankan ukuran asli */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: 1;
    opacity: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 5;
    transform: translate(-50%, -50%) translateZ(0);
}

.carousel-slide.prev {
    opacity: 0.8;
    z-index: 2;
    transform: translate(-50%, -50%) translateX(-75%) translateZ(-100px) rotateY(20deg);
}

.carousel-slide.prev-2 {
    opacity: 0.6;
    z-index: 3;
    transform: translate(-50%, -50%) translateX(-120%) translateZ(-150px) rotateY(20deg);
}

.carousel-slide.prev-1 {
    opacity: 0.8;
    z-index: 4;
    transform: translate(-50%, -50%) translateX(-60%) translateZ(-75px) rotateY(10deg);
}

.carousel-slide.next {
    opacity: 0.8;
    z-index: 2;
    transform: translate(-50%, -50%) translateX(75%) translateZ(-100px) rotateY(-20deg);
}

.carousel-slide.next-1 {
    opacity: 0.8;
    z-index: 4;
    transform: translate(-50%, -50%) translateX(60%) translateZ(-75px) rotateY(-10deg);
}

.carousel-slide.next-2 {
    opacity: 0.6;
    z-index: 3;
    transform: translate(-50%, -50%) translateX(120%) translateZ(-150px) rotateY(-20deg);
}

.slide-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.slide-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 80, 5, 0.3));
}

.slide-details {
    padding: 1.5rem;
    text-align: center;
}

.slide-number {
    display: inline-block;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.slide-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.slide-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 20px;
}

.carousel-prev,
.carousel-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: url('../images/about/about.jpg') center/cover no-repeat;
    will-change: transform;
    transition: transform 0.1s ease-out;
    z-index: -1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-content .section-title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        min-height: 500px;
    }

    .about-content {
        padding: 2rem !important;
    }

    .parallax-bg {
        background-attachment: scroll;
    }
}

/* ==================== PRODUCT SECTION ==================== */
.products-section {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.plant-card {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.plant-image-container {
    height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    margin-top: -30px;
    margin-left: 20px;
    margin-right: 20px;
    z-index: 2;
    border-radius: 12px;
}

.plant-image {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.5s ease;
    object-position: top;
}

.plant-details {
    padding: 1.5rem;
    padding-top: 50px;
    margin-top: 50px;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plant-card:hover .plant-image {
    transform: scale(1.05);
}

.plant-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.plant-price {
    font-size: 1rem;
    padding: 0.35rem 0.75rem;
}

.plant-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.plant-rating i {
    font-size: 0.8rem;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    background: url('../images/services-bg.jpg') center/cover repeat;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.service-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 125, 50, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.service-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-cta {
    background: rgba(46, 125, 50, 0.15) !important;
    border: 1px solid var(--primary-color) !important;
}

.cta-title {
    color: white;
    font-weight: 600;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    background: url('../images/pricing-bg.jpg') center/cover repeat;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.popular-card {
    border: 1px solid var(--primary-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.pricing-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    color: white;
    font-weight: 600;
}

.price-wrap {
    color: white;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.pricing-features .text-muted {
    color: rgba(255, 255, 255, 0.4) !important;
}

.custom-solution-card {
    background: rgba(46, 125, 50, 0.15) !important;
    border: 1px solid var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .price-amount {
        font-size: 2.5rem;
    }
    
    .popular-card {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/* ==================== DESIGN SECTION ==================== */
.design-section {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.design-portfolio {
    height: 800px;
    overflow-y: auto;
    padding-right: 15px;
}

.design-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.design-image-container {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.design-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.design-card:hover .design-image {
    transform: scale(1.05);
}

.design-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
}

.design-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.design-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    border-radius: 50px;
}

.theme-filter .btn {
    margin: 0 5px 10px;
    transition: all 0.3s ease;
}

.theme-filter .btn.active,
.theme-filter .btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Simplebar Customization */
.simplebar-scrollbar::before {
    background: var(--primary-light);
}

.simplebar-track.simplebar-vertical {
    width: 8px;
}

/* Modal Styles */
.modal-content {
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-design-image {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.modal-design-plants,
.modal-design-features {
    list-style-type: none;
    padding-left: 0;
}

.modal-design-plants li,
.modal-design-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.modal-design-plants li::before {
    content: '\f1bb';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.modal-design-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    position: relative;
    background: url('../images/testimonials-bg.jpg') center/cover repeat;
    z-index: 1;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.testimonial-carousel {
    position: relative;
    padding: 20px 0;
}

.testimonial-author h5 {
    color: #fff;
    /* Warna putih untuk nama */
    font-weight: 600;
    /* Membuat teks lebih tebal */
}

.testimonial-author small {
    color: rgba(255, 255, 255, 0.7) !important;
    /* Warna putih transparan untuk subteks */
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    left: -15px;
    top: -20px;
    z-index: 0;
}

.testimonial-author img {
    border: 3px solid rgba(255, 255, 255, 0.2);
}

/* ==================== DESIGNER SECTION ==================== */
.designers-section {
    background: url('../images/designer-bg.jpg') center/cover repeat;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.designers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.designer-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.designer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.designer-image-container {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.designer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.designer-card:hover .designer-image {
    transform: scale(1.05);
}

.designer-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.designer-card:hover .designer-social {
    opacity: 1;
    transform: translateY(0);
}

.designer-name {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.designer-title {
    color: var(--primary-light);
    font-size: 0.9rem;
    display: block;
}

.designer-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.designer-specialty .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: 400;
}

.cta-card {
    background: rgba(46, 125, 50, 0.2) !important;
    border: 1px solid var(--primary-color) !important;
}

.cta-title {
    color: white;
    font-weight: 600;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .designer-image-container {
        height: 250px;
    }
    
    .designer-social {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
    border-color: var(--primary-color) !important;
}

.form-floating label {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: var(--primary-light) !important;
    opacity: 0.9;
}

/* Leaflet Map Customization */
.leaflet-container {
    background: rgba(0, 0, 0, 0.7) !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
    background: rgba(30, 30, 30, 0.9);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaflet-container a.leaflet-popup-close-button {
    color: white;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: var(--primary-color);
}

.leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.5) !important;
    color: rgba(255, 255, 255, 0.7);
}

.leaflet-control-attribution a {
    color: var(--primary-light);
}

.leaflet-marker-icon {
    z-index: 1000 !important;
}

/* Form Validation Styles */
.has-error .form-control {
    border-color: #dc3545 !important;
}

.has-error .form-floating label {
    color: #dc3545 !important;
}

.error-message {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-alert {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FOOTER SECTION ==================== */
.footer-section {
    background: url('../images/footer-bg.jpg') center/cover repeat;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.footer-link {
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.25rem 0;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-light) !important;
    transform: translateX(5px);
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 20px;
}

/* Subscription Form Styles */
#subscribeForm .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
    height: calc(3.5rem + 2px);
}

#subscribeForm .form-floating label {
    color: rgba(255, 255, 255, 0.7) !important;
}

#subscribeForm .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.subscribe-alert {
    border-radius: 8px;
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    font-size: 0.85rem;
}