/* ===================================
   CULINARY CREATION ACADEMY - Main Styles
   
   Color Scheme:
   - Primary Blue (#1D3557): Headings, buttons, icons
   - Dark Navy (#0D1B2A): Footer, highlights, text
   - Accent Flame (#FF6B00): CTA buttons, hover effects
   - Background White (#FFFFFF): Main background
   - Light Gray (#F4F4F4): Sections, dividers, subtle contrast
   =================================== */

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Root Variables */
:root {
    /* New Color Scheme */
    --primary-color: #1D3557;
    /* Primary Blue - Headings, buttons, icons */
    --primary-dark: #0D1B2A;
    /* Dark Navy - Footer, highlights */
    --accent-color: #FF6B00;
    /* Accent Flame - CTA buttons, hover effects */
    --white: #FFFFFF;
    /* Background White - Main background */
    --light-gray: #F4F4F4;
    /* Light Gray - Sections, dividers, subtle contrast */

    /* Supporting Colors */
    --secondary-color: #457b9d;
    /* Secondary blue for variety */
    --text-dark: #0D1B2A;
    /* Dark Navy for text */
    --text-light: #666;
    /* Medium gray for secondary text */
    --border-color: #e0e0e0;
    /* Light border color */
    --success-color: #28a745;
    /* Success states */
    --warning-color: #ffc107;
    /* Warning states */
    --error-color: #dc3545;
    /* Error states */

    /* Effects */
    --shadow: 0 4px 6px rgba(29, 53, 87, 0.1);
    --shadow-lg: 0 10px 25px rgba(29, 53, 87, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
    /* Account for fixed header */
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a:hover {
    color: var(--secondary-color);
}

/* Images - Prevent overflow */
img {
    \n max-width: 100%;
    \n height: auto;
    \n display: block;
    \n
}

\n\n

/* Container & Layout */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    width: 100%;
}

@media (max-width: 768px) {
    .row {
        margin: 0 -10px;
    }
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-3 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

/* Header Styles - Glass Morphism */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 20px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    animation: headerSlideDown 0.6s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.logo a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo a:hover::before {
    opacity: 1;
}

.logo a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px 0 rgba(31, 38, 135, 0.15);
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1)) brightness(1.1) contrast(1.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.logo a:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) brightness(1.15) contrast(1.15);
    transform: rotate(3deg);
}

/* Logo text removed for minimalist design */

/* Cool logo pulse animation */
@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.logo-img {
    animation: logoPulse 4s ease-in-out infinite;
}

.logo a:hover .logo-img {
    animation: none;
    /* Stop pulse on hover for manual control */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 60%;
}

.nav-menu a.active {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

/* Remove underline from button links */
.nav-menu .btn::after {
    display: none;
}

/* Add spacing before button items in nav */
.nav-menu li:has(.btn) {
    margin-left: 0.5rem;
}

.nav-menu li:has(.btn-accent) {
    margin-left: 0.25rem;
}

/* Dropdown Styles */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

.nav-item-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    \n padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-height: none;
    overflow: visible;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
    margin: 2px 0;
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 14px !important;
    color: #1D3557 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu a:hover {
    background: rgba(29, 53, 87, 0.06) !important;
    color: #1D3557 !important;
    padding-left: 18px !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.admin-link {
    opacity: 0.8;
    font-size: 1.1rem;
    padding: 0.6rem;
    border-radius: 8px;
    background: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
    color: #e67e22 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-link:hover {
    opacity: 1;
    background: rgba(230, 126, 34, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.2);
}

.admin-link::after {
    display: none;
}

/* Brochure Link Styling */
.brochure-link {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.brochure-link:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.brochure-link::after {
    display: none;
}

.brochure-link i {
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(52, 152, 219, 0.15);
    transform: translateY(-1px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0D1B2A;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background: #e55a00;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(116, 212, 204, 0.442), rgba(6, 38, 57, 0.486)), url('../images/kitchen.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
    margin: 0 0.5rem;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Sections */
.section {
    \n padding: 5rem 0;
    \n width: 100%;
    \n overflow-x: hidden;
    \n
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.card-text {
    margin-bottom: 1.5rem;
}

/* Course Cards */
.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 2rem;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.course-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-duration {
    opacity: 0.9;
}

.course-body {
    padding: 2rem;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.course-features li:last-child {
    border-bottom: none;
}

.course-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    text-align: center;
}

/* Testimonials */
.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-control::placeholder {
    color: #999;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-bottom: 100px;
    /* Space for ChefBot button */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--light-gray);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.py-5 {
    padding: 3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Mobile Navigation - Disabled in favor of mobile-optimization.css */
    .mobile-menu-toggle {
        display: block;
    }

    /* Logo Responsive */
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Grid System */
    .col,
    .col-2,
    .col-3,
    .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn {
        display: block;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Logo Mobile Adjustments */
    .logo {
        gap: 0.5rem;
    }

    .logo-img {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-story p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.director-image img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.director-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.director-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.director-achievements h5 {
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.director-achievements ul {
    list-style: none;
    padding: 0;
}

.director-achievements li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.director-achievements li:last-child {
    border-bottom: none;
}

.director-achievements li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    text-align: left;
}

.values-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Accreditation Styles */
.accreditation-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.accreditation-item i {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.accreditation-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.registration-number {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Partner Logos */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.partner-logo {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo-placeholder span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Additional Utility Classes */
.icon-large {
    font-size: 4rem;
    text-align: center;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.highlight-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Course Navigation */
.course-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.course-nav-btn {
    padding: 12px 24px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.course-nav-btn:hover,
.course-nav-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Detailed Course Cards */
.course-card-detailed {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.course-card-detailed:hover {
    box-shadow: var(--shadow-lg);
}

.course-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.course-card-detailed:hover .course-image img {
    transform: scale(1.05);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-badge {
    background: var(--accent-color);
    color: var(--white);
}

.course-badge.professional {
    background: var(--primary-color);
}

.course-badge.quick {
    background: #28a745;
}

.course-badge.essential {
    background: #6f42c1;
}

.course-content {
    padding: 2rem;
}

.course-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.course-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.course-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.course-meta .price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.course-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.course-details h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.course-curriculum {
    list-style: none;
    margin-bottom: 2rem;
}

.course-curriculum li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.course-curriculum li:last-child {
    border-bottom: none;
}

.course-curriculum li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.course-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.info-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.info-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.course-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Diploma Cards */
.diploma-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.diploma-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.diploma-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.diploma-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.diploma-duration {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.diploma-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.diploma-content {
    padding: 2rem;
}

.diploma-modules,
.diploma-outcomes {
    margin-bottom: 2rem;
}

.diploma-modules h4,
.diploma-outcomes h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.diploma-modules ul,
.diploma-outcomes ul {
    list-style: none;
}

.diploma-modules li,
.diploma-outcomes li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.diploma-modules li:last-child,
.diploma-outcomes li:last-child {
    border-bottom: none;
}

.diploma-modules li::before,
.diploma-outcomes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Kids Program Cards */
.kids-program-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.kids-program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-details .duration {
    color: var(--text-light);
}

.program-details .price {
    color: var(--primary-color);
}

.program-content ul {
    list-style: none;
    margin: 1rem 0 2rem;
}

.program-content li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1rem;
}

.program-content li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Corporate Training */
.corporate-info,
.corporate-features {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
}

.corporate-benefits ul,
.corporate-options ul {
    list-style: none;
    margin-top: 1rem;
}

.corporate-benefits li,
.corporate-options li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.corporate-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.corporate-options li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.corporate-contact {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.enrollment-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Course Search and Filter */
.course-search,
.difficulty-filter {
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.course-search:focus,
.difficulty-filter:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Responsive Design for Courses */
@media (max-width: 768px) {
    .course-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .course-nav-btn {
        width: 100%;
        text-align: center;
    }

    .course-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .course-actions {
        flex-direction: column;
    }

    .course-info-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/food and people.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-search {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.search-box input {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: white;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-box button {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
    margin-top: 0.5rem;
}

.suggestion-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
}

.suggestion-item:hover {
    background: #f8f9fa;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Blog Categories */
.blog-categories {
    padding: 2rem 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.category-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.results-indicator {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Featured Post */
.featured-post {
    padding: 4rem 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-text .post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.featured-text .category {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.2;
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.recipe-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Blog Posts Grid */
.blog-posts {
    padding: 4rem 0;
    background: #f8f9fa;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

.post-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.recipe-quick-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.recipe-quick-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recipe-quick-info i {
    color: var(--primary-color);
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    padding: 2rem 0;
}

.load-more-section .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .btn {
    border-radius: 25px;
    white-space: nowrap;
    background: white;
    color: var(--primary-color);
}

.newsletter-form .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Search Modal */
.modal .search-results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.search-results-list {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.result-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.search-result-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.search-result-item p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.result-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.result-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.no-results h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Search term highlighting */
mark {
    background: var(--accent-color);
    color: white;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
}

/* Lazy loading image effects */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Gallery Styles */
.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: var(--white);
}

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.load-more-container {
    margin-top: 3rem;
}

.animate-in {
    animation: fadeInUp 0.6s ease;
}

/* Testimonial Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
}

.testimonial .stars {
    margin-bottom: 1.5rem;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author div {
    text-align: left;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 1;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

.modal-img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.modal-info {
    padding: 2rem;
    background: var(--white);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-prev,
.modal-next {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* CTA Section Enhancement */
.cta-content {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-filters {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author div {
        text-align: center;
    }

    .testimonial-controls {
        gap: 1rem;
    }

    .modal-container {
        max-width: 95vw;
        max-height: 95vh;
    }

    .modal-info {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }

    .blog-hero-content p {
        font-size: 1.1rem;
    }

    .category-filters {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-text h2 {
        font-size: 2rem;
    }

    .recipe-highlights {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
        background: none;
        padding: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        height: 60vh;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        border-radius: 15px;
    }

    .search-box input {
        padding: 1rem;
        text-align: center;
    }

    .search-box button {
        align-self: center;
    }

    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
    }

    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .featured-text h2 {
        font-size: 1.5rem;
    }

    .featured-text p {
        font-size: 1rem;
    }

    .posts-grid {
        gap: 1rem;
    }

    .post-content {
        padding: 1rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {

    .header,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
    }

    * {
        color: #000 !important;
        background: #fff !important;
    }
}

/* Accreditation Section */
.accreditation-info h2 {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accreditation-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.badge-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.badge-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.badge-item span {
    font-size: 1rem;
    opacity: 0.9;
}

.support-services h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-list {
    list-style: none;
}

.support-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Accredited Course Cards */
.accredited-course {
    border: 2px solid var(--primary-color);
    position: relative;
}

.accredited-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.course-badge.accredited {
    background: var(--primary-color);
    color: white;
}

.nqf-level {
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-pricing {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-fee,
.deposit {
    text-align: center;
}

.total-fee .label,
.deposit .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.total-fee .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.deposit .amount {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
}

.course-includes {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.course-includes h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-includes ul {
    list-style: none;
}

.course-includes li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.course-includes i {
    color: var(--accent-color);
    font-size: 1rem;
}

.course-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.course-actions .btn {
    flex: 1;
    text-align: center;
}

/* Responsive Design for Accreditation */
@media (max-width: 768px) {
    .accreditation-badges {
        gap: 1rem;
    }

    .badge-item {
        padding: 1rem;
    }

    .course-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .course-actions {
        flex-direction: column;
    }
}

/* Featured Course Cards */
.accredited-highlight {
    margin-bottom: 3rem;
}

.feature-course-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-course-card.accredited {
    border: 2px solid var(--primary-color);
}

.feature-course-card.popular {
    border: 2px solid var(--accent-color);
}

.course-badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.feature-course-card.accredited .course-badge-top {
    background: var(--primary-color);
}

.feature-course-card.popular .course-badge-top {
    background: var(--accent-color);
}

.feature-course-card h3 {
    margin: 1.5rem 0 1rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.course-meta-inline {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-meta-inline span {
    background: var(--bg-light);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.price-highlight {
    margin: 1.5rem 0;
}

.price-highlight .from {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-highlight .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-divider {
    text-align: center;
    margin: 3rem 0 2rem;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.section-divider span {
    background: var(--bg-light);
    padding: 0 2rem;
    color: var(--text-light);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Featured Cards */
@media (max-width: 768px) {
    .feature-course-card {
        margin-bottom: 2rem;
    }

    .course-meta-inline {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .price-highlight .amount {
        font-size: 1.5rem;
    }
}

/* QCTO Logo Styles */
.qcto-logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.qcto-logo {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
}

.qcto-text h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.qcto-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* Landing Page Accreditation Banner */
.py-small {
    padding: 2rem 0;
}

.accreditation-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.accreditation-badge-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accreditation-badge-logo {
    width: 60px;
    height: auto;
}

.accreditation-badge-text {
    display: flex;
    flex-direction: column;
}

.accreditation-badge-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.accreditation-badge-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.certification-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.certification-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* About Page QCTO Logo */
.accreditation-item.qcto-featured {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.accreditation-logo {
    width: 60px;
    height: auto;
    margin-right: 0.5rem;
}

/* Responsive Design for QCTO Elements */
@media (max-width: 768px) {
    .qcto-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .accreditation-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .accreditation-badge-container {
        flex-direction: column;
        text-align: center;
    }

    .qcto-logo,
    .accreditation-badge-logo,
    .accreditation-logo {
        width: 50px;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(13, 27, 42, 0.8)),
        url('../images/cooking-class-1.jpg') center/cover;
    min-height: 60vh;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.stat-item i {
    color: var(--accent-flame);
    font-size: 1.2rem;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.whatsapp-card .contact-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-details h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.whatsapp-card .contact-details h3 {
    color: white;
}

.contact-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.whatsapp-btn {
    background: white !important;
    color: #25D366 !important;
}

.whatsapp-btn:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-flame);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.field-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    position: relative;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--accent-flame);
    border-color: var(--accent-flame);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-left: 4px solid var(--accent-flame);
}

.form-note i {
    color: var(--accent-flame);
    margin-right: 0.5rem;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: var(--accent-flame);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--background-light);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.map-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item i {
    color: var(--accent-flame);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    box-shadow: var(--shadow);
    border-color: var(--accent-flame);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--accent-flame);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: #27ae60;
    color: white;
}

.notification-error {
    background: #e74c3c;
    color: white;
}

.notification-warning {
    background: #f39c12;
    color: white;
}

.notification-info {
    background: var(--primary-blue);
    color: white;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    margin-left: auto;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
        /* Smaller header on mobile */
    }

    .footer {
        margin-bottom: 80px;
        /* Adjust for mobile ChefBot */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
        /* Even smaller header on small mobile */
    }

    .footer {
        margin-bottom: 70px;
        /* Smaller margin on small mobile */
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .map-info {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

/* ===================================
   CHEFBOT CHATBOT INTEGRATION
   =================================== */

/* Import ChefBot styles */
@import url('chefbot.css');