/* --- Basic Setup & Variables --- */
:root {
    --primary-color: #FF6B6B; /* A vibrant, food-friendly red/coral */
    --dark-color: #333;
    --light-color: #f4f4f4;
    --text-color: #555;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
    text-align: center;
}

h1, h2, h3, h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
p.subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* --- Header & Navigation --- */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li a {
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    background: var(--light-color);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: auto;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #e65c5c;
}

/* --- Page Sections --- */
.concept-steps, .food-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step, .food-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.food-item h4 {
    margin-top: 1rem;
}

#find-us .delivery-partners a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 1rem;
    color: var(--dark-color);
    padding: 1rem 2rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#find-us .delivery-partners a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* --- Contact Page --- */
.contact-content {
    display: flex;
    gap: 3rem;
    text-align: left;
    margin-top: 2rem;
}

.contact-form {
    flex: 2;
}

.contact-info {
    flex: 1;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: var(--font-family);
    font-size: 1rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    width: 100%;
}


/* --- Footer --- */
footer {
    background: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}
/* --- Investment Page Enhancements --- */

/* Features List Styling */
.features-list {
    list-style: none; /* Remove default bullets */
    padding: 0;
    text-align: left;
    margin: 0 auto 2rem auto;
    max-width: 250px;
}

.features-list li {
    position: relative;
    padding-left: 28px; /* Space for the custom icon */
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: var(--text-color);
    font-weight: 500;
}

.check-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color); /* Background for the checkmark */
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #fff; /* Color of the actual check */
}

/* Custom Checkmark using ::before pseudo-element */
.check-icon::before {
    content: '✓'; /* Unicode checkmark character */
    font-weight: 900; /* Bolder checkmark */
}

/* Refined Investment Card Styles */
.investment-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 12px; /* Slightly more rounded */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* Stronger, softer shadow */
    text-align: center;
    border: 1px solid #eee; /* Subtle border for definition */
    transition: all 0.3s ease-in-out; /* Smoother transitions */
    position: relative;
    overflow: hidden; /* Ensures badge doesn't spill */
}

.investment-card:hover {
    transform: translateY(-8px) scale(1.02); /* More pronounced lift on hover */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Even stronger shadow */
    border-color: var(--primary-color); /* Highlight border on hover */
}

.investment-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2); /* Highlighted shadow for popular card */
}

.popular-badge {
    top: 0;
    right: 0; /* Positioned top right */
    left: auto; /* Override left: 50% */
    transform: rotate(45deg) translate(25%, -25%); /* Angled and moved outside */
    transform-origin: 100% 0%; /* Rotate from top-right corner */
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 2.5rem; /* Larger padding for visual impact */
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 200px; /* Ensure badge is wide enough */
    text-align: center;
}

/* Price and Type Text Refinements */
.investment-card h3 {
    font-size: 1.6rem; /* Slightly larger heading */
    color: var(--dark-color); /* Changed to dark color for contrast */
    margin-bottom: 0.5rem;
}

.investment-card .price {
    font-size: 4rem; /* Larger price */
    font-weight: 800; /* Extra bold */
    color: var(--primary-color); /* Use primary color for price */
    margin: 1rem 0 0.5rem 0;
}

.investment-card .investment-type {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem; /* More space before list */
    color: #888;
}

/* Call to Action Button in Cards */
.investment-card .cta-button {
    width: 80%; /* Make button wider within card */
    max-width: 250px;
    margin-top: 2rem;
    display: inline-block; /* Ensure padding works */
}

/* Why Invest Section */
.why-invest h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.reason {
    background: #fdfdfd; /* Lighter background for reasons */
    padding: 2.5rem; /* More padding */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Softer shadow */
    border-left: 5px solid var(--primary-color); /* Accent border */
}

.reason h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.reason p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Adjust card layout for mobile */
@media (max-width: 768px) {
    .investment-grid, .reasons-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .concept-steps, .food-gallery, .contact-content {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}


