/* ========================================
   BUSINESS GROWTH RATING - CUSTOM STYLES
   Color Scheme: Teal, Orange, Purple
   ======================================== */

/* ========================================
   CSS VARIABLES - NEW COLOR SCHEME
   ======================================== */
:root {
    --primary-color: #0891b2;      /* Deep Teal/Cyan */
    --secondary-color: #f97316;    /* Vibrant Orange */
    --accent-color: #a855f7;       /* Purple */
    --dark-text: #1f2937;
    --light-text: #f9fafb;
    --bg-light: #ffffff;
    --bg-off-white: #f9fafb;
    --border-light: #e5e7eb;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--bg-off-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-text);
    transition: color 0.3s ease;
    margin-left: 1rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn-custom-primary {
    background-color: var(--secondary-color);
    color: var(--dark-text);
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-custom-primary:hover {
    background-color: #ea580c;
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-custom-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(rgba(8, 145, 178, 0.85), rgba(8, 145, 178, 0.85)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   ABOUT SECTION (HOMEPAGE)
   ======================================== */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    width: 100%;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--secondary-color);
    border-radius: 15px;
    z-index: 1;
}

.about-content {
    padding-left: 2rem;
}

.eyebrow-text {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-content .lead {
    color: #6b7280;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.about-content ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.about-content ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* ========================================
   COUNTER SECTION
   ======================================== */
.counter-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.counter-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-box .counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.counter-box .counter-label {
    font-size: 1.1rem;
    color: white;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .eyebrow {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header .subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(8, 145, 178, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 0;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-primary {
    background-color: rgba(8, 145, 178, 0.1);
    color: var(--primary-color);
}

.blog-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-card h5 a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h5 a:hover {
    color: var(--primary-color);
}

.blog-card .card-text {
    color: #6b7280;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background-color: #000000;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    opacity: 0.85;
    margin-bottom: 2rem;
}

/* ========================================
   PAGE HERO BANNER
   ======================================== */
.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero .lead {
    opacity: 0.9;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-page-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-page-section img {
    border-radius: 15px;
    width: 100%;
}

.about-page-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mission-card, .trust-card {
    background-color: var(--bg-off-white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.mission-card {
    border-left: 5px solid var(--primary-color);
}

.trust-card {
    border-left: 5px solid var(--secondary-color);
}

.mission-card h3, .trust-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card ul, .trust-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.mission-card ul li, .trust-card ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
}

.mission-card ul li i, .trust-card ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    font-size: 1.25rem;
    color: var(--secondary-color);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
    background-color: #f3f4f6;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.1);
}

.email-card {
    background-color: var(--bg-off-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
}

.email-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.email-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.email-card a {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-card a:hover {
    color: var(--primary-color);
}

/* ========================================
   BLOG POST PAGE
   ======================================== */
.blog-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/cafe-franchise-blog.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.blog-content-section {
    padding: 60px 0;
    background-color: var(--bg-off-white);
}

.blog-content-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-content-card h1 {
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.blog-meta {
    color: #6b7280;
    margin-bottom: 2rem;
}

.blog-meta span {
    margin-right: 1.5rem;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.blog-content-card hr {
    opacity: 0.1;
    margin: 2rem 0;
}

.blog-content-card .lead {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.blog-content-card h2 {
    font-weight: 800;
    margin: 2.5rem 0 1.5rem;
}

.blog-content-card h3 {
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-content-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-content-card ul, .blog-content-card ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content-card ul li, .blog-content-card ol li {
    margin-bottom: 0.75rem;
}

.blog-content-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.blog-content-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.alert-custom {
    background-color: rgba(8, 145, 178, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.blog-cta-box {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--bg-off-white);
    border-radius: 10px;
    text-align: center;
}

.blog-cta-box h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-cta-box p {
    margin-bottom: 1.5rem;
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-heading {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    /* About Section */
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-image-wrapper::after {
        top: 10px;
        left: 10px;
    }
    
    /* Counter Section */
    .counter-box {
        margin-bottom: 2rem;
    }
    
    /* Blog Content */
    .blog-header {
        height: 300px;
    }
    
    .blog-content-card {
        padding: 30px;
        margin-top: -50px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    /* Typography */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn-custom-primary, .btn-custom-outline {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Feature Cards */
    .feature-card {
        margin-bottom: 1.5rem;
    }
}
