@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;700;800;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

:root {
    --primary-dark: #2c1e0a;
    --primary-brand: #d4af37;
    --accent-brand: #b8860b;
    --secondary-brand: #f9f5ed;
    --whatsapp-green: #10b981;
    --whatsapp-hover: #059669;
    --light-bg: #fcf9f2;
    --white: #ffffff;
    --bg-brand-light: #f5eedc;
    --bg-brand-lighter: #ffffff;
    --gray-text: #5c4e3a;
    --border-color: rgba(203, 213, 225, 0.5);
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    --font-main: 'Cairo', 'Tajawal', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--primary-dark);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-brand);
    border-radius: 5px;
    border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-brand);
}

/* Container */
.container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 40px 0;
    position: relative;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }

/* Section Title */
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--primary-brand);
    margin: 12px auto 0;
    border-radius: 10px;
}

.section-title.white-title {
    color: var(--white);
}
.section-title.white-title::after {
    background: var(--white);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 650px;
    margin: 0 auto 60px;
    font-weight: 500;
}
.section-subtitle.white-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    gap: 12px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--accent-brand) 100%);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, var(--whatsapp-green));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45);
}

.btn-whatsapp:active {
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-brand);
    border: 2px solid var(--primary-brand);
}

.btn-outline:hover {
    background: var(--primary-brand);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, rgba(30, 20, 10, 0.95) 0%, rgba(44, 30, 15, 0.92) 40%, rgba(50, 35, 18, 0.88) 70%, rgba(70, 50, 25, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    padding: 10px 0;
}

header.scrolled {
    background: linear-gradient(135deg, rgba(30, 20, 10, 0.98) 0%, rgba(44, 30, 15, 0.96) 40%, rgba(50, 35, 18, 0.94) 70%, rgba(70, 50, 25, 0.92) 100%);
    box-shadow: var(--shadow-lg);
    padding: 5px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

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

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

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

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--accent-brand);
    position: absolute;
    bottom: -2px;
    right: 0;
    transition: var(--transition);
    border-radius: 5px;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

.header-cta {
    display: block;
}

.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section (Mockup Match) */
.hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(30, 20, 10, 0.70) 0%, rgba(30, 20, 10, 0.85) 100%), 
                url('../assets/images/factory_bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

/* Glass grid overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge-wrap {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 30px;
}

.hero-badge-mock {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 20, 10, 0.6);
    border: 1px solid rgba(240, 220, 160, 0.6);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge-mock i {
    font-size: 1.1rem;
}

.hero-title-mock {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s ease-out;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-mock span {
    color: var(--secondary-brand);
    text-shadow: 0 0 30px rgba(240, 220, 160, 0.5);
}

.hero-subtitle-1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 1.1s ease-out;
}

.hero-subtitle-1 span {
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-color: var(--accent-brand);
    text-decoration-thickness: 4px;
}

.hero-subtitle-2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    max-width: 1100px;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease-out;
}

.hero-actions-mock {
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
    animation: fadeInUp 1.3s ease-out;
}

.hero-actions-mock .btn {
    padding: 16px 36px;
    font-size: 1.15rem;
    border-radius: 50px;
}

/* Stats Section (Mockup Match) */
.hero-stats-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    animation: fadeInUp 1.4s ease-out;
}

.stat-item-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-mock {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--secondary-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.stat-num-mock {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label-mock {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 4px;
}

/* ===== About Us Section - Modern Professional Design ===== */
.about-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 247, 255, 0.45) 50%, rgba(255, 255, 255, 0.50) 100%),
                url('../assets/images/about_bg_new.png') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 0.88fr 1.18fr;
    gap: 25px;
    align-items: stretch;
}

/* Gallery Section */
.about-gallery-box {
    position: relative;
    display: flex;
    gap: 20px;
}

.about-img-main {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-wrapper {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-secondary, .about-img-tertiary {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-img-secondary img, .about-img-tertiary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-img-secondary:hover img, .about-img-tertiary:hover img {
    transform: scale(1.05);
}

/* Glassmorphism Badges */
.about-badge-glass {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 16px 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(30, 20, 10, 0.15);
    z-index: 10;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-badge-glass:hover {
    transform: translateY(-5px) scale(1.02);
}

.badge-top-right {
    top: 20px;
    right: 20px;
}

.badge-bottom-left {
    bottom: 20px;
    left: 20px;
}

.badge-icon-glass {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-brand), var(--primary-brand));
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.badge-content-glass {
    display: flex;
    flex-direction: column;
}

.badge-content-glass strong {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
}

.badge-content-glass span {
    font-size: 0.9rem;
    color: var(--gray-text);
    font-weight: 600;
}

/* Text Content Section */
.about-text-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 35px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(30, 20, 10, 0.1);
}

.about-meta-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-meta-modern {
    color: var(--primary-brand);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-line {
    height: 3px;
    width: 50px;
    background: var(--primary-brand);
    border-radius: 5px;
}

.about-title-modern {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-brand), var(--primary-brand));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-desc-modern {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-features-modern {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feat-icon-modern {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feat-item-modern:hover .feat-icon-modern {
    background: var(--primary-brand);
    color: var(--white);
    transform: rotate(10deg);
}

.feat-text-modern h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.feat-text-modern p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.5;
}



/* Board of Directors */
.board {
    padding: 80px 0;
    background: #fdfbf7; /* Cream background */
    position: relative;
    overflow: hidden;
}

.board-meta {
    display: block;
    color: var(--primary-brand);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.board-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark); /* Dark text for light background */
    margin-bottom: 5px;
}

.board-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-bottom: 25px;
    font-weight: 500;
}

.board-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.board-card-mock {
    background-color: var(--white);
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 10px 30px rgba(30, 20, 10, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.board-card-mock:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 20, 10, 0.12);
    border-color: var(--primary-brand);
}

.board-card-img-container {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.board-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition);
}

.board-card-mock:hover .board-card-img-container img {
    transform: scale(1.04);
}

.card-badge-top {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.card-badge-top i {
    color: var(--primary-brand);
}

.card-badge-bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-brand);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.board-card-body {
    padding: 30px;
    text-align: center;
    position: relative;
}

.card-separator {
    width: 60%;
    height: 2px;
    background-color: #e2ecf8;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.card-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.card-role {
    font-size: 1.05rem;
    color: var(--primary-brand);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.card-desc {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Products Section (Eye-Catching Modern Cards) */
.products {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 247, 255, 0.45) 50%, rgba(255, 255, 255, 0.50) 100%),
                url('../assets/images/products_bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
}

.product-card-fancy {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-fancy:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 50px rgba(30, 64, 175, 0.18);
    border-color: rgba(212, 175, 55, 0.35);
}

.product-card-fancy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #38bdf8, #1d4ed8);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card-fancy:hover::after {
    opacity: 1;
}

.product-img-container {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card-fancy:hover .product-img-container img {
    transform: scale(1.06);
}

.product-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 20, 10, 0.35) 0%, rgba(30, 20, 10, 0) 55%);
    pointer-events: none;
}

.product-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 20, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-details {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.product-description {
    font-size: 1.05rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.9;
}

.product-price-tag {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-brand);
}

/* Order Section (Gorgeous Layout) */
.order {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(240, 247, 255, 0.20) 50%, rgba(255, 255, 255, 0.25) 100%),
                url('../assets/images/order_wallpaper.jpg') no-repeat center center !important;
    background-size: cover !important;
    padding: 30px 0;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0;
    background-color: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.order-info-panel {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d2747 100%);
    color: var(--white);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.order-info-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.order-panel-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.3;
}

.order-panel-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.order-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.order-benefit-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(240, 220, 160, 0.15);
    border: 1px solid rgba(240, 220, 160, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-brand);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.benefit-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.quick-call-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-call-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.quick-call-link {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary-brand);
    text-decoration: none;
}

.order-form-panel {
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 16px 22px;
    font-size: 1.05rem;
    border-radius: 16px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #fcf9f2 50%, #f5eedc 100%);
    color: var(--primary-dark);
    transition: var(--transition);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus {
    border-color: var(--secondary-brand);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15), inset 0 2px 4px rgba(0,0,0,0.01);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e40af'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-size: 20px;
    padding-left: 50px;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 247, 255, 0.45) 50%, rgba(255, 255, 255, 0.50) 100%),
                url('../assets/images/reviews_bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card-fancy {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.review-card-fancy::before {
    display: none;
}

.review-card-fancy:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-brand);
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.review-comment {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-brand);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.reviewer-name h5 {
    font-size: 1.05rem;
    font-weight: 700;
}

.reviewer-name p {
    font-size: 0.85rem;
    color: var(--gray-text);
}

/* Location Section */
.location {
    padding: 24px;
    background: var(--primary-dark);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    align-items: stretch;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.location::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.location-info-panel {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-card-fancy {
    background: rgba(255, 255, 255, 0.97);
    padding: 36px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.location-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.location-detail-row:last-child {
    margin-bottom: 0;
}

.location-detail-icon {
    font-size: 1.8rem;
    color: var(--primary-brand);
    flex-shrink: 0;
}

.location-detail-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-detail-text p {
    font-size: 0.95rem;
    color: var(--gray-text);
}

.map-wrapper {
    min-height: 500px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    left: 35px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    font-size: 2.2rem;
    transition: var(--transition);
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 12px 35px rgba(18, 140, 126, 0.6);
}

/* Success Modal */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(10, 17, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    max-width: 520px;
    width: 92%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255,255,255,0.4);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 4.5rem;
    color: var(--whatsapp-green);
    margin-bottom: 25px;
}

.modal-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 1.05rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 20px 0 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 35px;
}

.footer-info .logo-text {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 12px rgba(100, 180, 255, 0.4));
    transition: var(--transition);
}

.footer-logo:hover .logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(100, 180, 255, 0.6));
    transform: scale(1.05);
}

.footer-info p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 360px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-brand);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-brand);
    transform: translateX(-5px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.footer-contact-item i {
    color: var(--secondary-brand);
    font-size: 1.15rem;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-mock {
        font-size: 4.2rem;
    }
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .order-wrapper {
        grid-template-columns: 1fr;
    }
    .order-info-panel {
        padding: 50px 40px;
    }
    .location {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 30px;
    }
    .location-info-panel {
        padding: 0;
    }
    .map-wrapper {
        min-height: 380px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .header-cta {
        display: none; /* Hide top header button on mobile, links take care of it */
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 998;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-links.active {
        left: 0;
    }
    .hero-title-mock {
        font-size: 3.2rem;
    }
    .hero-subtitle-1 {
        font-size: 1.6rem;
    }
    .hero-subtitle-2 {
        font-size: 1.05rem;
    }
    .hero-actions-mock {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-actions-mock .btn {
        width: 100%;
    }
    .hero-stats-mock {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .order-form-panel {
        padding: 40px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-title {
        font-size: 2rem;
    }
    .about-header {
        padding: 0;
    }
    .about-chef-img {
        min-height: 300px;
    }
    .about-floating-badge {
        bottom: 12px;
        right: 12px;
        padding: 10px 16px;
    }
    .products {
        padding: 90px 0;
    }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .product-img-container {
        height: 210px;
    }
    .product-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
}

/* Invoice Modal Custom Style */
.invoice-modal-content {
    max-width: 580px;
    width: 92%;
    padding: 35px;
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: right;
    animation: fadeInUp 0.4s ease-out;
}

.invoice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.invoice-logo-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.invoice-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.invoice-company-details h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.invoice-company-details p {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 3px;
}

.invoice-divider {
    height: 3px;
    background: linear-gradient(to left, var(--primary-brand), rgba(212, 175, 55, 0.05));
    margin-bottom: 22px;
    border-radius: 10px;
}

.invoice-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-right: 12px;
    border-right: 4px solid var(--primary-brand);
    line-height: 1;
}

.invoice-details-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #fcf9f2 50%, #f5eedc 100%);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    margin-bottom: 22px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(30, 20, 10, 0.08);
}

.invoice-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.invoice-row.full-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-bottom: none;
    padding-bottom: 0;
}

.invoice-label {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.invoice-value {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
}

.invoice-row.full-row .invoice-value {
    text-align: right;
    width: 100%;
    background: var(--white);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    min-height: 50px;
    line-height: 1.5;
}

.invoice-footer-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--whatsapp-green);
    font-weight: 700;
    margin-bottom: 25px;
    background-color: rgba(16, 185, 129, 0.08);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.invoice-actions {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 15px;
}

.invoice-actions .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    border-radius: 12px;
    width: 100%;
    height: 50px;
}

.invoice-actions .btn-whatsapp {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}

.invoice-actions #sendWhatsAppOrder {
    width: 100%;
    min-height: 56px;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    gap: 10px;
}

.invoice-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 480px) {
    .invoice-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .invoice-actions .btn {
        height: auto;
    }
    .invoice-modal-content {
        padding: 24px;
    }
}

/* Certificates Section */
.certificates {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(240, 247, 255, 0.10) 50%, rgba(255, 255, 255, 0.15) 100%),
                url('../assets/images/certificates_wallpaper.jpg') no-repeat center center !important;
    background-size: cover !important;
    padding: 30px 0;
}

.certificates-meta {
    display: block;
    color: var(--primary-brand);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.certificates-full-wrapper {
    width: 100%;
    padding: 0 40px;
    max-width: 1920px;
    margin: 0 auto;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.cert-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-brand);
}

.cert-img-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.35;
    background-color: var(--white);
}

/* ---- Crystal Glass Overlay on each certificate image ---- */
.cert-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(200,220,255,0.18) 0%,
            rgba(255,255,255,0.0) 40%,
            rgba(255,255,255,0.0) 60%,
            rgba(180,210,255,0.12) 100%);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

/* Glass border shimmer */
.cert-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid rgba(160,200,255,0.45);
    z-index: 3;
    pointer-events: none;
}

.cert-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.cert-card:hover .cert-img-container img {
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 4;
}

.cert-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-card:hover .cert-overlay i {
    transform: scale(1);
}

@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Responsive Design for About Modern */
@media (max-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-gallery-box {
        order: 2;
    }
    .about-text-box {
        order: 1;
        padding-right: 0;
    }
    .about-img-main img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 80px 0;
    }
    .about-title-modern {
        font-size: 2.2rem;
    }
    .badge-top-right {
        top: 20px;
        right: 10px;
        padding: 12px 16px;
    }
    .badge-bottom-left {
        bottom: 10px;
        left: 10px;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    gap: 10px;
}

.invoice-actions .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

@media (max-width: 480px) {
    .invoice-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .invoice-actions .btn {
        height: auto;
    }
    .invoice-modal-content {
        padding: 24px;
    }
}

/* Certificates Section */
.certificates {
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.55) 0%, rgba(230, 240, 255, 0.45) 50%, rgba(241, 245, 249, 0.50) 100%),
                url('../assets/images/certificates_wallpaper.jpg') no-repeat center center;
    background-size: cover;
    padding: 30px 0;
}

.certificates-meta {
    display: block;
    color: var(--primary-brand);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.certificates-full-wrapper {
    width: 100%;
    padding: 0 40px;
    max-width: 1920px;
    margin: 0 auto;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.cert-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-brand);
}

.cert-img-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.35;
    background-color: var(--white);
}

/* ---- Crystal Glass Overlay on each certificate image ---- */
.cert-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(200,220,255,0.18) 0%,
            rgba(255,255,255,0.0) 40%,
            rgba(255,255,255,0.0) 60%,
            rgba(180,210,255,0.12) 100%);
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

/* Glass border shimmer */
.cert-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid rgba(160,200,255,0.45);
    z-index: 3;
    pointer-events: none;
}

.cert-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.cert-card:hover .cert-img-container img {
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 64, 175, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 4;
}

.cert-overlay i {
    color: var(--white);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: var(--transition);
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-card:hover .cert-overlay i {
    transform: scale(1);
}

@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Responsive Design for About Modern */
@media (max-width: 1024px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-gallery-box {
        order: 2;
    }
    .about-text-box {
        order: 1;
        padding-right: 0;
    }
    .about-img-main img {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-modern {
        padding: 80px 0;
    }
    .about-title-modern {
        font-size: 2.2rem;
    }
    .badge-top-right {
        top: 20px;
        right: 10px;
        padding: 12px 16px;
    }
    .badge-bottom-left {
        bottom: 10px;
        left: 10px;
        padding: 12px 16px;
    }
    .badge-content-glass strong {
        font-size: 1.1rem;
    }
    .badge-icon-glass {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* --- Alternating Section Backgrounds Override --- */
.board { background-color: var(--white) !important; }
.products { background-color: var(--white) !important; }
.reviews { background-color: var(--bg-brand-light) !important; }
}
/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(rgba(253, 251, 247, 0.75), rgba(245, 238, 220, 0.85)), url('../assets/images/mnn7n.jpeg') center/cover no-repeat fixed !important;
    position: relative;
}
.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}


.faq-question:hover {
    color: var(--primary-brand);
}
.faq-question i {
    color: var(--primary-brand);
    transition: transform 0.3s ease;
}

.faq-item.active 
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/* ===== Factory Bento Gallery ===== */
.factory-bento-wrapper {
    margin-top: 60px;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    grid-template-areas: 
        "big small1"
        "big small2"
        "big small3";
    min-height: 600px;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bento-card:hover img {
    transform: scale(1.05);
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-card.big {
    grid-area: big;
}
.bento-card.small1 {
    grid-area: small1;
}
.bento-card.small2 {
    grid-area: small2;
}
.bento-card.small3 {
    grid-area: small3;
}

.bento-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 40px;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.6) 60%, transparent 100%);
    color: var(--white);
    text-align: right;
}

.bento-card.small1 .bento-content,
.bento-card.small2 .bento-content,
.bento-card.small3 .bento-content {
    padding: 20px 30px;
}

.bento-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.bento-card.small1 h4,
.bento-card.small2 h4,
.bento-card.small3 h4 {
    font-size: 1.4rem;
}

.bento-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.bento-card.small1 p,
.bento-card.small2 p,
.bento-card.small3 p {
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "big"
            "small1"
            "small2"
            "small3";
        min-height: auto;
    }
    .bento-card.big {
        height: 400px;
    }
    .bento-card.small1,
    .bento-card.small2,
    .bento-card.small3 {
        height: 250px;
    }
}


@media (min-width: 1025px) {
    .board-grid {
        grid-template-columns: 1fr;
    }
    .board-card-mock {
        flex-direction: row;
        align-items: stretch;
    }
    .board-card-img-container {
        flex: 0 0 380px;
        height: auto;
    }
    .board-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: right;
        padding: 50px;
    }
    .card-separator {
        margin: 0 0 20px 0;
    }
}

/* ===== Premium Board Section ===== */
.board-premium {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fcf9f2 50%, #f5eedc 100%);
    position: relative;
    overflow: hidden;
}

.board-premium::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55,0.08) 0%, rgba(212, 175, 55,0) 70%);
    border-radius: 50%;
}

.board-meta-premium {
    display: inline-block;
    color: var(--primary-brand);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.board-title-premium {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.board-subtitle-premium {
    font-size: 1.15rem;
    color: var(--gray-text);
    margin-bottom: 60px;
}

.board-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.leader-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.leader-image-wrapper {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image-wrapper img {
    transform: scale(1.08);
}

.leader-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 20, 10, 0.9) 0%, rgba(30, 20, 10, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-socials {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-socials {
    transform: translateY(0);
}

.leader-socials i {
    width: 45px;
    height: 45px;
    background: var(--primary-brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.leader-socials i:hover {
    background: var(--primary-dark);
}

.leader-info {
    padding: 35px 30px;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.leader-info span {
    font-size: 1.05rem;
    color: var(--primary-brand);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.leader-line {
    width: 40px;
    height: 3px;
    background: var(--primary-brand);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.leader-info p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.8;
}

/* ===== Ultra Premium Board Section ===== */
.board-ultra {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.board-ultra::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.board-header-ultra {
    text-align: center;
    margin-bottom: 80px;
}

.board-meta-ultra {
    font-size: 1.15rem;
    color: var(--primary-brand);
    font-weight: 800;
    letter-spacing: 2px;
}

.board-title-ultra {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 10px 0 25px;
    letter-spacing: -1px;
}

.board-line-ultra {
    width: 80px;
    height: 4px;
    background: var(--primary-brand);
    margin: 0 auto;
    border-radius: 2px;
}

.board-list-ultra {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.leader-row-ultra {
    display: flex;
    align-items: center;
    gap: 70px;
    background: var(--light-bg);
    border-radius: 40px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leader-row-ultra:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.leader-row-ultra.reverse {
    flex-direction: row-reverse;
}

.leader-img-ultra {
    flex: 0 0 450px;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.leader-img-ultra img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
}

.leader-row-ultra:hover .leader-img-ultra img {
    transform: scale(1.05);
}

.leader-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(30, 20, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-brand);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.leader-content-ultra {
    flex: 1;
    padding: 20px;
}

.leader-name-ultra {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.leader-role-ultra {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brand);
    display: block;
    margin-bottom: 35px;
}

.leader-desc-ultra {
    font-size: 1.25rem;
    color: var(--gray-text);
    line-height: 1.9;
    max-width: 95%;
}

@media (max-width: 1024px) {
    .leader-row-ultra, .leader-row-ultra.reverse {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }
    .leader-img-ultra {
        flex: 0 0 450px;
        width: 100%;
    }
    .leader-content-ultra {
        text-align: center;
        padding: 0;
    }
    .leader-desc-ultra {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .leader-img-ultra {
        flex: 0 0 350px;
        height: 400px;
    }
    .leader-name-ultra {
        font-size: 2.4rem;
    }
    .board-title-ultra {
        font-size: 2.8rem;
    }
}

.product-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-brand);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}

.product-card-cta:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.product-card-cta i {
    font-size: 0.9rem;
}

.product-category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(30, 20, 10, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--primary-brand);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 800;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.product-details > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-img-container {
        height: 250px;
    }
}

/* ===== Factory Section ===== */
.factory-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #fcf9f2 50%, #f5eedc 100%);
}

/* ===== Simple About Section ===== */
.about-simple-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%);
}

.about-simple-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-simple-text {
    flex: 1.1;
}

.about-simple-text .section-title span {
    background: linear-gradient(135deg, var(--primary-brand) 0%, var(--accent-brand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-simple-img {
    flex: 0.9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
}

.about-simple-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 1;
    pointer-events: none;
}

.about-simple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-simple-img:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .about-simple-grid {
        flex-direction: column;
        text-align: center;
    }
}


/* ===== New FAQ Styles matching User Image ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Spacing between boxes */
}

.faq-item {
    background-color: #fcfbfa; /* Slightly off-white */
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
}

.faq-icon-wrapper {
    width: 35px;
    height: 35px;
    background-color: #f2e9dc; /* Circle background for arrow */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon-wrapper i {
    color: #665c52;
    font-size: 0.9rem;
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #fcfbfa;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .faq-answer p {
        padding: 0 20px 20px;
    }
}


/* ===== Updated Separated Order Section ===== */
.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.order-info-panel {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-form-panel {
    /* Cream in gold gradient */
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.order-form-panel label {
    color: var(--primary-dark);
    font-weight: 700;
}

.order-form-panel .form-control {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-dark);
}

.order-form-panel .form-control:focus {
    background: var(--white);
    border-color: var(--primary-brand);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

@media (max-width: 992px) {
    .order-wrapper {
        grid-template-columns: 1fr;
    }
}


/* ===== Fixes for Text Visibility and Wasted Space in Order Section ===== */
.order-wrapper {
    gap: 20px !important;
    align-items: stretch !important; /* Prevents tall empty panels */
}

.order-info-panel {
    padding: 50px !important; /* Reduced padding to save space */
    color: #111 !important;
}

.order-info-panel h2, .order-info-panel h3, .order-info-panel h5, .order-panel-title {
    color: #000 !important;
    font-weight: 900 !important;
}

.order-info-panel p {
    color: #333 !important;
    font-weight: 600 !important;
}

.order-form-panel {
    padding: 50px !important; /* Reduced padding to save space */
}

.order-form-panel label {
    color: #000 !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
    display: block;
}

.order-form-panel .form-control {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(212, 175, 55, 0.6) !important;
}

/* Make placeholders very visible */
.order-form-panel .form-control::placeholder {
    color: #555 !important;
    font-weight: 600 !important;
    opacity: 1 !important;
}

.benefit-info h5 {
    color: #000 !important;
}

.benefit-info p {
    color: #444 !important;
}


/* ===== Icons and Quick Call Section Fixes ===== */
.benefit-icon-wrap {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.benefit-icon-wrap i {
    color: #2c1e0a !important; /* Dark brown for high contrast */
    font-size: 1.2rem !important;
    opacity: 1 !important;
    display: inline-block !important;
    visibility: visible !important;
}

.quick-call-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15) !important;
    padding: 25px !important;
    margin-top: 30px !important;
}

.quick-call-section p {
    color: #2c1e0a !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
}

.quick-call-link {
    color: #b8860b !important; /* Dark goldenrod */
    text-shadow: 1px 1px 0px rgba(255,255,255,0.5) !important;
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    display: inline-block !important;
    transition: transform 0.3s ease !important;
}

.quick-call-link:hover {
    transform: scale(1.05) !important;
    color: #2c1e0a !important;
}


/* FAQ Expand Fix */
.faq-item.active .faq-answer {
    max-height: 800px;
}


/* ===== Fixes for About Text and Board Ultra Section ===== */
.about-desc-modern {
    color: #111 !important; /* Make text very clear and dark */
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
}

.board-ultra {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%) !important;
}

.board-title-ultra, .board-meta-ultra {
    color: #2c1e0a !important; /* Dark text for header */
}

.leader-row-ultra {
    background: #ffffff !important;
    border: 2px solid rgba(212, 175, 55, 0.6) !important; /* Golden border/outline */
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2) !important;
    border-radius: 20px !important;
}

.leader-name-ultra {
    color: #000 !important;
    font-weight: 900 !important;
}

.leader-role-ultra {
    color: #b8860b !important; /* Dark Gold */
    font-weight: 800 !important;
}

.leader-desc-ultra {
    color: #222 !important;
    font-weight: 600 !important;
}


/* ===== Why Choose Us Section ===== */
.why-us-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%) !important;
    position: relative;
    overflow: hidden;
}

.why-us-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-text {
    flex: 1.2;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111;
    background: linear-gradient(135deg, #fdfbf7 0%, #ffffff 100%);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.why-us-list li:hover {
    transform: translateX(-5px); /* RTL moves right */
    border-color: var(--primary-brand);
}

.why-us-list i {
    color: var(--primary-brand);
    font-size: 1.4rem;
    margin-top: 3px;
}

.why-us-img {
    flex: 0.8;
    position: relative;
}

.why-us-img img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-us-img .img-backdrop {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    background: linear-gradient(135deg, #fdfbf7 0%, #e8d5a5 100%);
    border-radius: 30px;
    z-index: 1;
}

@media (max-width: 992px) {
    .why-us-grid {
        flex-direction: column;
        text-align: right;
    }
    
    .why-us-img {
        margin-top: 40px;
    }
}


/* ===== Cream in Gold Background for Factory and Certificates ===== */
.factory-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%) !important;
}

.certificates {
    background: linear-gradient(135deg, #fdfbf7 0%, #f5eedc 50%, #e8d5a5 100%) !important;
}

/* Ensure text inside these sections remains visible (dark) */
.factory-section .section-title, .certificates .section-title {
    color: #2c1e0a !important;
}

.factory-section .certificates-meta, .certificates .certificates-meta {
    color: #b8860b !important; /* Dark gold */
}

/* Update text in factory bento cards to be dark if they were light */
.bento-content h4 {
    color: #ffffff !important; /* Since bento contents usually have a dark overlay */
}


/* ===== Force FAQ Background Image ===== */
.faq-section {
    background: linear-gradient(rgba(253, 251, 247, 0.75), rgba(245, 238, 220, 0.85)), url('../assets/images/mnn7n.jpeg') center/cover no-repeat fixed !important;
    background-size: cover !important;
    background-position: center !important;
}


/* ===== Fix Cropped Images (Make them fully visible without white bars) ===== */
.about-img-main img,
.about-img-secondary img,
.about-img-tertiary img,
.board-card-img-container img,
.product-img-container img,
.bento-card img,
.leader-image-wrapper img,
.leader-img-ultra img,
.about-simple-img img,
.why-us-img img {
    object-fit: cover !important;
    object-position: center;
}

/* ============================================================
   ===== COMPREHENSIVE MOBILE RESPONSIVENESS (POLISHED) =======
   ============================================================ */

/* ── Tablet & Small Desktop (max-width: 991px) ─────────────────────────────── */
@media (max-width: 991px) {
    .container { padding: 0 20px; }
    section { padding: 40px 0; }
    
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }

    /* Header & Nav */
    .menu-toggle {
        display: block;
        font-size: 1.6rem;
        z-index: 1001;
        color: var(--white);
    }
    .header-cta { display: none; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: linear-gradient(180deg, rgba(30, 20, 10, 0.98), rgba(20, 15, 8, 0.98));
        flex-direction: column;
        align-items: center; justify-content: center;
        padding: 80px 20px 40px; gap: 15px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
        overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        font-size: 1.1rem; padding: 12px 0; width: 100%; text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .logo-img { height: 50px; }
    .logo-text { font-size: 1.25rem; }

    /* Hero */
    .hero { padding-top: 110px; padding-bottom: 50px; min-height: auto; background-attachment: scroll; }
    .hero-title-mock { font-size: 3rem; margin-bottom: 15px; }
    .hero-badge-mock { font-size: 0.9rem; padding: 8px 16px; }
    .hero-subtitle-2 { font-size: 1rem; margin-bottom: 30px; }
    
    .hero-actions-mock { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions-mock .btn { width: 100%; padding: 14px; font-size: 1.05rem; }
    
    .hero-stats-mock { grid-template-columns: repeat(3, 1fr); gap: 10px; padding-top: 25px; }
    .stat-num-mock { font-size: 1.5rem; }
    .stat-label-mock { font-size: 0.8rem; }
    .stat-icon-mock { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 8px; }

    /* Grids to 1 column */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "big" "small1" "small2" "small3";
        min-height: auto;
    }
    .bento-card.big { height: auto; aspect-ratio: 16 / 9; }
    .bento-card.small1, .bento-card.small2, .bento-card.small3 { height: auto; aspect-ratio: 4 / 3; }
    
    .about-simple-grid { flex-direction: column; gap: 25px; text-align: center; }
    .why-us-grid { flex-direction: column; text-align: right; gap: 30px; }
    
    .leader-row-ultra, .leader-row-ultra.reverse { flex-direction: column; padding: 20px; gap: 20px; border-radius: 20px !important; }
    .leader-img-ultra { flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 3 / 4; }
    .leader-content-ultra { text-align: center; padding: 0 10px; }
    .leader-name-ultra { font-size: 2.2rem; }
    
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-img-container { height: auto; aspect-ratio: 4 / 3; }
    
    /* Order Section Fixes */
    .order-wrapper { grid-template-columns: 1fr !important; gap: 15px !important; }
    .order-info-panel, .order-form-panel { padding: 30px 20px !important; border-radius: 20px !important; }
    .order-panel-title { font-size: 1.6rem !important; text-align: center; }
    .order-panel-subtitle { text-align: center; font-size: 0.95rem !important; margin-bottom: 25px !important; }
    .order-benefits { gap: 15px; }
    .quick-call-section { padding: 20px !important; margin-top: 25px !important; text-align: center; }
    .form-grid { grid-template-columns: 1fr; gap: 15px; }
    .form-group.full-width { grid-column: span 1; }
    .form-control { padding: 12px 18px !important; font-size: 0.95rem !important; border-radius: 12px !important; }

    /* Certificates & Others */
    .certificates-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 15px; }
    .location { grid-template-columns: 1fr; padding: 20px; gap: 15px; }
    .location-info-panel { padding: 0; }
    .map-wrapper { min-height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .footer-contact-item { justify-content: center; }
    .copyright { flex-direction: column; gap: 10px; text-align: center; }
    
    .invoice-modal-content { max-width: 95%; padding: 20px; border-radius: 16px; }
    .invoice-actions { grid-template-columns: 1fr; gap: 10px; }
    .invoice-actions .btn { height: auto; padding: 12px; }
    
    .faq-section { padding: 50px 0; background-attachment: scroll !important; }
    .hero, .products, .reviews { background-attachment: scroll; }
}

/* ── Mobile (max-width: 768px) & Small Mobile ──────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    section { padding: 35px 0; }
    
    .section-title { font-size: 1.7rem; }
    
    /* Header */
    header { padding: 5px 0; }
    .logo-img { height: 42px; }
    .logo-text { font-size: 1.1rem; }
    .menu-toggle { font-size: 1.4rem; }
    
    /* Hero */
    .hero { padding-top: 90px; padding-bottom: 40px; }
    .hero-title-mock { font-size: 2.2rem; letter-spacing: -0.5px; }
    .hero-badge-mock { font-size: 0.75rem; padding: 6px 12px; }
    .hero-subtitle-2 { font-size: 0.9rem; margin-bottom: 25px; line-height: 1.6; }
    
    .stat-num-mock { font-size: 1.3rem; }
    .stat-label-mock { font-size: 0.7rem; }
    .stat-icon-mock { width: 34px; height: 34px; font-size: 0.9rem; border-radius: 8px; margin-bottom: 6px; }
    
    /* Bento */
    .bento-card.big { height: auto; aspect-ratio: 16 / 9; }
    .bento-card.small1, .bento-card.small2, .bento-card.small3 { height: auto; aspect-ratio: 4 / 3; }
    .bento-content { padding: 15px; }
    .bento-content h4 { font-size: 1.15rem !important; margin-bottom: 4px; }
    .bento-content p { font-size: 0.8rem; }
    
    /* About & Board */
    .about-desc-modern { font-size: 0.95rem !important; line-height: 1.6 !important; }
    .about-title-modern { font-size: 1.6rem; }
    .leader-img-ultra { height: auto; aspect-ratio: 3 / 4; border-radius: 16px; }
    .leader-name-ultra { font-size: 1.7rem; }
    .leader-role-ultra { font-size: 1rem; margin-bottom: 15px; }
    .leader-desc-ultra { font-size: 0.9rem; line-height: 1.6; }
    .board-title-ultra { font-size: 2rem; margin-bottom: 15px; }
    .leader-experience-badge { padding: 8px 16px; font-size: 0.85rem; bottom: 15px; right: 15px; }

    /* Products */
    .product-img-container { height: auto; aspect-ratio: 4 / 3; }
    .product-name { font-size: 1.3rem; margin-bottom: 10px; }
    .product-description { font-size: 0.9rem; margin-bottom: 15px; line-height: 1.6; }
    .product-details { padding: 20px 15px; }
    .product-card-cta { font-size: 1rem; }
    
    /* Certificates */
    .certificates-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    
    /* Reviews & Location */
    .review-card-fancy { padding: 20px; border-radius: 16px; }
    .review-comment { font-size: 0.9rem; }
    .location-card-fancy { padding: 20px; border-radius: 16px; }
    .location-detail-row { gap: 12px; margin-bottom: 15px; }
    .location-detail-text h4 { font-size: 1.05rem; }
    .location-detail-text p { font-size: 0.85rem; }
    .map-wrapper { min-height: 250px; border-radius: 16px; overflow: hidden; }

    /* Order Section Extreme Polish */
    .order-info-panel, .order-form-panel { padding: 25px 15px !important; border-radius: 16px !important; }
    .order-panel-title { font-size: 1.4rem !important; }
    .order-panel-subtitle { font-size: 0.9rem !important; margin-bottom: 20px !important; }
    .benefit-info h5 { font-size: 1rem !important; }
    .benefit-info p { font-size: 0.8rem !important; }
    .benefit-icon-wrap { width: 38px !important; height: 38px !important; font-size: 1rem !important; }
    .quick-call-link { font-size: 1.4rem !important; }
    
    .form-control { padding: 12px 16px !important; font-size: 0.9rem !important; }
    .order-form-panel label { font-size: 0.95rem !important; margin-bottom: 6px !important; }
    textarea.form-control { min-height: 100px; }

    /* Invoice */
    .invoice-header { gap: 8px; }
    .invoice-logo-box { width: 45px; height: 45px; }
    .invoice-company-details h3 { font-size: 1.1rem; }
    .invoice-title { font-size: 1.1rem; margin-bottom: 15px; }
    .invoice-row { flex-direction: column; align-items: flex-start; gap: 4px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 8px; margin-bottom: 8px; }
    .invoice-label { font-size: 0.8rem; color: #555; }
    .invoice-value { font-size: 0.95rem; text-align: right; color: #000; font-weight: 700; }
    
    /* FAQ */
    .faq-question { padding: 15px; font-size: 0.95rem; }
    .faq-answer p { padding: 0 15px 15px; font-size: 0.9rem; }
    .faq-icon-wrapper { width: 28px; height: 28px; }

    /* Footer */
    .footer-title { font-size: 1.1rem; margin-bottom: 15px; }
    .footer-links a, .footer-contact-item { font-size: 0.9rem; }
    .copyright { font-size: 0.8rem; }
    .footer-logo .logo-img { height: 60px !important; }

    /* WhatsApp Float */
    .whatsapp-float { width: 50px; height: 50px; bottom: 15px; left: 15px; font-size: 1.8rem; }

    /* Why Us */
    .why-us-list li { padding: 10px 14px; font-size: 0.95rem; gap: 10px; border-radius: 10px; }
    .why-us-list i { font-size: 1.1rem; }
}

/* ── Mobile Menu Overlay (prevents scrolling behind menu) ──── */
body.menu-open { overflow: hidden; }

/* ── Touch-Friendly Improvements ──────────────────────────── */
@media (hover: none) and (pointer: coarse) {
    .product-card-fancy:hover, .cert-card:hover, .review-card-fancy:hover, .board-card-mock:hover, .leader-card:hover { transform: none; }
    .nav-links a { min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .btn { min-height: 44px; }
    .hero, .products, .reviews, .faq-section { background-attachment: scroll !important; }
}
