/* =================================
   Global Styles & Reset
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1A1C27;
    color: #F1FAEE;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #FFB703;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #E63946;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================
   Header & Navigation
   ================================= */
.main-header {
    background: rgba(26, 28, 39, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FFB703;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #FFB703;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
    color: #FFB703;
}

/* Mobile Menu Toggle (Checkbox Hack) */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FFB703;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: #F1FAEE;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: #FFB703;
    color: #1A1C27;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 28, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-bottom: 2px solid #FFB703;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .menu-toggle:checked ~ .nav-menu {
        left: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* =================================
   Hero Section
   ================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: linear-gradient(rgba(26, 28, 39, 0.7), rgba(26, 28, 39, 0.7)), url('./img/OCcR2M.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #FFB703;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #A8DADC;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FFB703;
    color: #1A1C27;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #FFB703;
    animation: fadeInUp 1s ease 0.6s backwards;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #FFB703;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   Section Styles
   ================================= */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFB703;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #E63946, #FFB703);
    border-radius: 2px;
}

/* =================================
   Service Description Section
   ================================= */
.service-section {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 183, 3, 0.1));
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-text h3 {
    font-size: 2rem;
    color: #FFB703;
    margin-bottom: 1.5rem;
}

.service-text p {
    color: #F1FAEE;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }
}

/* =================================
   Why Choose Us Section
   ================================= */
.why-section {
    background: #1A1C27;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: rgba(168, 218, 220, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: #FFB703;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 183, 3, 0.2);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #E63946;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFB703;
}

.why-card p {
    color: #8D99AE;
    line-height: 1.6;
}

/* =================================
   Steps Section
   ================================= */
.steps-section {
    background: linear-gradient(135deg, rgba(168, 218, 220, 0.1), rgba(230, 57, 70, 0.1));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(26, 28, 39, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #FFB703;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    background: rgba(26, 28, 39, 0.95);
    transform: translateX(10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #E63946;
    color: #F1FAEE;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #FFB703;
}

.step-card p {
    color: #8D99AE;
}

/* =================================
   Recipe Cards Section
   ================================= */
.recipes-section {
    background: #1A1C27;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.recipe-card {
    background: rgba(168, 218, 220, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recipe-card:hover {
    border-color: #E63946;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
}

.recipe-image {
    height: 250px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-content {
    padding: 2rem;
}

.recipe-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFB703;
}

.recipe-content p {
    color: #8D99AE;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.recipe-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E63946;
}

/* =================================
   Testimonials Section
   ================================= */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), rgba(168, 218, 220, 0.1));
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background: rgba(26, 28, 39, 0.8);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #A8DADC;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #F1FAEE;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: bold;
    color: #FFB703;
    font-size: 1.1rem;
}

.testimonial-rating {
    color: #FFB703;
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* =================================
   Order Form Section
   ================================= */
.form-section {
    background: #1A1C27;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(168, 218, 220, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #FFB703;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFB703;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #8D99AE;
    background: rgba(26, 28, 39, 0.8);
    color: #F1FAEE;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFB703;
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-group label {
    color: #8D99AE;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-group label a {
    color: #FFB703;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #FFB703;
    color: #1A1C27;
    font-weight: bold;
    border: 2px solid #FFB703;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: transparent;
    color: #FFB703;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.3);
}

.error-message {
    background: rgba(230, 57, 70, 0.2);
    color: #E63946;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #E63946;
}

/* =================================
   FAQ Section
   ================================= */
.faq-section {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(255, 183, 3, 0.1));
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 28, 39, 0.8);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #FFB703;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: block;
    color: #FFB703;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 183, 3, 0.1);
}

.faq-toggle {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #8D99AE;
    line-height: 1.6;
}

/* =================================
   Contact Section
   ================================= */
.contact-section {
    background: #1A1C27;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(168, 218, 220, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #A8DADC;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: #E63946;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #FFB703;
    margin-bottom: 1rem;
}

.contact-card p,
.contact-card a {
    color: #F1FAEE;
}

/* =================================
   Footer
   ================================= */
.main-footer {
    background: rgba(26, 28, 39, 0.95);
    padding: 3rem 0 1rem;
    border-top: 2px solid #FFB703;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #FFB703;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #8D99AE;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #A8DADC;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FFB703;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 218, 220, 0.2);
    color: #8D99AE;
}

/* =================================
   Cookie Popup
   ================================= */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(26, 28, 39, 0.98);
    padding: 2rem;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: bottom 0.5s ease;
    border-top: 3px solid #FFB703;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #F1FAEE;
    flex: 1;
}

.cookie-content a {
    color: #FFB703;
    text-decoration: underline;
}

.btn-cookie {
    padding: 0.8rem 2rem;
    background: #FFB703;
    color: #1A1C27;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: #E63946;
    color: #F1FAEE;
    transform: scale(1.05);
}

/* =================================
   Policy Pages
   ================================= */
.policy-page {
    padding: 5rem 0;
    min-height: 80vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(168, 218, 220, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #FFB703;
}

.policy-content h1 {
    color: #FFB703;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    color: #A8DADC;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: #F1FAEE;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #F1FAEE;
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-box {
    background: rgba(255, 183, 3, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 4px solid #FFB703;
}

.contact-info-box h3 {
    color: #FFB703;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: #F1FAEE;
    margin-bottom: 0.5rem;
}

/* =================================
   Thank You Page
   ================================= */
.thankyou-page {
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(168, 218, 220, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid #FFB703;
    box-shadow: 0 15px 50px rgba(255, 183, 3, 0.2);
    text-align: center;
}

.thankyou-box h1 {
    color: #FFB703;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.thankyou-box p {
    color: #F1FAEE;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.thankyou-icon {
    font-size: 5rem;
    color: #A8DADC;
    margin-bottom: 1rem;
}

/* =================================
   About, Blog, Tips Pages
   ================================= */
.content-page {
    padding: 5rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    color: #FFB703;
    margin-bottom: 1.5rem;
}

.content-text p {
    color: #F1FAEE;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(168, 218, 220, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: #FFB703;
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: #FFB703;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #8D99AE;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* =================================
   Responsive Design
   ================================= */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .policy-content,
    .thankyou-box {
        padding: 2rem 1.5rem;
    }
}

