:root {
    --primary-gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --dark-bg: #0B0C10;
    --darker-bg: #050507;
    --text-light: #C5C6C7;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway', sans-serif;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary-gold);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

/* Specific Navbar Adjustments for Homepage Bento Mode */
body.home-page .navbar {
    top: 0;
    width: 100%;
    margin: 0;
    padding: 15px 50px;
    background: transparent;
    /* Top area of bento is white, so text must be dark */
    border-radius: 0;
}

body.home-page .navbar .logo,
body.home-page .navbar .nav-links li a {
    color: #0b0c10;
}

body.home-page .navbar .hamburger .line {
    background: #0b0c10;
}

body.home-page .navbar.scrolled .hamburger .line {
    background: var(--white);
}

@media (max-width: 900px) {
    body.home-page .navbar {
        top: 10px;
        width: 100%;
        margin: 0;
        padding: 10px 20px;
        border-radius: 0;
    }
}

/* Scrolled version rests back to standard dark styling */
body.home-page .navbar.scrolled {
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    top: 10px;
    width: calc(100% - 20px);
    margin: 0 10px;
    padding: 15px 40px;
}

body.home-page .navbar.scrolled .logo,
body.home-page .navbar.scrolled .nav-links li a,
body.home-page .navbar.scrolled .mobile-menu-btn {
    color: var(--white);
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 50px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    z-index: 1001;
    justify-self: start;
}

.nav-cta {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-btn {
    padding: 10px 25px;
    background: var(--primary-gold);
    color: var(--darker-bg);
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-gold);
}

.nav-btn:hover {
    background: transparent;
    color: var(--primary-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
    justify-self: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--primary-gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    justify-self: end;
}

.hamburger .line {
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.4s;
    border-radius: 3px;
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-links li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-links li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-links li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-links a {
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    color: var(--white);
}

.mobile-nav-links a:hover {
    color: var(--primary-gold);
}

/* Base Hero (used by other pages) */
.hero {
    height: 100vh;
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

/* Hero Slider (Homepage Bento Layout) */
.hero-slider {
    position: relative;
    height: auto;
    margin: 0;
    width: 100%;
    background-color: #ffffff;
    /* Bento white outer frame */
    padding: 130px 40px 60px 40px;
    /* Space above the inner box for the integrated navbar */
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .hero-slider {
        height: auto;
        min-height: auto;
        margin: 0;
        border-radius: 0;
        padding: 100px 15px 40px 15px;
    }
}

.slider-inner-bento {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 650px;
    /* Force height on desktop so it doesn't collapse */
    border-radius: 35px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .slider-inner-bento {
        height: 480px;
        /* Optimized height for mobile */
        border-radius: 25px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

/* Bento Integrated Navigation Card */
.bento-navigation-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
    .bento-navigation-card {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        gap: 8px;
    }
}

.slider-arrows {
    display: flex;
    gap: 20px;
}

.slider-nav {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #000;
    transform: scale(1.3);
}

.slider-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    user-select: none;
}

.slider-arrow:hover {
    background: var(--primary-gold);
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    text-align: center;
}

.hero h1,
.hero-slider h1 {
    font-size: 5.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hero p,
.hero-slider p {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-weight: 300;
}

.cta-btn {
    display: inline-block;
    padding: 13px 35px;
    /* Reduced from 16px 45px */
    background: var(--primary-gold);
    color: var(--darker-bg);
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    border: 2px solid var(--primary-gold);
}

.cta-btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.2);
}

/* Base Animations */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* About Section */
.about-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text-left {
    flex: 1;
    max-width: 600px;
}

.about-text-left h2 {
    font-size: 3.5rem;
    color: #1a1a1a;
}

.divider {
    height: 3px;
    width: 80px;
    background: var(--primary-gold);
    margin: 20px 0 40px;
    border-radius: 2px;
}

.about-text-left p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #444444;
}

/* About Section Points & Button */
.about-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 35px 0 45px;
}

@media (max-width: 600px) {
    .about-points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.about-point {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.about-point:hover {
    transform: translateX(5px);
}

.about-point-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-point-icon svg {
    width: 24px;
    height: 24px;
}

.about-point span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
}

.read-more-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-gold);
    color: var(--darker-bg);
    font-weight: 700;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.read-more-btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.about-image-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.delivery-truck-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s ease;
}

.delivery-truck-img:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text-left {
        max-width: 100%;
    }

    .about-text-left .divider {
        margin: 20px auto 40px;
    }

    .about-image-right {
        margin-top: 20px;
        width: 100%;
    }
}

/* Products Section */
.products-section {
    padding: 120px 0;
    background: var(--dark-bg);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.02), transparent 50%);
    pointer-events: none;
}

.products-section h2 {
    font-size: 3.5rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-card {
    display: flex;
    flex-direction: row;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.overflow-hidden-wrapper {
    flex: 0 0 35%;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-right: 1px solid var(--glass-border);
    transition: transform 0.6s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, var(--darker-bg));
}

.product-info {
    flex: 1;
    padding: 40px;
    position: relative;
    z-index: 2;
    background: var(--darker-bg);
}

.product-category {
    color: var(--primary-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.item-list {
    list-style: none;
    font-size: 1rem;
    color: var(--text-light);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px 20px;
}

.item-list li {
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
}

.item-list li::before {
    content: '→';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1.3;
}

.view-more-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.view-more-btn:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: var(--darker-bg);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-card {
    padding: 35px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s, border-color 0.4s;
}

.counter-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.counter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    background: var(--primary-gold);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.counter-value {
    font-size: 3.5rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.counter-num {
    display: inline-block;
}

.plus {
    font-size: 2.2rem;
    color: var(--white);
    margin-left: 5px;
}

.counter-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: #ffffff;
}

.reviews-section h2 {
    font-size: 3.5rem;
    text-align: center;
    color: #1a1a1a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-header {
    margin-bottom: 20px;
}

.stars {
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
}

.customer-name {
    color: var(--primary-gold);
    font-size: 1.4rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}

.review-text {
    font-size: 1.1rem;
    color: #555555;
    font-style: italic;
    line-height: 1.7;
    position: relative;
}

.review-text::before {
    content: '"';
    font-family: 'Raleway', sans-serif;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: -25px;
    left: -15px;
    z-index: -1;
}

/* Footer Section */
footer {
    background: var(--darker-bg);
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    max-width: 400px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links a {
    display: block;
    margin-bottom: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.contact-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.contact-item a {
    color: var(--text-light);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.social-icons a {
    color: var(--primary-gold);
    border: 1px solid var(--glass-border);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: var(--glass-bg);
}

.social-icons a:hover {
    background: var(--primary-gold);
    color: var(--darker-bg);
    border-color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: rgba(197, 198, 199, 0.6);
}

/* Gallery Page Styles */
.gallery-hero {
    height: 50vh;
    background-image: url('images/cafeteria_cat.png');
    /* Reused premium background */
    background-position: center 30%;
}

.gallery-section {
    padding: 80px 0;
    background: var(--dark-bg);
    min-height: 60vh;
}

.masonry-grid {
    column-count: 4;
    column-gap: 25px;
}

.gallery-item {
    margin-bottom: 25px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--darker-bg);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border-color: var(--primary-gold);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Page Styles */
.contact-hero {
    height: 45vh;
    background-image: url('images/hero_bg.png');
}

.contact-page-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info-col h2 {
    font-size: 3rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: var(--glass-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
}

.info-card .icon {
    font-size: 2rem;
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
}

.info-card p,
.info-card a {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.special-card {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.special-card .role {
    display: block;
    color: var(--primary-gold);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.special-card .phone-link {
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-form {
    background: var(--darker-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.contact-form h3 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-gold);
}

.input-group {
    margin-bottom: 25px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* About Page Styles */
.about-hero {
    height: 45vh;
    background-image: url('images/hero_bg.png');
    background-position: center 20%;
}

.corporate-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.corporate-text h2 {
    font-size: 3.2rem;
}

.corporate-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.corporate-van {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.shadow-premium {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.mission-vision-section {
    padding: 80px 0 120px;
    background: var(--dark-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--darker-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    z-index: 1;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 60%);
    z-index: -1;
}

.mv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.2));
}

.mv-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Protocol Section */
.protocol-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.protocol-title {
    text-align: center;
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 70px;
    font-weight: 600;
    line-height: 1.2;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.protocol-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.protocol-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.protocol-col:hover .protocol-icon-wrapper {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.protocol-icon-wrapper svg {
    width: 42px;
    height: 42px;
    stroke: var(--primary-gold);
}

.protocol-col h4 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.protocol-col p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .protocol-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid {
        column-count: 2;
        column-gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1,
    .hero-slider h1 {
        font-size: 3.2rem;
    }

    .hero p,
    .hero-slider p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .protocol-title {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .about-text h2,
    .products-section h2 {
        font-size: 2.8rem;
    }

    .product-grid {
        display: flex;
        flex-direction: column;
    }

    .product-card {
        flex-direction: column;
    }

    .overflow-hidden-wrapper {
        flex: none;
        width: 100%;
        height: 250px;
    }

    .product-image {
        min-height: 250px;
        border-right: none;
    }

    .product-image::after {
        background: linear-gradient(to top, var(--darker-bg), transparent);
        border-bottom: 1px solid var(--glass-border);
    }

    .product-info {
        padding: 25px;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 20px 30px;
    }

    .nav-cta {
        display: none;
    }

    .navbar.scrolled {
        padding: 15px 30px;
    }
}

@media (max-width: 600px) {

    .hero h1,
    .hero-slider h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .hero-slider p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 11px 26px;
        font-size: 0.85rem;
    }

    .protocol-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .protocol-title {
        font-size: 2rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFFFFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}
/* 404 Error Page Styles */
.error-404-section {
    padding: 180px 0 120px;
    background: #ffffff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 10rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.error-title {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.error-message {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-cta {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 7rem;
    }
    
    .error-title {
        font-size: 2.2rem;
    }
    
    .error-404-section {
        padding: 150px 0 80px;
    }
}
