/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Libertinus Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    color: #C5A572;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.header.scrolled .logo {
    color: #C5A572;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #C5A572;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header.scrolled .nav-menu li a {
    color: white;
}

/* Active navigation styling for white background */
.nav-menu li a.active {
    color: #C5A572;
}

.header.scrolled .nav-menu li a.active {
    color: #C5A572;
}

.nav-menu li a:hover {
    color: #C5A572;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #C5A572;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    z-index: 1001;
}

.header.scrolled .dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.header.scrolled .dropdown-menu li a {
    color: white;
}

.dropdown-menu li a:hover {
    background: rgba(197, 165, 114, 0.1);
    color: #C5A572;
    padding-left: 25px;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #C5A572;
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu li a:hover::before {
    width: 3px;
}

/* Arrow indicator for dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    border: 8px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.95);
}

.header.scrolled .dropdown-menu::before {
    border-bottom-color: rgba(0, 0, 0, 0.95);
}

.schedule-btn {
    background: transparent;
    border: 2px solid #C5A572;
    color: #C5A572;
    padding: 8px 16px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.schedule-btn a {
    text-decoration: none;
    color: #C5A572;
}

.schedule-btn:hover {
    background: #C5A572;
    color: white;
}

.header.scrolled .schedule-btn {
    border-color: #C5A572;
    color: #C5A572;
}

.header.scrolled .schedule-btn:hover {
    background: #C5A572;
    color: white;
}

/* Desktop Schedule Button */
.desktop-schedule {
    display: block;
}

.mobile-schedule {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/src/assets/home/kawasan.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
    margin-bottom: 50px;
}

.products-hero {
    height: 45vh;
    padding-top: 80px;
}

.contact-hero {
    height: 45vh;
    padding-top: 80px;
}

.about-hero {
    height: 45vh;
    padding-top: 80px;
}

.gallery-hero {
    height: 45vh;
    padding-top: 80px;
}

.news-hero {
    height: 45vh;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    margin-top: 0;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.contact-item {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #C5A572;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 300;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #C5A572;
}

.form-row textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #C5A572;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #b8956a;
    transform: translateY(-2px);
}

/* Products Section */
.products-section {
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-header {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-header i {
    color: #C5A572;
    font-size: 24px;
}

.product-header h3 {
    font-size: 1.2rem;
    color: #333;
}

.product-image {
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding-bottom: 80px;
    background: white;
}

.about-content {
    text-align: center;
}

.about-logo {
    margin-bottom: 40px;
}

.logo-box {
    display: inline-flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.logo-icon-large {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #C5A572;
    font-size: 24px;
    font-weight: bold;
}

.about-text {
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-features {
    text-align: left;
    padding: 0 20px;
}

.about-features h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #C5A572;
}

.about-features p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    position: relative;
}

.why-us-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

.why-us-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-us-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-us-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #C5A572, #b8956a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.3);
}

.why-us-item:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(197, 165, 114, 0.4);
}

.why-us-item h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.why-us-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.why-us-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.why-us-features li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.why-us-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #C5A572;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.featured-products h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    position: relative;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Styling lama dihapus dan diganti dengan yang baru di atas */

.product-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item h4 {
    background: #333;
    color: white;
    padding: 15px;
    margin: 0;
    font-size: 1.1rem;
}

.product-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: #C5A572;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.cta-btn {
    background: white;
    color: #C5A572;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Latest Posts */
.latest-posts {
    padding: 80px 0;
    background: #333;
    color: white;
    text-align: center;
}

.latest-posts h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 300;
    text-align: center;
    position: relative;
}

.latest-posts h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: #444;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card h4 {
    color: #C5A572;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: normal;
}

.post-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.post-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    position: relative;
}

.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(197, 165, 114, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: white;
    font-size: 24px;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.videos-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    position: relative;
}

.videos-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.video-item {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-item:hover img {
    transform: scale(1.05);
}

.video-overlay i {
    color: white;
    font-size: 48px;
    background: rgba(197, 165, 114, 0.8);
    border-radius: 50%;
    padding: 20px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 200px;
    overflow: hidden;
}

.whatsapp-float:hover .whatsapp-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover .whatsapp-main {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.admin-option {
    border-bottom: 1px solid #f0f0f0;
}

.admin-option:last-child {
    border-bottom: none;
}

.admin-option a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.admin-option a:hover {
    background: #f8f9fa;
    color: #25D366;
}

.admin-option i {
    font-size: 20px;
    margin-right: 10px;
    color: #25D366;
}

.admin-option span {
    font-size: 14px;
    font-weight: 500;
}

/* Arrow indicator */
.whatsapp-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 8px solid transparent;
    border-top-color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-text p {
    margin: 5px 0;
    color: #ccc;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.5s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease;
}

.modal-image {
    height: 250px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-text {
    padding: 30px;
    text-align: center;
}

.modal-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.modal-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.modal-btn {
    background: #C5A572;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.modal-btn:hover {
    background: #b8956a;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .logo {
        font-size: 11px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu li a {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .dropdown-menu {
        min-width: 220px;
        padding: 8px 0;
    }
    
    .dropdown-menu li a {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .schedule-btn {
        padding: 7px 14px;
        font-size: 11px;
    }
    
    .dropdown-toggle i {
        font-size: 10px;
        margin-left: 3px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .header {
        padding: 10px 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .header.scrolled {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    
    .logo {
        font-size: 10px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin-right: 8px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .schedule-btn {
        padding: 6px 12px;
        font-size: 10px;
        border-radius: 3px;
    }
    
    .hero {
        height: 45vh;
        padding-top: 70px;
    }
    
    .contact-hero, .project-hero, .about-hero, .gallery-hero, .news-hero {
        height: 40vh;
        padding-top: 70px;
    }
    
    .hero-content {
        margin-top: 0;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 12px;
        margin-top: 10px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-features {
        text-align: center;
        padding: 20px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-us-item {
        padding: 30px 20px;
    }
    
    .why-us-icon {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }
    
    .why-us-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        padding: 0;
        min-width: auto;
        display: none;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        margin: 5px 0;
    }
    
    .dropdown-menu li a {
        padding: 8px 15px;
        font-size: 11px;
        color: #666;
    }
    
    .dropdown-menu li a:hover {
        background: transparent;
        color: #C5A572;
        padding-left: 20px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    /* Mobile active dropdown */
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .header.scrolled {
        background: rgba(0, 0, 0, 0.95);
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 9px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 12px;
        margin-right: 6px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
        margin-right: 6px;
    }
    
    .schedule-btn {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .hero {
        height: 40vh;
        padding-top: 60px;
    }
    
    .contact-hero, .project-hero, .about-hero, .gallery-hero, .news-hero {
        height: 35vh;
        padding-top: 60px;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .hero-text p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .hero-btn {
        padding: 8px 16px;
        font-size: 11px;
        margin-top: 8px;
    }
    
    /* Mobile Dropdown Styles for 480px */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0;
        padding: 0;
        min-width: auto;
        display: none;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        margin: 3px 0;
    }
    
    .dropdown-menu li a {
        padding: 6px 12px;
        font-size: 10px;
        color: #666;
    }
    
    .dropdown-menu li a:hover {
        background: transparent;
        color: #C5A572;
        padding-left: 15px;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    /* Mobile active dropdown for 480px */
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-item {
        padding: 25px 15px;
    }
    
    .why-us-icon {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    
    .why-us-intro {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    /* Styling lama dihapus - menggunakan styling baru di atas */
    

    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    /* Styling lama dihapus - menggunakan styling baru di atas */
    
    .container {
        padding: 0 15px;
    }
    
    /* Section padding adjustments for mobile */
    .contact-info, 
    .contact-form-section,
    .products-section,
    .about-section,
    .featured-products,
    .latest-posts,
    .gallery-section,
    .news-section,
    .why-us-section,
    .project-features {
        padding: 40px 0;
    }
    
    /* Typography adjustments for mobile */
    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }
    
    h3 {
        font-size: 1.3rem !important;
    }
    
    h4 {
        font-size: 1.1rem !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Additional Styles for New Pages */

/* Hero Variations */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/src/assets/home/galeri-5.webp') center/cover no-repeat;
    height: 45vh;
    padding-top: 80px;
}

.project-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&h=1080&fit=crop&crop=house') center/cover no-repeat;
    height: 45vh;
    padding-top: 80px;
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/src/assets/home/sidokarto.jpg') center/cover no-repeat;
    height: 45vh;
    padding-top: 80px;
}

.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/src/assets/home/kawasan.webp') center/cover no-repeat;
    height: 45vh;
    padding-top: 80px;
}

.news-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/src/assets/home/kawasan.webp') center/cover no-repeat;
    height: 45vh;
    padding-top: 80px;
}

/* Active Navigation */
.nav-menu li a.active {
    color: #C5A572;
}

.nav-menu li a.active::after {
    width: 100%;
}

/* Hero Button */
.hero-btn {
    background: #C5A572;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 15px;
    text-transform: uppercase;
}

.hero-btn:hover {
    background: #b8956a;
    transform: translateY(-2px);
}

/* Product Details */
.product-details {
    padding: 30px;
    background: white;
}

.product-details h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.product-details p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.product-details ul li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.product-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C5A572;
    font-weight: bold;
}

.detail-btn {
    background: #C5A572;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.detail-btn:hover {
    background: #b8956a;
    transform: translateY(-2px);
}

/* Project Features */
.project-features {
    padding: 80px 0;
    background: white;
}

.project-features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #C5A572;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Company Values */
.company-values {
    margin-top: 80px;
}

.company-values h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #C5A572;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin-top: 80px;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.team-member p {
    color: #C5A572;
    font-weight: 500;
}

/* Gallery Filter */
.gallery-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #C5A572;
    color: #C5A572;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #C5A572;
    color: white;
}

/* Gallery Info */
.gallery-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Info */
.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.video-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Gallery Preview */
.gallery-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
    position: relative;
}

.gallery-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: #C5A572;
    border-top: 2px dotted #C5A572;
}

/* Gallery Preview CTA */
.gallery-cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.view-more-btn {
    background: #C5A572;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.view-more-btn:hover {
    background: #b8956a;
    transform: translateY(-2px);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Featured Article */
.featured-article {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-image {
    height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-date {
    color: #C5A572;
    font-size: 0.9rem;
    font-weight: bold;
}

.featured-article h2 {
    font-size: 1.8rem;
    margin: 15px 0;
    color: #333;
}

.featured-article p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #C5A572;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #b8956a;
    transform: translateX(5px);
}

/* News Articles */
.news-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-2px);
}

.news-image {
    width: 120px;
    height: 100px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
    flex: 1;
}

.news-date {
    color: #C5A572;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-card h3 {
    font-size: 1rem;
    margin: 10px 0;
    color: #333;
}

.news-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.read-more-small {
    color: #C5A572;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
}

.read-more-small:hover {
    color: #b8956a;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn.active,
.page-btn:hover {
    background: #C5A572;
    border-color: #C5A572;
    color: white;
}

.page-btn.next {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Newsletter Section */
.newsletter-section {
    background: #333;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    color: #ccc;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    background: #C5A572;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8956a;
}

/* Mobile Responsiveness for New Pages */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 150px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp Float Mobile */
    @media screen and (max-width: 1024px) and (min-width: 769px) {
        .whatsapp-dropdown {
            min-width: 180px;
            right: -10px;
        }
        
        .admin-option a {
            padding: 12px 15px;
            font-size: 13px;
        }
        
        .admin-option i {
            font-size: 18px;
        }
    }
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    position: relative;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C5A572;
    border-radius: 2px;
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.product-info-box:hover {
    background: white;
    border-color: #C5A572;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-info-box i {
    color: #C5A572;
    font-size: 24px;
    min-width: 24px;
}

.product-info-box h3 {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-box h3 a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
}

.product-info-box:hover h3 a {
    color: #C5A572;
}

.product-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-image-item:hover {
    transform: translateY(-5px);
}

.product-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image-item:hover img {
    transform: scale(1.05);
}

.product-image-item a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Desktop Layout - Default */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* Desktop Products Showcase - Horizontal 2 rows */
@media (min-width: 1025px) {
    .products-showcase {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }
    
    .product-info-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
    
    .product-images-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }
}

/* Mobile Layout */
.mobile-products {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-product-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.mobile-product-item:last-child {
    margin-bottom: 0;
}

.mobile-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mobile-product-info {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-product-info i {
    font-size: 2rem;
    color: #C5A572;
    margin-bottom: 10px;
}

.mobile-product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.mobile-product-info h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.mobile-product-info h3 a:hover {
    color: #C5A572;
}

.mobile-product-image {
    text-align: center;
}

.mobile-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mobile-product-image:hover img {
    transform: scale(1.05);
}

.mobile-product-image a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design untuk OUR PRODUCT - hanya mobile yang berubah */
@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Mobile Products Showcase - Vertical cards */
    .products-showcase {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .mobile-product-item {
        margin-bottom: 25px;
    }
    
    .featured-products h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-product-item {
        margin-bottom: 25px;
    }
    
    .featured-products h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mobile-product-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-product-info i {
        font-size: 1.8rem;
    }
    
    .mobile-product-info h3 {
        font-size: 1.1rem;
    }
    
    .mobile-product-image img {
        height: 180px;
    }
    
    .featured-products h2 {
        font-size: 1.8rem;
    }
}