/* CSS Reset and General Setup */
:root {
    --primary-red: #E31E24;
    --primary-green: #2E7D32;
    --primary-green-dark: #1B5E20;
    --primary-red-hover: #C1161B;
    --dark-bg: #111827;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --border-color: #E5E7EB;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary-red);
}

.highlight-green {
    color: var(--primary-green);
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-red);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-3-1 {
    grid-template-columns: 2fr 1fr;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-whatsapp-header:hover {
    background-color: var(--primary-green-dark);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

#main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

#site-logo {
    height: 50px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 8px 0;
}

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

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

/* Green Line sliding from left */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

/* Red Line sliding from right */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 5px;
    transition: var(--transition);
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--primary-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    height: 480px;
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-img.main-img {
    width: 80%;
    height: 85%;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img.sub-img {
    width: 55%;
    height: 55%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid var(--white);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.about-feature-item {
    display: flex;
    gap: 20px;
}

.about-feature-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.about-quote {
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
    margin-top: 10px;
}

.about-quote p {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--text-main);
}

.about-quote .quote-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
}

/* Stats Section */
.stats-bg {
    background-image: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.95)), url('images/Naninamadama-Selected-09.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.stat-card {
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.stat-num {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us Features */
.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-green);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 25px auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-green);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Wasi Deals Section */
.deals-header {
    margin-bottom: 40px;
}

.deals-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.deal-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    background-color: var(--white);
    width: 100%;
    max-width: 800px;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.deal-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.deal-card:hover img {
    transform: scale(1.01);
}

.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.static-deal {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    height: 400px;
}

/* Lightbox Modal styles */
.lightbox-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    background-color: var(--white);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Branches Section & Map style */
.grid-3-1 {
    display: grid;
    grid-template-columns: 2.2fr 1.1fr;
    gap: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding: 20px;
}

.map-wrapper {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

#map {
    width: 100%;
    height: 100%;
    z-index: 10;
}

.branches-sidebar {
    height: 500px;
    display: flex;
    flex-direction: column;
}

.branches-list-container {
    height: 100%;
    overflow-y: auto;
    padding-right: 5px;
}

.branches-list-container h3 {
    font-size: 1.15rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branches-list-container h3::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-red);
}

.branches-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.branch-item {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.branch-item:hover, .branch-item.active {
    background-color: rgba(46, 125, 50, 0.05);
    border-color: var(--primary-green);
    transform: scale(1.02);
}

.branch-item h4 {
    font-size: 1rem;
    color: var(--primary-green-dark);
    margin-bottom: 5px;
}

.branch-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Custom styles for leaflet map google look */
.leaflet-popup-content-wrapper {
    border-radius: var(--border-radius);
    padding: 5px;
    box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
    font-family: var(--font-body);
}

.map-popup-card h4 {
    font-size: 1rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.map-popup-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.map-popup-card a {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.map-popup-card a:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

/* Google style Custom Pin Label icon style */
.custom-map-marker {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-map-marker i {
    color: var(--primary-red);
    font-size: 32px;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition);
}

.custom-map-marker:hover i {
    transform: scale(1.15);
    color: var(--primary-green);
}

.custom-map-tooltip {
    background-color: var(--white) !important;
    color: var(--text-main) !important;
    border: 1px solid var(--primary-red) !important;
    border-radius: 6px !important;
    padding: 5px 10px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    box-shadow: var(--shadow-md) !important;
    font-family: var(--font-heading) !important;
    white-space: nowrap;
}

.custom-map-tooltip::before {
    border-top-color: var(--primary-red) !important;
}

/* Gallery Slider */
.gallery-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.gallery-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.gallery-item {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    transition: var(--transition);
}

.gallery-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.gallery-btn.prev {
    left: 0;
}

.gallery-btn.next {
    right: 0;
}

/* Careers Section */
.career-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.career-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.career-info {
    padding: 20px;
}

.career-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.career-branch {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Contact Section */
.contact-desc {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(227, 30, 36, 0.1);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-muted);
}

.social-links-wrapper h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-red);
    padding-left: 15px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Footer styling */
footer {
    background-color: #0c101a;
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary-green);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

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

.footer-hours {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

.footer-bottom {
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.admin-hidden-trigger {
    cursor: default;
    color: rgba(255,255,255,0.4);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-large {
    max-width: 800px;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-red);
}

/* Admin Panel UI */
.admin-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
}

.tab-btn.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-content {
    display: none;
    flex: 1;
    overflow-y: auto;
}

.tab-content.active {
    display: block;
}

.admin-upload-section {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.admin-deals-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.admin-deal-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 16 / 10;
}

.admin-deal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delete-deal-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(227, 30, 36, 0.9);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.delete-deal-btn:hover {
    background-color: var(--primary-red-hover);
    transform: scale(1.1);
}

/* Flex Header utility */
.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-1 {
        grid-template-columns: 1fr;
    }
    .map-wrapper, .branches-sidebar {
        height: 400px;
    }
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .about-image-wrapper {
        height: 380px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        flex: 0 0 100%;
    }
}

/* Careers Form Styling */
.careers-form-wrapper {
    margin-top: 3.5rem;
}

.careers-form-inner {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 850px;
    margin: 0 auto;
    border-top: 4px solid var(--primary-green);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.careers-form-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.careers-form-heading i {
    font-size: 2.75rem;
    color: #25D366;
    filter: drop-shadow(0 2px 5px rgba(37, 211, 102, 0.2));
}

.careers-form-heading h3 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--text-main);
}

.careers-form-heading p {
    color: var(--text-muted);
    margin: 3px 0 0 0;
    font-size: 0.95rem;
}

.career-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .career-form-grid {
        grid-template-columns: 1fr;
    }
    .careers-form-inner {
        padding: 1.75rem;
    }
}

.req {
    color: var(--primary-red);
    font-weight: 700;
}

.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--white);
    outline: none;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.career-submit-btn {
    font-size: 1.1rem;
    padding: 14px 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
