/* ----------------------------------------------------
   Cleaned master style.css
---------------------------------------------------- */

/* Root colors and variables */
:root {
    --primary: #a91917;
    --primary-dark: #c62828;
    --secondary: #212121;
    --light: #e7e7e7;
    --white: #f2f2f2;
    --gray: #757575;
	--pwhite: #fff;
}

/* Reset / Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--light);
    color: var(--secondary);
    line-height: 1.6;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-80 { margin-top: 80px; }
.mt-120 { margin-top: 120px; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-80 { margin-bottom: 80px; }
.mb-120 { margin-bottom: 120px; }

.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-80 { padding-top: 80px; }
.pt-120 { padding-top: 120px; }

.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }
.pb-80 { padding-bottom: 80px; }
.pb-120 { padding-bottom: 120px; }

/* Layout container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections / Headings */
section { padding: 80px 0; }

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }

h2 {
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
	color: var(--primary);
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
}

p { margin-bottom: 20px; }

.app-dnl-hd { font-size: 3.0rem }

/* ----------------------------------------------------
   Buttons
---------------------------------------------------- */
.btn, .mn-menu-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 24px;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn:hover, .mn-menu-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-red {
	display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 24px;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn-red:hover {
	background-color: var(--white);
    color: var(--primary);
	border: 1px solid var(--primary);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.nav-btn {
    background-color: var(--primary);
    color: var(--white)!important;
    padding: 8px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--white);
    color: var(--primary) !important;
}

.btn-link {
	color: var(--pwhite);
	font-weight: 400;
}

.btn-link:hover {
	font-weight: 600;
}

/* ----------------------------------------------------
   Navigation
---------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo { height: clamp(38px, 4vw, 50px); }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: clamp(18px, 3vw, 60px);
}

.nav-item { margin-left: 0; }

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    font-weight: 800;
    border-bottom: var(--primary) solid medium;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: var(--secondary);
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-content a:last-child { border-bottom: none; }

/* Hamburger (desktop hidden, shown on mobile via media query) */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
    transition: all 0.3s ease;
}

/* Hamburger active transforms */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------------------------
   Hero
---------------------------------------------------- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeIn 2.5s ease;
}

.hero h1 {
    font-size: 4rem;
	margin-top: 50px;
	padding-top: 50px;
    margin-bottom: 20px;
    /*text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);*/
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero span {
	font-size: 2.5rem;
	padding-top: 0px !important;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* ----------------------------------------------------
   About
---------------------------------------------------- */
.about {
    background-color: var(--white);
    padding: 80px 20px;
}

.about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    max-height: 500px;
}

.about-image:hover { transform: scale(1.03); }

.about-image img { width: 100%; height: auto; display: block; }

.about-text { flex: 1; }

.about-text p { text-align: justify; margin-bottom: 15px; }

/* Counter inside about */
.about-counter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 24px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.counter-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

.counter-item h3::after {
    content: "+";
    margin-left: 4px;
}

/* ----------------------------------------------------
   Store Locator
---------------------------------------------------- */
.store-locator { background-color: var(--light); }

.store-locator p { text-align:center; font-size:0.9rem; color:#666666; }

.locator-form {
    max-width: 600px;
    margin: 0 auto 50px;
    display: flex;
    gap: 15px;
}

.form-group { flex: 1; }

select, input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
    font-size: 1rem;
    transition: border 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    outline: none;
}

.stores-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.store-card {
    background: var(--pwhite);
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
	height: 100%; 
}

.store-card:hover { transform: translateY(-5px); }

.store-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
	text-align: center;
}

.store-address {
    font-size: 0.9rem;
    color: #444;
    display: flex;
    gap: 8px;
	text-align: left !important;
    align-items: flex-start;
}

/* Action Buttons Row */
.store-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: 0.2s ease;
    text-decoration: none;
}

.action-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Individual colors */
.action-btn.call { background: #fafafa; border-color: var(--primary)!important; border: solid 1px; }
.action-btn.direction { background: #fafafa; border-color: var(--primary)!important; border: solid 1px; }
.action-btn.whatsapp { background: #fafafa; border-color: var(--primary)!important; border: solid 1px; }

/* Mobile spacing */
@media (max-width: 576px) {
    .store-actions {
        gap: 8px;
    }
    .action-btn {
        height: 38px;
        font-size: 1rem;
    }
}
.store-card p { margin-bottom: 10px; display: flex; align-items: center; }

.store-card i { margin-right: 10px; color: var(--primary); }

/* ----------------------------------------------------
   Careers
---------------------------------------------------- */
.career { background-color: var(--white); }

.jobs-container {
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.job-card:hover { transform: translateX(10px); }

.job-info h3 { margin-bottom: 5px; }

.job-location {
    color: var(--gray);
    display: flex;
    align-items: center;
}

.job-location i { margin-right: 8px; }

/* Modal Overlay */
.cr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

/* Active overlay */
.cr-modal-overlay.active {
    display: flex;
}

/* Modal Window */
.cr-modal {
    background: var(--white);
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: crModalPop 0.25s ease;
}

/* Animation */
@keyframes crModalPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* Header */
.cr-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: var(--primary);
}
.cr-modal-header h3 {
	color: var(--white);
}
.cr-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    padding: 0;
    cursor: pointer;
    color: var(--white);
}

/* Body */
.cr-modal-body {
    padding: 22px;
}

.cr-form-group {
    margin-bottom: 18px;
}

.cr-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.cr-form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

/* File Upload */
.cr-file-upload {
    border: 2px dashed #ccc;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.cr-file-upload:hover {
    border-color: var(--primary);
}

.cr-file-upload i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.cr-file-input { display: none; }

/* Footer */
.cr-modal-footer {
    padding: 16px 22px;
    background: var(--light);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.cr-cancel-btn,
.cr-submit-btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.cr-cancel-btn {
    background: #ddd;
}

.cr-submit-btn {
    background: var(--primary);
    color: var(--white);
}

/* Mobile */
@media (max-width: 480px) {
    .cr-modal {
        width: 100%;
        border-radius: 10px;
    }

    .cr-modal-header h2 {
        font-size: 1.2rem;
    }
}


/* ----------------------------------------------------
   Feedback / Contact
---------------------------------------------------- */
.contact-intro {
    max-width: 650px;
    margin: auto auto 30px auto;
    text-align: justify;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.contact-form .form-group label {
    margin-bottom: 4px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
}

/* Layout: Testimonials left, form right */
.feedback-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Testimonials Box */
.testimonials-box {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
}

.testimonial {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
    position: absolute;
    width: 100%;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

.testimonial h4 {
    margin-top: 12px;
    font-weight: 600;
}

.stars {
    color: #f9b300;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Form Container */
.feedback-form-box {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
    .feedback-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.testimonials-intro {
    margin-bottom: 20px;
	background-color: var(--white);
}

.testimonials-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.feedback-left-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}

.testimonial-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
	margin-top: 48px;
}

/* Testimonials intro box */
.testimonials-intro {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Slider Smooth Layout */
.testimonials-slider {
    position: relative;
    min-height: 160px;
}

.testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .testimonials-box {
        margin-bottom: 30px;
    }

    .feedback-left-title {
        text-align: center;
    }

    .testimonial-heading {
        text-align: center;
    }
}

.feedback { background-color: var(--white); }

.feedback-form { max-width: 800px; margin: 0 auto; }

.form-row { display: flex; gap: 20px; margin-bottom: 20px; }

label { display: block; margin-bottom: 8px; font-weight: 600; }

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.rating input { display: none; }

.rating label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    margin-right: 5px;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #ffc107;
}

/* Contact */
.contact { background-color: var(--light); }

.contact-container { display: flex; gap: 50px; }

.contact-info { flex: 1; }

.contact-details { margin-bottom: 30px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 { margin-bottom: 5px; }

.contact-form { flex: 1; }

/* ----------------------------------------------------
   Footer (3-column and full-width copyright)
---------------------------------------------------- */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo { height: 50px; margin-bottom: 20px; }

.footer-col p { color: #bdbdbd; }

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links { display: flex; gap: 15px; margin-top: 20px; }

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #424242;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

/* Full width copyright bar */
.copyright {
    width: 100%;
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    color: #bdbdbd;
    font-size: 0.9rem;
}

/* ----------------------------------------------------
   Floating action & app download buttons (right aligned)
---------------------------------------------------- */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.app-btn {
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.app-btn img {
    width: 150px;
    height: auto;
    display: block;
}

.app-btn:hover { transform: translateY(-2px); }

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ----------------------------------------------------
   Menu highlights (grid)
---------------------------------------------------- */
.mn-menu-highlights {
    padding: 80px 0;
    background-color: var(--white);
}

/* GRID LAYOUT FIXED */
.mn-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* Desktop & tablet structure */
.mn-item-1 { grid-column: 1 / 2; }
.mn-item-2 { grid-column: 2 / 3; }
.mn-item-3 { grid-column: 1 / 3; } /* full width */
.mn-item-4 { grid-column: 1 / 2; }
.mn-item-5 { grid-column: 2 / 3; }

/* Card */
.mn-menu-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mn-menu-item:hover { transform: translateY(-5px); }

.mn-menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay with bottom-left + bottom-right */
.mn-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.mn-left {
    max-width: 70%;
}

.mn-overlay h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.mn-overlay p {
    color: var(--light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ORDER NOW BUTTON */
.mn-order-btn {
    background: var(--primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mn-order-btn:hover {
    background: var(--primary-dark);
}

.mn-btn-container {
    text-align: center;
    margin-top: 40px; /* Decent spacing */
}

.mn-menu-btn {
    display: inline-block;
}

/* Mobile stack */
@media (max-width: 768px) {
    .mn-grid-container {
        grid-template-columns: 1fr;
    }
    .mn-menu-item img {
        height: auto;
    }
    .mn-item-1, .mn-item-2, .mn-item-3, .mn-item-4, .mn-item-5 {
        grid-column: 1 / 2 !important;
    }
    .mn-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .mn-left { max-width: 100%; }
	
	.ab-about-content { flex-direction: column-reverse; }
}

/* ----------------------------------------------------
   Menu page elements (tabs, download CTA)
---------------------------------------------------- */
.mn-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1626645738196-c2a7c87a8f58?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.mn-tabs-section { padding: 80px 0; background-color: var(--white); }

.mn-tabs-container { max-width: 1200px; margin: 0 auto; }

.mn-tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--light);
    padding-bottom: 20px;
}

.mn-tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.mn-tab-btn:hover { background-color: rgba(229, 57, 53, 0.1); }

.mn-tab-btn.active { background-color: var(--primary); color: var(--white); }

.mn-tab-content { display: none; animation: fadeIn 0.5s ease; }
.mn-tab-content.active { display: block; }

.mn-download-section { text-align: center; padding: 30px 0; border-top: 1px solid var(--light); }

.mn-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 24px;
    font-size: 1rem;
}

/* CTA section */
.mn-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mn-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--primary);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
}

.mn-cta-btn:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.2); transform: translateY(-3px); }

.mn-cta-btn.whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.mn-cta-btn.whatsapp:hover { background-color: #128C7E; }

/* ----------------------------------------------------
   Careers specific and benefits
---------------------------------------------------- */
.cr-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1552581234-26160f608093?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cr-vacancies-section { padding: 80px 0; background-color: var(--white); }

.cr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 30px;
}

.cr-vacancy-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cr-vacancy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.cr-vacancy-info h3 {
    margin-bottom: 8px;
}

/* Mobile: Single column */
@media (max-width: 768px) {
    .cr-grid {
        grid-template-columns: 1fr;
    }

    .cr-vacancy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cr-apply-btn {
        align-self: flex-end;
    }
}

.cr-apply-btn {
    padding: 10px 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 24px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Benefits grid */
.cr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Generic card hover for specialty/benefits */
.special-card, .ab-specialty-card, .cr-benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.special-card:hover, .ab-specialty-card:hover, .cr-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ----------------------------------------------------
   CTA banner
---------------------------------------------------- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-container { max-width: 900px; margin: 0 auto; }

.cta-banner h2 {
	color: var(--white);
}

.cta-banner h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* spacing between buttons */
    margin-top: 30px;
}

.cta-buttons .app-btn img {
    width: 160px;   /* equal size for both buttons */
    height: auto;
    display: block;
}

/* ----------------------------------------------------
   Global animations
---------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------
   Responsive
---------------------------------------------------- */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
	.app-dnl-hd { font-size: 2.0rem }
	.hamburger { display: block; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 1050;
		flex-wrap: nowrap;
    }
    .nav-item { margin: 15px 0; margin-left: 0; }
    .nav-link { font-size: 0.8rem; }
    .logo { height: 42px; }
    .about-content { flex-direction: column; }
    .contact-container { flex-direction: column; }
    .mn-grid-container { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, auto); }
    .mn-item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
    .mn-item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
    .mn-item-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
    .mn-item-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
    .mn-item-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .app-dnl-hd { font-size: 1.5rem }
	.nav-menu.active { left: 0; }
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }
    .dropdown:hover .dropdown-content { display: block; }
    .hero h1 { font-size: 2.5rem; }
	.hero span { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .form-row { flex-direction: column; gap: 0; }
    .locator-form { flex-direction: column; }
    .job-card { flex-direction: column; align-items: flex-start; }
    .job-card .btn { margin-top: 15px; }
    .mobile-img-section { padding: 40px 0 !important; }
    .mobile-img-container { padding: 0 10px; }
    .mobile-responsive-img { width: 100%; max-width: 100%; }

    /* ----------------------------------------------------
       FIX MENU GRID ON MOBILE (SHOW ALL 5 ITEMS)
    ---------------------------------------------------- */

    /* Force 1 column layout */
    .mn-grid-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Reset ALL desktop grid placement */
    .mn-item-1,
    .mn-item-2,
    .mn-item-3,
    .mn-item-4,
    .mn-item-5 {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        width: 100% !important;
    }

    /* Ensure items are visible (fixes hidden last 2 items issue) */
    .mn-menu-item {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
    }

    /* Full-width images */
    .mn-menu-item img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: cover !important;
    }

    /* Overlay behavior */
    .mn-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }

    .mn-left { max-width: 100%; }

    .mn-order-btn {
        align-self: flex-start;
    }


    /* ----------------------------------------------------
       MENU PAGE MOBILE
    ---------------------------------------------------- */
    .mn-hero h1 { font-size: 2.5rem; }
    .mn-tabs-header { flex-direction: column; align-items: center; }
    .mn-tab-btn { width: 100%; max-width: 250px; text-align: center; }
    .mn-cta-buttons { flex-direction: column; align-items: center; }
    .mn-cta-btn { width: 100%; max-width: 250px; justify-content: center; }


    /* ----------------------------------------------------
       CAREERS PAGE MOBILE
    ---------------------------------------------------- */
    .cr-hero h1 { font-size: 2.5rem; }
    .cr-vacancy-card { flex-direction: column; align-items: flex-start; }
    .cr-apply-btn { margin-top: 15px; align-self: flex-end; }


    /* ----------------------------------------------------
       TIMELINE MOBILE
    ---------------------------------------------------- */
    .timeline-container::before { left: 31px; }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-content::after { left: 21px; right: auto; }
    .timeline-item:nth-child(even) .timeline-content::after { left: 21px; }

}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
	.hero span { font-size: 1.0rem; }
    section { padding: 60px 0; }

    .floating-buttons { bottom: 20px; right: 20px; }
    .whatsapp-btn { width: 50px; height: 50px; font-size: 1.2rem; }
    .app-btn img { width: 120px; }
    .app-download-buttons { gap: 8px; }
	
	.cta-buttons { flex-wrap: wrap; gap: 15px; }
    .cta-buttons .app-btn img { width: 140px; }
}

/* ----------------------------------------------------
   About Page
---------------------------------------------------- */
/* About Page Hero */
.page-hero {
    height: calc(40vh + 90px);
    background-image: url(../media/herobanner.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 160px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.2rem;
}

/* About Page Section */
.ab-about-section {
    background-color: var(--white);
    padding: 80px 0;
}

.ab-about-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.ab-about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ab-about-image img {
    width: 100%;
    display: block;
}

.ab-about-text {
    flex: 1;
}

.ab-about-text h2 {
    text-align: center;
}

.ab-about-text p {
    text-align:justify;
}

/* Timeline Wrapper */
.ab-timeline {
    padding: 80px 0;
    background: var(--white);
}

.ab-timeline h2 {
    text-align: center;
    margin-bottom: 60px;
}

/* Timeline container */
.timeline-container {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Center vertical line */
.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

/* Timeline item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
}

/* Odd: left side */
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

/* Even: right side */
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

/* Circle markers */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 45px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 3;
}

/* Marker position for odd and even */
.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

/* Timeline card content */
.timeline-content {
    background: var(--light);
    padding: 25px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    /* Center vertical line on left */
    .timeline-container::before {
        left: 25px;
        transform: none;
    }

    /* Full width items stacked */
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 20px 0 70px;
        margin-bottom: 40px;
        text-align: left !important;
        float: none;
    }

    /* Fix marker circle */
    .timeline-item::before {
        left: 16px !important;
        top: 25px;
        right: auto;
        margin: 0;
    }

    /* Clean and properly spaced card */
    .timeline-content {
        background: var(--light);
        padding: 22px 20px;
        border-radius: 8px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        position: relative;
        width: 100%;
    }

    /* Year text spacing */
    .timeline-year {
        margin-bottom: 8px;
        font-size: 1.3rem;
    }
}

.timeline-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* What Makes Us Special */
.ab-special-section {
    background-color: var(--light);
    padding: 80px 0;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
    gap: 30px;
}

.special-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Tabs Header */
.mn-tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.mn-tab-btn {
    background: var(--light);
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    transition: 0.3s;
}

.mn-tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Content */
.mn-tab-content {
    display: none;
}
.mn-tab-content.active {
    display: block;
}

/* Images */
.mn-images-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mn-menu-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Download Section */
.mn-download-section {
    margin-top: 30px;
    text-align: center;
}

.mn-download-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
}

/* Mobile Fixes */
@media (max-width: 768px) {

    .mn-tabs-header {
        gap: 8px;
    }

    .mn-tab-btn {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }

    .mn-images-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mn-download-btn {
        width: 100%;
    }
}

/* icon animation */
.fa-slide-ani {
  animation: slide-fade 3s infinite;
}
@keyframes slide-fade {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fa-pulse-ani {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ----------------------------------------------------
   Blog Section
---------------------------------------------------- */
.blog-section {
    background-color: var(--light);
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image-wrapper img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    z-index: 2;
}

.blog-date .date {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    gap: 8px;
}

.blog-link i {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
}

/* Responsive Blog Grid */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    .blog-image-wrapper {
        height: 220px;
    }
}

/* Blog Post Reading Page Specifics */
.blog-post-header {
    background-color: var(--light);
    padding: 160px 0 60px;
    text-align: center;
}

.blog-post-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta i {
    color: var(--primary);
}

.blog-post-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-post-content {
    background-color: var(--white);
    padding: 0 0 80px;
}

.blog-post-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content-inner p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.blog-post-content-inner h2 {
    font-size: 2.2rem;
    margin: 50px 0 25px;
    color: var(--dark);
}

.blog-post-content-inner h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--dark);
}

.blog-post-content-inner ul, .blog-post-content-inner ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-post-content-inner li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 12px;
}

.blog-post-content-inner blockquote {
    border-left: 4px solid var(--primary);
    padding: 25px;
    background-color: var(--light);
    margin: 40px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.blog-post-content-inner blockquote p {
    margin-bottom: 0;
    font-size: 1.3rem;
    color: #333;
}

.blog-post-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-post-tags .tag {
    background-color: var(--light);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-post-tags .tag:hover {
    background-color: var(--primary);
    color: var(--white);
}

@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2.2rem;
    }
}

/* ----------------------------------------------------
   Privacy Policy
---------------------------------------------------- */
.privacy-policy {
    background-color: var(--white);
    color: var(--secondary);
    padding: 80px 0;
    line-height: 1.7;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.policy-effective-date {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.policy-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.policy-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 70%;
    background-color: var(--primary);
    border-radius: 3px;
}

.policy-list {
    padding-left: 20px;
    margin: 15px 0;
}

.policy-list li {
    margin-bottom: 12px;
    padding-left: 10px;
}

.policy-content .contact-details {
    margin-top: 25px;
    background-color: var(--light);
    padding: 25px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .policy-section-title {
        font-size: 1.5rem;
    }
    .policy-intro {
        font-size: 1rem;
    }
    .policy-content {
        padding: 0 10px;
    }
}

/* ----------------------------------------------------
   Terms & Conditions
---------------------------------------------------- */
.terms-conditions {
    background-color: var(--white);
    color: var(--secondary);
    padding: 80px 0;
    line-height: 1.7;
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-header h2 {
    color: var(--primary);
    margin-bottom: 15px;
}

.terms-update-date {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    background-color: var(--light);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
}

.terms-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 25px;
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.terms-agreement {
    font-weight: 600;
    color: var(--primary);
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(229, 57, 53, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 2px dotted #e0e0e0;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.terms-section-title {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
}

.terms-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

.terms-section-content {
    padding-left: 20px;
}

.terms-list {
    padding-left: 20px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
}

.terms-sublist {
    padding-left: 25px;
    margin-top: 10px;
}

.terms-sublist li {
    margin-bottom: 8px;
}

.terms-sublist li::before {
    content: "–";
    color: var(--gray);
}

.terms-content .contact-details {
    margin-top: 25px;
    background-color: var(--light);
    padding: 25px;
    border-radius: 8px;
}

.acceptance-box {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(198, 40, 40, 0.05) 100%);
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.acceptance-content h4 {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .terms-section-title {
        font-size: 1.4rem;
    }
    .terms-intro {
        font-size: 1rem;
        padding: 20px;
    }
    .terms-section-content {
        padding-left: 0;
    }
    .acceptance-box {
        padding: 20px;
    }
    .terms-content .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .terms-content .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .terms-section-title {
        font-size: 1.3rem;
    }
    .terms-update-date {
        font-size: 1rem;
        padding: 6px 15px;
    }
}

/* ----------------------------------------------------
   Utility classes (replacing inline styles)
---------------------------------------------------- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-small { font-size: 10px; font-weight: 400; }
.text-dark { color: #111; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.mt-60 { margin-top: 60px; }
.mb-50 { margin-bottom: 50px; }

/* Label margin */
label.form-label-left { margin-left: 10px; }

/* Section header utility */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.view-all-center {
    text-align: center;
    margin-top: 50px;
}

/* App download page specific */
.app-dnl-section {
    padding-top: 120px;
}

.app-dnl-highlight {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.app-dnl-subtitle {
    font-size: 26px;
    font-weight: 400;
}

.app-dnl-mt-60 {
    margin-top: 60px;
}

/* Feedback disclaimer */
.feedback-disclaimer {
    color: #111;
    font-size: 10px;
    font-weight: 400;
}

/* Copyright inline color replacement */
.copyright-primary {
    color: var(--primary);
}

/* Action button colors fix */
.action-btn.call { color: var(--primary); }
.action-btn.direction { color: var(--primary); }
.action-btn.whatsapp { color: var(--primary); }
