* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #6B0F0A;
    --accent-gold: #D4A93D;
    --gold-highlight: #F2D27A;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(107, 15, 10, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-gold);
    font-size: 0.75rem;
    display: block;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    color: #333;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-highlight));
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(212, 169, 61, 0.08);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, var(--primary), #8B1F1A);
    box-shadow: 0 4px 12px rgba(107, 15, 10, 0.3);
}

.nav-menu a.active::before {
    display: none;
}

.btn-cta {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 169, 61, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 169, 61, 0.4);
}

.btn-cta svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hero {
    background: url('../images/ultah20.jpeg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 15, 10, 0.8), rgba(139, 31, 26, 0.7));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-info {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-info-item svg {
    flex-shrink: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-primary {
    background: var(--accent-gold);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 169, 61, 0.3);
}

.btn-primary:hover {
    background: var(--gold-highlight);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 169, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn-secondary svg {
    transition: transform 0.3s;
}

.btn-secondary:hover svg {
    transform: translateX(5px);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
    margin-top: 3rem;
}

.features {
    padding: 5rem 0;
}

.menu-preview {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.menu-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.menu-preview .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 169, 61, 0.3);
}

.category-img {
    background: linear-gradient(135deg, var(--primary), #8B1F1A);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    background-position: center 30%;
    background-size: cover;
}

.category-img::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s;
}

.category-card:hover .category-img::after {
    transform: scale(1);
}

.category-card h3 {
    padding: 2rem 1.5rem 0.5rem;
    text-align: center;
    color: var(--primary);
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
}

.category-card p {
    padding: 0 1.5rem 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.bestseller {
    padding: 5rem 0;
    background: url('../images/ultah16.jpeg') center/cover no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.bestseller::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.bestseller::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 169, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.bestseller .container {
    position: relative;
    z-index: 1;
}

.bestseller h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.bestseller-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.bestseller-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(107, 15, 10, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bestseller-card:hover::after {
    opacity: 1;
}

.bestseller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(107, 15, 10, 0.15);
}

.bestseller-card:nth-child(2) {
    transform: translateY(20px);
}

.bestseller-card:nth-child(2):hover {
    transform: translateY(10px);
}

.bestseller-img {
    background: linear-gradient(135deg, var(--primary), #8B1F1A);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.bestseller-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.bestseller-card:hover .bestseller-img::before {
    left: 100%;
}

.bestseller-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary);
    font-size: 1.4rem;
}

.bestseller-card p {
    padding: 0 1.5rem;
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.bestseller-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-section {
    background: var(--primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-faq {
    background: url('../images/ultah14.jpeg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #8B1F1A 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.menu-section,
.about-section,
.gallery-section,
.faq-section,
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--primary);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.menu-card .price {
    display: block;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--gold-highlight) 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: #f9f9f9;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.faq-section {
    background: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-card:hover {
    box-shadow: 0 8px 25px rgba(212, 169, 61, 0.15);
}

.faq-card.active {
    border-left-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(212, 169, 61, 0.2);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 2rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: #fafafa;
}

.faq-header h3 {
    flex: 1;
    color: var(--primary);
    font-size: 1.15rem;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-card.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-label {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 169, 61, 0.25);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-wrapper {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.8rem 2rem;
}

.faq-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    color: var(--primary);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.wa-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.wa-float-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    transform-style: preserve-3d;
}

.wa-float-btn::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3) 0%, rgba(18, 140, 126, 0.3) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.wa-float-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    top: 0;
    left: 0;
    transform: translateZ(10px);
}

.wa-float:hover .wa-float-btn {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 15px 40px rgba(0, 0, 0, 0.2);
}

.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--primary), #8B1F1A);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(107, 15, 10, 0.3);
    --progress: 0deg;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-gold) var(--progress), transparent var(--progress));
    transition: all 0.1s linear;
}

.scroll-top svg {
    position: relative;
    z-index: 1;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 15, 10, 0.4);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 0.8rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

.why-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 15, 10, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-us-text > p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.why-us-list {
    list-style: none;
}

.why-us-list li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.why-us-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 169, 61, 0.15);
}

.why-us-list .icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(212, 169, 61, 0.3);
}

.why-us-list h4 {
    color: var(--primary);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.why-us-list p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.why-us-image {
    height: 550px;
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 20px 60px rgba(212, 169, 61, 0.25);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 169, 61, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem 2.5rem;
    text-align: center;
    background: white;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: rgba(212, 169, 61, 0.1);
    font-family: Georgia, serif;
}

.testimonial-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #8B1F1A);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(107, 15, 10, 0.2);
    position: relative;
    z-index: 1;
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.testimonial-card span {
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 500;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(212, 169, 61, 0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--gold-highlight), var(--accent-gold));
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 30px rgba(212, 169, 61, 0.4);
}

.carousel-btn.prev {
    left: -70px;
}

.carousel-btn.next {
    right: -70px;
}

.cta-final {
    padding: 6rem 0;
    background: url('../images/ultah25.jpeg') center/cover no-repeat;
    background-attachment: scroll;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 169, 61, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.footer-logo h3 {
    margin-bottom: 0;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p {
    color: #ccc;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .category-grid,
    .bestseller-grid {
        grid-template-columns: 1fr;
    }
    
    .category-img {
        height: 350px;
    }
    
    .bestseller-img {
        height: 350px;
    }

    .bestseller-card:nth-child(2) {
        transform: translateY(0);
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us h2 {
        font-size: 2rem;
    }



    .why-us-list li:hover {
        transform: translateX(5px);
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

.base-cake-info {
    text-align: center;
    margin: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.base-cake-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.base-cake-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.base-cake-list span {
    background: rgba(212, 169, 61, 0.9);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
}

.hero-menu {
    background: url('../images/ultah9.jpeg') center/cover no-repeat;
}

.hero-gallery {
    background: url('../images/wedding3.jpeg') center/cover no-repeat;
}

.hero-tentang {
    background: url('../images/ultah15.jpeg') center/cover no-repeat;
}

.hero-faq {
    background: url('../images/ultah13.jpeg') center/cover no-repeat;
}

.hero-kontak {
    background: url('../images/ultah6.jpeg') center/cover no-repeat;
}

@media (max-width: 768px) {
    .btn-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .btn-cta svg {
        width: 14px;
        height: 14px;
    }
}

.menu-category {
    margin-bottom: 5rem;
}

.menu-category h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 169, 61, 0.2);
}

.menu-img {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #8B1F1A);
}

.menu-item h3 {
    padding: 1rem;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.menu-item.special {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
}

.menu-item .price {
    text-align: center;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0 1rem;
}

.menu-item .desc {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 0.5rem 1rem 1.5rem;
}



.menu-item h3 {
    padding: 1rem 1rem 0.5rem;
}

.menu-item .price:not(.menu-item.special .price) {
    padding: 0 1rem 1rem;
    font-size: 1rem;
}

.menu-item {
    border-radius: 20px;
    border: 3px solid transparent;
    position: relative;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--gold-highlight));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 169, 61, 0.25);
    border-color: rgba(212, 169, 61, 0.2);
}

.menu-img::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}

.btn-order {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold), var(--gold-highlight));
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    margin: 0 1rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 169, 61, 0.3);
}

.btn-order:hover {
    background: linear-gradient(135deg, var(--gold-highlight), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 169, 61, 0.4);
}

.menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.menu-subcategory {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin: 2.5rem 0 1.5rem;
    text-align: center;
    font-weight: 600;
}

.menu-item h3 {
    text-align: center !important;
}

.menu-item .price:first-of-type {
    margin-top: 1rem;
}

.menu-item .price {
    text-align: center !important;
}

@media (max-width: 768px) {
    .menu-img {
        height: 350px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 1.8rem;
}

.info-item {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 3px solid var(--accent-gold);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(212, 169, 61, 0.1);
    transform: translateX(5px);
}

.info-item strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.info-item p {
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
}

.contact-form form {
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 4px 15px rgba(212, 169, 61, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 0.5rem;
}

/* Mobile Responsive Fixes untuk layar kecil */
@media (max-width: 768px) {
    * {
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Sembunyikan CTA button di navbar mobile */
    .btn-cta {
        display: none !important;
    }
    
    /* Tambahkan CTA di dalam menu mobile */
    .nav-menu {
        padding-bottom: 1rem;
    }
    
    .nav-menu::after {
        content: '';
        display: block;
        width: 80%;
        margin: 1rem auto 0;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }
    
    /* Hero info responsive */
    .hero-info {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .hero-info-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .hero-info-item svg {
        width: 16px;
        height: 16px;
    }
    
    /* Fix overflow sections */
    .menu-preview,
    .bestseller,
    .why-us,
    .testimonials,
    .cta-final {
        overflow-x: hidden;
    }
    
    /* Base cake list responsive */
    .base-cake-list {
        gap: 0.5rem;
    }
    
    .base-cake-list span {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 390px) {
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu-preview h2,
    .bestseller h2,
    .why-us h2,
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .category-grid,
    .bestseller-grid {
        gap: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .wa-float {
        bottom: 15px;
        left: 15px;
    }
    
    .wa-float-btn {
        width: 55px;
        height: 55px;
    }
    
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile CTA di menu */
.mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }
    
    .mobile-cta a {
        box-shadow: 0 4px 15px rgba(212, 169, 61, 0.3);
    }
}

/* Update Mobile CTA styling */
@media (max-width: 768px) {
    .mobile-cta {
        display: flex !important;
        justify-content: center;
    }
    
    .mobile-cta a {
        width: auto !important;
        max-width: 250px;
        padding: 0.75rem 1.5rem !important;
    }
}

/* Google Maps Section */
.map-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }
    
    .map-section h2 {
        font-size: 1.6rem !important;
    }
    
    .map-wrapper {
        border-radius: 15px;
    }
}

/* Banner Ramadan */
.ramadan-banner {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d8659 100%);
    color: white;
    padding: 2rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(26, 95, 63, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ramadan-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ramadan-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    z-index: 1;
}

.ramadan-banner p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ramadan-banner strong {
    color: #ffd700;
    font-weight: 700;
}

@media (max-width: 768px) {
    .ramadan-banner {
        padding: 1.5rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ramadan-banner h3 {
        font-size: 1.3rem;
    }
    
    .ramadan-banner p {
        font-size: 0.95rem;
    }
}

/* Badge Tidak Tersedia Ramadan */
.unavailable-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 10;
}

.menu-item.unavailable {
    opacity: 0.7;
    position: relative;
}

.menu-item.unavailable .btn-order {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    cursor: not-allowed;
    pointer-events: none;
}

.menu-item.unavailable .menu-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

/* Kategori Tidak Tersedia */
.unavailable-category {
    opacity: 0.7;
}

.unavailable-category .menu-item {
    position: relative;
}

.unavailable-category .menu-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.unavailable-category .btn-order {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    cursor: not-allowed;
    pointer-events: none;
}




@media (max-width: 768px) {
    .hero-info-item {
        flex: 0 1 auto;
    }
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: rgba(212, 169, 61, 0.1);
    color: var(--primary);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: transparent;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1.2rem 0.6rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-toggle::after {
        content: ' ▾';
        font-size: 0.8rem;
    }
    
    .dropdown.active .dropdown-toggle::after {
        content: ' ▴';
    }
}

/* Fix Dropdown Mobile */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu a {
        padding: 0.6rem 1.2rem !important;
        width: auto !important;
        display: inline-block !important;
    }
    
    .nav-menu .dropdown-menu a:hover {
        width: auto !important;
    }
    
    .dropdown-toggle {
        pointer-events: none;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu .dropdown {
        display: none !important;
    }
    
    .nav-menu .mobile-only {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        flex-direction: column;
    }
    
    .nav-menu li:nth-child(1) { order: 1; }
    .nav-menu li:nth-child(2) { order: 2; }
    .nav-menu li:nth-child(3) { order: 3; }
    .nav-menu li:nth-child(6) { order: 4; }
    .nav-menu li:nth-child(7) { order: 5; }
    .nav-menu li:nth-child(8) { order: 6; }
    .nav-menu li:nth-child(5) { order: 7; }
    .nav-menu li:nth-child(9) { order: 8; }
}

@media (max-width: 768px) {
    section[style*="grid-template-columns: 1fr 1fr"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    section[style*="padding: 5rem 0"] > div > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    section[style*="padding: 5rem 0"] > div > div[style*="grid-template-columns: 1fr 1fr"] > div[style*="min-height: 500px"] {
        min-height: 350px !important;
    }
    
    section[style*="padding: 5rem 0"] > div > div[style*="grid-template-columns: 1fr 1fr"] img {
        max-width: 350px !important;
    }
}
