/* Bombay Creamery Ice Cream - Main Stylesheet */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #E91E63;
    --primary-dark: #C2185B;
    --primary-light: #F8BBD0;
    --secondary-color: #FF9800;
    --secondary-dark: #F57C00;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* 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 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}

/* Header & Navigation */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-dark);
    color: var(--text-white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.header-main {
    padding: 18px 0;
    background-color: var(--bg-white);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 60px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 10px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
    transform-origin: left;
}

.menu-toggle span:nth-child(3) {
    transform-origin: left;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(255, 152, 0, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    color: var(--text-white);
    text-align: center;
}

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

.hero h1 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-white {
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-text {
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

.card-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-footer {
    padding: 15px 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Opportunity Cards */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.opportunity-card {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.opportunity-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.opportunity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.opportunity-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Steps Section */
.steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* FAQ Section */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--bg-light);
}

.accordion-icon {
    transition: var(--transition);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 20px 25px;
    max-height: 500px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    margin-bottom: 5px;
}

.testimonial-info p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 15px;
    z-index: 999;
    justify-content: space-around;
}

.mobile-sticky-btn {
    flex: 1;
    padding: 10px 15px;
    margin: 0 5px;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Admin Styles */
.admin-sidebar {
    background-color: var(--text-dark);
    color: var(--text-white);
    min-height: 100vh;
    padding: 20px;
}

.admin-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.admin-nav {
    list-style: none;
}

.admin-nav li {
    margin-bottom: 10px;
}

.admin-nav a {
    color: var(--text-light);
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.admin-content {
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

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

.table th {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: var(--bg-light);
}

/* Status Badges */
.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-success { background-color: #E8F5E9; color: #2E7D32; }
.badge-warning { background-color: #FFF3E0; color: #E65100; }
.badge-danger { background-color: #FFEBEE; color: #C62828; }
.badge-info { background-color: #E3F2FD; color: #1565C0; }
.badge-primary { background-color: #FCE4EC; color: #C2185B; }

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #C8E6C9;
}

.alert-danger {
    background-color: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
}

.alert-warning {
    background-color: #FFF3E0;
    color: #E65100;
    border: 1px solid #FFE0B2;
}

.alert-info {
    background-color: #E3F2FD;
    color: #1565C0;
    border: 1px solid #BBDEFB;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .col-3, .col-4 { flex: 0 0 50%; max-width: 50%; }
    .col-6 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 10px 0;
    }
    
    .header-main .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 1000;
        gap: 15px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        z-index: 1001;
    }
    
    .nav-cta {
        display: none;
    }
    
    .col-3, .col-4, .col-6, .col-8, .col-9 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .mobile-sticky-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* 2026 visual refresh: warm, premium and conversion-focused */
:root {
    --primary-color: #e4572e;
    --primary-dark: #b83b20;
    --primary-light: #ffd8ca;
    --secondary-color: #f2b544;
    --secondary-dark: #c88718;
    --text-dark: #1e2824;
    --text-light: #68736e;
    --bg-white: #fffdf8;
    --bg-light: #f4f1ea;
    --border-color: #e4ddd1;
    --ink: #1e2824;
    --mint: #d9ebe1;
    --shadow-sm: 0 8px 20px rgba(30, 40, 36, 0.06);
    --shadow-md: 0 14px 34px rgba(30, 40, 36, 0.10);
    --shadow-lg: 0 24px 55px rgba(30, 40, 36, 0.15);
    --transition: all 0.25s ease;
    --font-body: 'Inter', sans-serif;
}

body { background: var(--bg-light); color: var(--text-dark); font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); letter-spacing: 0.5px; }
.container { max-width: 1240px; }

.header-top { background: var(--ink); padding: 8px 0; font-size: 0.78rem; letter-spacing: 0.2px; }
.header-main { padding: 12px 0; background: rgba(255, 253, 248, 0.97); border-bottom: 1px solid var(--border-color); box-shadow: 0 5px 18px rgba(30, 40, 36, 0.05); }
.logo img { height: 54px !important; }
.logo > div span:first-child { color: var(--ink) !important; font-size: 1.35rem !important; }
.logo > div span:last-child { color: var(--primary-color) !important; font-weight: 700; }
.nav { gap: 24px; margin-left: auto; margin-right: 26px; }
.nav-link { color: var(--text-dark); font-size: 0.78rem; letter-spacing: 0.6px; }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }
.nav-link::after { background: var(--primary-color); height: 3px; border-radius: 3px; }

.btn { border-radius: 4px; padding: 12px 22px; text-transform: none; letter-spacing: 0.1px; }
.btn-primary { background: var(--primary-color); box-shadow: 0 7px 16px rgba(228, 87, 46, 0.20); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 20px rgba(184, 59, 32, 0.25); }
.btn-secondary { background: var(--secondary-color); color: var(--ink); }
.btn-secondary:hover { background: var(--secondary-dark); color: var(--text-white); }
.btn-outline { border-color: var(--primary-color); color: var(--primary-color); }

.hero { min-height: 520px; display: flex; align-items: center; text-align: left; padding: 84px 0; background-blend-mode: multiply; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18, 28, 23, 0.48), rgba(18, 28, 23, 0.08)); pointer-events: none; }
.hero .container, .hero-content { position: relative; z-index: 1; }
.hero-content { max-width: 700px; margin: 0; }
.hero h1 { font-size: 4.2rem; line-height: 1.03; margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15); }
.hero p { font-size: 1.08rem; max-width: 590px; margin-bottom: 18px; }
.hero-cta { justify-content: flex-start; margin-top: 26px; }

.section { padding: 92px 0; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--bg-white); }
.section-title { margin-bottom: 48px; }
.section-title h2 { color: var(--ink); font-size: 2.55rem; margin-bottom: 10px; }
.section-title h2::after { content: ''; display: block; width: 42px; height: 4px; margin: 14px auto 0; border-radius: 5px; background: var(--secondary-color); }
.section-title p { line-height: 1.75; }

.card, .opportunity-card, .step, .testimonial-card, .accordion-item { border: 1px solid var(--border-color); border-radius: 8px; box-shadow: var(--shadow-sm); }
.card:hover, .opportunity-card:hover { transform: translateY(-6px); border-color: rgba(228, 87, 46, 0.45); box-shadow: var(--shadow-md); }
.card-img { height: 218px; }
.card-body { padding: 24px; }
.card-title { font-size: 1.28rem; }
.opportunity-grid { gap: 22px; }
.opportunity-card { background: var(--bg-white); padding: 34px 28px; text-align: left; }
.opportunity-icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; margin-bottom: 18px; border-radius: 50%; background: var(--mint); font-size: 1.7rem; }
.opportunity-card h3 { color: var(--ink); font-size: 1.75rem; }
.opportunity-card p, .card-text { color: var(--text-light); line-height: 1.75; }
.step { background: var(--bg-white); padding: 30px 22px; }
.step-number { width: 52px; height: 52px; background: var(--ink); color: var(--secondary-color); font-size: 1.2rem; }
.step h4 { font-size: 1.1rem; }
.testimonial-card { background: var(--bg-white); padding: 30px; }
.testimonial-text { color: var(--text-dark); line-height: 1.8; }
.accordion-item { margin-bottom: 12px; }
.accordion-header { padding: 20px 24px; }

.form-control, .form-select { background: #fffefa; border-color: var(--border-color); border-radius: 4px; padding: 13px 14px; }
.form-control:focus, .form-select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(228, 87, 46, 0.12); }
section.section[style*="linear-gradient"] { background: var(--ink) !important; }
.footer { background: var(--ink); padding: 72px 0 24px; }
.footer h4 { color: var(--secondary-color); }
.footer a:hover { color: var(--secondary-color) !important; }
.mobile-sticky-bar { background: var(--ink); }

@media (max-width: 1100px) {
    .nav { gap: 14px; margin-right: 16px; }
    .nav-link { font-size: 0.72rem; }
    .hero h1 { font-size: 3.55rem; }
}

@media (max-width: 768px) {
    .header-main { padding: 10px 0; }
    .logo img { height: 46px !important; }
    .logo > div span:first-child { font-size: 1.1rem !important; }
    .nav { top: 100%; background: var(--bg-white); border-top: 1px solid var(--border-color); box-shadow: var(--shadow-md); padding: 14px 20px 20px; gap: 0; }
    .nav-link { padding: 12px 0; border-bottom: 1px solid var(--border-color); font-size: 0.82rem; }
    .nav-cta { margin-left: auto; margin-right: 10px; }
    .nav-cta .btn { padding: 9px 14px; font-size: 0.8rem; }
    .hero { min-height: 475px; padding: 68px 0; }
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1rem; }
    .section { padding: 68px 0; }
    .section-title h2 { font-size: 2.15rem; }
}

@media (max-width: 576px) {
    .header-top .container { gap: 10px; justify-content: center; flex-wrap: wrap; }
    /* Keep the brand name visible beside the logo on small phones. */
    .logo { gap: 8px !important; min-width: 0; }
    .logo img { height: 44px !important; flex-shrink: 0; }
    .logo > div { display: block; min-width: 0; }
    .logo > div span:first-child { font-size: 1rem !important; white-space: nowrap; }
    .logo > div span:last-child { font-size: 0.55rem !important; letter-spacing: 0.5px; white-space: nowrap; }
    .nav-cta { display: none; }
    .hero { min-height: 440px; text-align: center; }
    .hero-content { margin: 0 auto; }
    .hero h1 { font-size: 2.55rem; }
    .hero-cta { justify-content: center; }
    .section-title h2 { font-size: 1.9rem; }
}
