/* Global Styles */
:root {
    --primary-color: #e94e1b;
    --secondary-color: #333;
    --accent-color: #ffc107;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #c73d0e;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #c73d0e;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo-image {
    max-width: 180px;
    height: auto;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--gray-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 2px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    margin: 0 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.feature-item {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.rounded-image {
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 20px;
    }
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-gray);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.social-icons a i {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Header */
.page-header {
    background-color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-header h2 {
    margin-bottom: 0;
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px 0 40px;
    align-items: center;
}

.about-story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Team Gallery */
.team-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.team-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-gallery-item:hover .team-image {
    transform: scale(1.05);
}

.team-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    
    .about-story-text {
        order: 2;
    }
    
    .about-story-image {
        order: 1;
        margin-bottom: 20px;
    }
    
    .team-gallery {
        grid-template-columns: 1fr;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-item {
    text-align: center;
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
}

.value-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-section {
    margin: 40px 0;
}

.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.member-info h4 {
    margin-bottom: 5px;
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-box {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 5px;
    text-align: center;
    margin-top: 50px;
}

/* Service Gallery */
.service-gallery {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.services-grid {
    margin-bottom: 60px;
}

.service-item {
    display: flex;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
}

.service-icon {
    flex: 0 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.service-content {
    flex: 1;
    padding-left: 20px;
}

.service-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.menu-section, .equipment-section {
    margin-top: 60px;
}

.menu-categories, .equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.menu-category, .equipment-item {
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: white;
}

.menu-note {
    text-align: center;
    font-style: italic;
    margin-top: 20px;
}

/* Business Plan Page */
.business-plan-section {
    padding: 80px 0;
}

.business-plan-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.plan-navigation {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.plan-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-navigation ul li {
    margin: 5px 10px;
}

.plan-section {
    margin-bottom: 60px;
}

.plan-section h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.plan-content {
    padding: 0 20px;
}

.plan-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.plan-content ul, .plan-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.plan-content ul li, .plan-content ol li {
    margin-bottom: 10px;
}

.plan-content ul {
    list-style: disc;
}

.plan-content ol {
    list-style: decimal;
}

.market-segments, .competitors, .org-structure {
    margin: 30px 0;
}

.market-segment, .competitor, .org-level {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.plan-sections-continued {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin: 40px 0;
}

/* Financials Page */
.financials-section {
    padding: 80px 0;
}

.financials-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.financials-navigation {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}

.financials-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.financials-navigation ul li {
    margin: 5px 10px;
}

.financial-table {
    margin: 30px 0;
    overflow-x: auto;
}

.financial-table table {
    width: 100%;
    border-collapse: collapse;
}

.financial-table th, .financial-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.financial-table th {
    background-color: var(--light-color);
    font-weight: 600;
}

.financial-table tr:hover {
    background-color: rgba(233, 78, 27, 0.05);
}

.total-row {
    background-color: var(--light-color);
}

.chart-container {
    margin: 40px 0;
    text-align: center;
}

.chart-placeholder {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
    margin-top: 30px;
}

.chart-bar {
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
    border-radius: 5px 5px 0 0;
}

.chart-bar span {
    color: white;
    font-weight: 600;
}

.profit-bar {
    background-color: #28a745;
}

.chart-labels {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.chart-labels span {
    width: 120px;
    text-align: center;
    font-weight: 600;
}

.break-even-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.break-even-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.break-even-note {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Pitch Deck Page */
.pitch-deck-section {
    padding: 80px 0;
}

.pitch-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.pitch-slides {
    max-width: 900px;
    margin: 0 auto;
}

.pitch-slide {
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    margin-bottom: 50px;
    padding: 40px;
    scroll-margin-top: 100px;
}

.pitch-slide h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.pitch-slide .subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.pitch-slide ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.pitch-slide ul li {
    margin-bottom: 15px;
}

.roadmap {
    margin: 30px 0;
}

.roadmap-phase {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.team-member, .supporting-team {
    margin-bottom: 30px;
}

.financial-highlights {
    margin: 30px 0;
}

.highlight-section {
    margin-bottom: 30px;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.reward-tier {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 5px;
}

.impact-section {
    margin: 30px 0;
}

.cta-text {
    font-size: 18px;
    margin: 20px 0;
}

.cta-list {
    margin: 30px 0;
}

.cta-buttons {
    text-align: center;
    margin-top: 30px;
}

.company-name {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.tagline {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
}

.pitch-navigation {
    margin-top: 50px;
    text-align: center;
}

.pitch-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pitch-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.pitch-nav-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-container, .contact-info-container {
    background-color: white;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.contact-form {
    margin-top: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-secondary);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.social-connect {
    margin-top: 30px;
}

.inquiry-types {
    margin-bottom: 60px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.inquiry-item {
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
}

.inquiry-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-items {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    background-color: var(--light-color);
}

.faq-item h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 36px;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-icon {
        margin-bottom: 20px;
    }
    
    .service-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-image {
        max-width: 150px;
        margin: 0 auto 10px;
    }
    
    nav {
        margin-top: 20px;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav ul {
        display: none;
    }
    
    nav.active ul {
        display: flex;
    }
    
    .hero h2 {
        font-size: 30px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .member-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .feature-grid, .values-grid, .menu-categories, .equipment-grid, .rewards-grid, .inquiry-grid {
        grid-template-columns: 1fr;
    }
    
    .pitch-slide {
        padding: 20px;
    }
    
    .pitch-slide h3 {
        font-size: 24px;
    }
    
    .financial-table {
        font-size: 14px;
    }
    
    .financial-table th, .financial-table td {
        padding: 8px;
    }
    
    .chart-bar {
        width: 60px;
        margin: 0 10px;
    }
    
    .chart-labels span {
        width: 80px;
    }
}


/* Adjust Hero CTA Button Position */
.hero-content .btn {
    margin-top: 20px;
}



.footer-logo-box {
    background-color: white;
    padding: 10px;
    display: inline-block; /* To wrap content size */
    margin-bottom: 10px; /* Space between box and text below */
    border-radius: 5px; /* Optional: for slightly rounded corners */
    text-align: center; /* Center the image if it's smaller than the box */
}

.footer-logo-image {
    max-width: 130px; /* Adjusted from 150px to fit padding */
    height: auto;
    display: block; /* To allow margin auto to center if needed, and prevent extra space below */
    margin: 0 auto; /* Center the image within the box */
}

