/* Navbar Styles */
#mainNavbar {
    background: transparent;
    transition: background 0.3s ease;
    padding: 20px 0;
}

#mainNavbar.other-page {
    background: transparent;
}

#mainNavbar.other-page .navbar-brand .brand-title {
    color: #fff;
}

#mainNavbar.other-page .navbar-nav .nav-link {
    color: #fff;
}

#mainNavbar.scrolled {
    background: #000;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .brand-title {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

#mainNavbar.scrolled .navbar-brand .brand-title {
    color: #fff;
}

.navbar-nav .nav-link {
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    margin: 0 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

#mainNavbar.scrolled .navbar-nav .nav-link {
    color: #fff;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

#mainNavbar.other-page .navbar-nav .nav-link.active::after {
    background: #fff;
}

#mainNavbar.scrolled .navbar-nav .nav-link.active::after {
    background: #fff;
}

.navbar-nav .nav-link:hover {
    opacity: 0.7;
}

.navbar-nav .nav-link:not(.active)::after {
    display: none;
}

/* Home page specific navigation positioning */
body.home-page .navbar-nav {
    margin-left: 0;
    margin-right: auto;
}

body.home-page .navbar-brand .brand-title {
    color: #000;
}

body.home-page .navbar-nav .nav-link {
    color: #000;
}

body.home-page #mainNavbar.scrolled .navbar-brand .brand-title {
    color: #fff;
}

body.home-page #mainNavbar.scrolled .navbar-nav .nav-link {
    color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #333;
}

/* Custom Loading Styles */
#spinner {
    transition: all 0.3s ease-in-out;
}
#spinner.show {
    opacity: 1;
    visibility: visible;
}
#spinner:not(.show) {
    opacity: 0;
    visibility: hidden;
}

.text-dark {
    color: #000 !important;
}

/* Search Modal Styles */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.search-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}

.search-content {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.close-search {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.search-input-container {
    display: flex;
    align-items: center;
    border: 3px solid white;
    border-radius: 20px;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.5rem;
    padding: 0;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.clear-btn {
    background: none;
    border: none;
    color: #C00000;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.search-results {
    max-height: 50vh;
    overflow-y: auto;
    background: #FFF0C4;
    border-radius: 20px;
    padding: 1rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: rgba(192, 0, 0, 0.1);
}

.result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.result-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.result-price {
    margin: 0;
    color: #C00000;
    font-weight: bold;
}

.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Hero Section */
.hero-section {
    background-color: #f5f5f5;
    padding: 0 0 60px 0;
    min-height: 120vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-image-top-right {
    position: absolute;
    top: -170px;
    right: -210px;
    z-index: 1;
}

.hero-image-circle {
    width: 860px;
    height: 920px;
    border-radius: 50%;
    overflow: hidden;
    background: f5f5f5;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.hero-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    padding-left: 100px;
    z-index: 2;
    position: relative;
}

.hero-line {
    width: 100px;
    height: 4px;
    background-color: #000;
    margin-bottom: 30px;
}

.hero-title {
    font-family: Arial, sans-serif;
    color: #000;
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    max-width: 480px;
}

.hero-bold {
    font-weight: 900;
}

.hero-description {
    font-family: Arial, sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 1000px;
}

.btn-tentang {
    background-color: #000;
    color: #fff;
    padding: 20px 120px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.btn-tentang:hover {
    background-color: #333;
    color: #fff !important;
}

.btn-lihat-lebih {
    background-color: #000;
    color: #fff;
    padding: 18px 80px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.btn-lihat-lebih:hover {
    background-color: #333;
    color: #fff !important;
}

/* Section Titles */
.section-title {
    font-family: Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Tentang Kami Section */
.tentang-section {
    background-color: #fff;
    padding: 100px 0;
}

.tentang-description {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 40px;
}

.tentang-line {
    width: 100px;
    height: 4px;
    background-color: #000;
    margin: 0 auto;
}

/* Menu Section */
.menu-section {
    background-image: url('../images/banner2.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.menu-section .container {
    position: relative;
    z-index: 2;
}

.menu-cards-row {
    margin: 0 -3px;
}

.menu-card-col {
    padding: 0 3px;
}

.menu-card {
    background: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 130px 25px 45px 25px;
    text-align: center;
    position: relative;
    margin-top: 120px;
    height: 360px;
}

.menu-image-container {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-content {
    padding: 15px 30px 0 30px;
}

.menu-title {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 780;
    color: #000;
    margin-bottom: 15px;
}

.menu-description {
    font-family: Arial, sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Berita Section */
.berita-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.news-row {
    margin: 0 -5px;
}

.news-col {
    padding: 0 5px;
    margin-bottom: 10px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-image {
    width: 100%;
    object-fit: cover;
}

.news-card.large-card {
    height: 910px;
}

.news-card.large-card .news-image {
    height: 450px;
}

.news-card.small-card {
    height: 400px;
}

.news-card.small-card .news-image {
    height: 180px;
}

.news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-card.large-card .news-title {
    font-size: 1.4rem;
    margin-bottom: -10px;
}

.news-card.small-card .news-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.news-excerpt {
    font-family: Arial, sans-serif;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.news-footer {
    margin-top: auto;
}

.news-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.read-more {
    color: #ff9500;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff9500 !important;
}

.news-dots {
    color: #ccc;
    font-size: 1.2rem;
    letter-spacing: 2px;
    user-select: none;
}

/* Gallery Section */
.galeri-section {
    background-color: #f5f5f5;
    padding: 100px 0;
}

/* Navbar logo handling */
.navbar-logo {
    transition: all 0.3s ease;
}

/* Default logo (dark) */
#mainNavbar .navbar-logo {
    content: url('../images/foodylogo.png');
}

/* When navbar is scrolled, keep dark logo */
#mainNavbar.scrolled .navbar-logo {
    content: url('../images/foodylogodrk.png');
}

.gallery-row {
    margin: 0 -5px;
}

.gallery-col {
    padding: 0 5px;
    margin-bottom: 10px;
}

.gallery-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.btn-lihat-lebih {
    background-color: #000;
    color: #fff;
    padding: 18px 80px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

/* About Us Page */
.about-header {
    background-image: url('../images/banner2.png');
    background-size: cover;
    background-position: center;
    padding: 250px 0 250px 0;
    position: relative;
}

.about-header-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}

.about-header-title {
    font-family: Arial, sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
}

.about-tasty-food-section {
    background-color: #f5f5f5;
    padding: 120px 0;
}

.about-visi-section {
    background-color: #fff;
    padding: 120px 0;
}

.about-misi-section {
    background-color: #f5f5f5;
    padding: 120px 0;
}

.about-text-content {
    padding: 0 12px;
}

.about-section-title {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-paragraph {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.about-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 12px;
}

.about-images-grid .about-img {
    height: 380px;
}

.about-images-grid.single {
    grid-template-columns: 1fr;
}

.about-image-item {
    width: 100%;
}

.about-image-item.large {
    max-width: 580px;
}

.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
}

.about-image-item.large .about-img {
    height: 280px;
    width: 100%;
}

/* Footer Section - Updated */
.footer-section {
    background-color: #000000;
    padding: 60px 0 30px 0;
}

.footer-brand-title {
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.footer-description {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 320px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Link sections - SESUAI PNG */
.footer-links {
    margin-top: 0;
    padding-left: 80px; /* Dikurangi dari 100px */
}

.footer-title {
    font-family: Arial, sans-serif;
    font-size: 24px; /* Dikurangi dari 24px */
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px; /* Ditambah dari 15px */
    white-space: nowrap; /* Mencegah turun ke bawah */
    line-height: 1.1;
}

/* Menu links - SESUAI PNG */
.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-links li {
    margin-bottom: 12px; /* Disamakan dengan gambar */
}

.footer-menu-links li a {
    font-family: Arial, sans-serif;
    font-size: 15px; /* Disamakan dengan PNG */
    color: #bbb; /* #bbb bukan #fff */
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
}

.footer-menu-links li a:hover {
    color: #fff;
}

/* Menu privacy - sama dengan links */
.footer-menu-priv {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-priv li {
    margin-bottom: 12px; /* Disamakan dengan gambar */
}

.footer-menu-priv li a {
    font-family: Arial, sans-serif;
    font-size: 15px; /* Disamakan dengan PNG */
    color: #bbb; /* #bbb bukan #fff */
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
}

.footer-menu-priv li a:hover {
    color: #fff;
}

/* Contact section - SESUAI PNG */
.footer-contact {
    margin-top: 0;
    padding-left: 30px; /* Dikurangi dari 50px */
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start; /* align-items: flex-start bukan center */
    margin-bottom: 14px; /* Ditambah dari 12px */
    font-family: Arial, sans-serif;
    font-size: 15px; /* Ditambah dari 14px */
    color: #bbb; /* #bbb bukan #fff */
    line-height: 1.4;
}

.footer-contact-list li i {
    margin-right: 10px; /* Dikurangi dari 12px */
    font-size: 15px;
    color: #fff;
    min-width: 16px;
    margin-top: 2px; /* Untuk alignment yang tepat */
}

/* Copyright - SESUAI PNG */
.footer-copyright {
    font-family: Arial, sans-serif;
    font-size: 12px; /* Dikurangi dari 13px */
    color: #888; /* #888 bukan #999 */
    text-align: center;
    margin: 50px 0 0 0; /* Ditambah dari 40px */
    padding-top: 25px; /* Ditambah dari 20px */
    border-top: 1px solid #444; /* #444 bukan #333 */
    letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px 0;
    }
    
    .footer-brand-title,
    .footer-title {
        font-size: 20px;
    }
    
    .footer-links,
    .footer-contact {
        padding-left: 20px !important;
    }
    
    .col-md-2, .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Additional alignment untuk semua judul sejajar */
@media (min-width: 768px) {
    .col-md-2, .col-md-4 {
        display: flex;
        flex-direction: column;
    }
    
    /* Pastikan semua judul mulai dari posisi yang sama */
    .footer-links, .footer-contact {
        padding-top: 0;
    }
    
    /* Untuk fine-tuning alignment horizontal */
    .footer-title {
        padding-left: 0;
        transform: translateX(0);
    }
}

/* News Page Styles */
.featured-news-section {
    background: #f5f5f5;
    padding: 120px 0;
}

.featured-news-section .container {
    padding-top: 20px;
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.featured-content {
    padding-left: 20px;
}

.featured-content h2 {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.3;
}

.featured-content p {
    font-family: Arial, sans-serif;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-content .btn {
    background: #000;
    color: #fff;
    padding: 15px 40px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
}

.other-news-section {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.other-news-section h2 {
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 70px;
}

/* Use same news-row and news-col as welcome page */
.other-news-section .news-row {
    margin: 0 -5px;
}

.other-news-section .news-col {
    padding: 0 5px;
    margin-bottom: 10px;
}

.other-news-section .news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.other-news-section .news-card.small-card {
    height: 400px;
}

.other-news-section .news-card.small-card .news-image {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.other-news-section .news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.other-news-section .news-title {
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 1.4rem;
}

.other-news-section .news-excerpt {
    font-family: Arial, sans-serif;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.other-news-section .news-footer {
    margin-top: auto;
}

.other-news-section .news-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.other-news-section .read-more {
    color: #ff9500;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
}

.other-news-section .news-dots {
    color: #ccc;
    font-size: 1.2rem;
    letter-spacing: 2px;
    user-select: none;
}

.news-cards-row {
    margin: 0 -15px;
}

.news-card-col {
    padding: 0 -15px;
    margin-bottom: -5px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.news-card .news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card .news-title {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .news-excerpt {
    font-family: Arial, sans-serif;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.9rem;
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card .news-footer {
    margin-top: auto;
    padding-top: 15px;
}

.news-card .news-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card .read-more {
    color: #ff9500;
    font-weight: 400;
    font-size: 0.9rem;
    text-decoration: none;
}

.news-card .news-dots {
    color: #ccc;
    font-size: 1.2rem;
    letter-spacing: 2px;
    user-select: none;
}

/* News Modal Styles */
.modal-content {
    border: none;
    overflow: hidden;
    border-radius: 20px;
}

.modal-header {
    background: #000;
    color: #fff;
    border: none;
    padding: 1.5rem;
}

.modal-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #fff;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    height: 300px;
    object-fit: cover;
}

.modal-body .p-4 {
    padding: 1.5rem;
}

.modal-body .badge {
    background: #ff9500;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
}

.modal-body .content {
    line-height: 1.8;
    font-family: Arial, sans-serif;
    color: #333;
}

.modal-footer {
    border: none;
    background-color: #f5f5f5;
    padding: 1rem 1.5rem;
}

.modal-footer .btn {
    padding: 10px 30px;
    font-family: Arial, sans-serif;
    font-weight: 500;
    border: none;
    border-radius: 5px;
}

.modal-footer .btn:first-child {
    background: #000;
    color: #fff;
}

/* Load More Button Styles */
.btn-load-more {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 15px 40px;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-load-more:hover {
    background: #333;
    color: #fff;
}

/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-down {
    animation: fadeInDown 0.5s ease forwards;
}

/* Gallery Page Styles */
.carousel-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.image-carousel-container {
    max-width: 1000px;
    max-height: 100px;
    margin: 0 auto;
}

.main-image-container {
    position: relative;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 30px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav.prev {
    left: -25px;
    
}

.carousel-nav.next {
    right: -25px;
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-carousel-section {
    background: #fff;
    padding: 80px 0;
}

.gallery-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-nav.prev {
    left: -25px;
}

.gallery-nav.next {
    right: -25px;
}

.gallery-nav:hover {
    background: rgba(0,0,0,0.9);
}

@media (max-width: 768px) {
    .product-carousel-container {
        padding: 0 60px;
    }
    
    .carousel-nav.prev {
        left: -50px;
    }
    
    .carousel-nav.next {
        right: -50px;
    }
    
    .product-carousel-wrapper {
        height: 300px;
    }
    
    .main-image-container {
        height: 300px;
        padding: 20px;
    }
    
    .gallery-carousel-container {
        height: 300px;
    }
}

/* Product Carousel Section */
.product-carousel-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.product-carousel-container {
    max-width: 1320px;
    margin: 0 auto;
}

.product-carousel-wrapper {
    position: relative;
    background: transparent;
    border-radius: 25px;
    padding: 0;
    height: 475px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-carousel-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(166, 166, 166, 0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

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

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

.carousel-nav:hover {
    background: rgba(128, 128, 128, 0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Product Grid Section */
.product-grid-section {
    background: #fff;
    padding: 80px 0;
}

.product-grid-section .row {
    margin: 0 -5px;
}

.product-grid-section .col-md-3 {
    padding: 0 5px;
    margin-bottom: 10px;
}

.product-card {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: none;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Contact Page Styles */
.contact-form-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-form-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}

.contact-form-title {
    font-family: Arial, sans-serif;
    font-size: 1.8rem;
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-form-input {
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    width: 100%;
    font-family: Arial, sans-serif;
}

.contact-form-textarea {
    padding: 15px;
    border: 2px solid #333;
    border-radius: 10px;
    resize: none;
    width: 100%;
    height: 200px;
    font-family: Arial, sans-serif;
}

.contact-form-submit {
    background-color: #000;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
}

.contact-info-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background-color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.contact-info-icon i {
    color: #fff;
    font-size: 30px;
}

.contact-info-title {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-text {
    font-family: 'Arial', sans-serif;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}