/* Gulf City Cleaning - Exact Match Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    /* Primary Colors - Exact Match */
    --primary-green: #0a5c36;
    --primary-green-light: #0d7a48;
    --primary-green-dark: #074428;
    --accent-green: #00b36b;

    /* Background Colors */
    --white: #ffffff;
    --gray-bg: #f5f5f5;
    --dark-bg: #1a1a1a;

    /* Text Colors */
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;

    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Menu Anchor */
.menu-anchor {
    position: relative;
    top: -100px;
    visibility: hidden;
}

/* ==================== HEADER - BLUE THEME MATCHING ORIGINAL ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(30, 80, 140, 0.98) 0%, rgba(25, 70, 125, 0.95) 100%);
    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(25, 70, 125, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.logo {
    flex-shrink: 0;
    padding: 0 30px;
    text-align: center;
}

.logo img {
    height: 70px;
    width: auto;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 94px;
    left: 0;
    width: 100%;
    background: rgba(25, 70, 125, 0.98);
    padding: 0;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.3s ease;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-link {
    display: block;
    padding: 18px 25px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.lang-switcher {
    margin-left: 20px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.mobile-lang-switcher {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    margin-top: 10px;
}

.lang-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

/* ==================== HERO SECTION - BLUE THEME MATCHING ORIGINAL ==================== */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    margin-top: 94px;
    text-align: left;
    padding: 0 10%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 75, 135, 0.75) 0%, rgba(35, 85, 150, 0.70) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 550px;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    margin: 0;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 80px 0;
}

.white-bg {
    background: var(--white);
}

.gray-bg {
    background: var(--gray-bg);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    background: var(--gray-bg);
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 40px;
    align-items: start;
}

.about-content h2 {
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.85;
    font-size: 15px;
}

.about-divider {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5px;
}

.about-divider span {
    font-size: 120px;
    color: var(--primary-green);
    font-weight: 100;
    line-height: 0.8;
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.company-badge img {
    max-width: 100%;
    height: auto;
}

.about-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-icons img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: 0.3s ease;
}

.about-icons img:hover {
    transform: scale(1.1);
}

/* ==================== COMPETENCIES ==================== */
.competencies-section {
    background: var(--white);
    text-align: center;
    padding: 80px 0;
}

.competencies-section h2 {
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.competencies-section>.container>p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.85;
}

/* ==================== SERVICES SECTION - GREEN BG ==================== */
.services-section {
    background: linear-gradient(135deg, #1e4b87 0%, #235596 100%);
    color: var(--white);
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    gap: 40px;
    align-items: start;
}

.services-content h2,
.services-list h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.services-content p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 15px;
}

.services-divider {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5px;
}

.services-divider span {
    font-size: 120px;
    color: var(--white);
    font-weight: 100;
    line-height: 0.8;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(3px);
}

.service-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
}

.service-item span {
    font-size: 13px;
    line-height: 1.4;
}

/* ==================== SERVICE CARDS ==================== */
.service-card-section {
    padding: 70px 0;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse>* {
    direction: ltr;
}

.service-card-content h2 {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card-content p {
    color: var(--text-gray);
    line-height: 1.85;
    font-size: 15px;
}

.service-card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card-image img {
    max-width: 220px;
    transition: 0.3s ease;
}

.service-card-image img:hover {
    transform: scale(1.05);
}

/* ==================== FLEET SECTION ==================== */
.fleet-section {
    background: var(--gray-bg);
    padding: 100px 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fleet-content h2 {
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

.fleet-content p {
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 15px;
}

.fleet-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Fleet Carousel */
.fleet-carousel {
    padding: 50px 0;
    background: var(--white);
}

.fleet-swiper {
    padding: 20px 0 60px;
}

.fleet-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.fleet-swiper .swiper-slide img {
    max-width: 130px;
    max-height: 130px;
    object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-green);
    width: 44px;
    height: 44px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-green);
}

/* ==================== INFO SECTION ==================== */
.info-section {
    padding: 100px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 200px 1fr;
    gap: 50px;
    align-items: start;
}

.info-block h3 {
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.info-block ul {
    list-style: disc;
    list-style-position: inside;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.info-block ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
}

.info-block p {
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 15px;
    font-size: 15px;
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    max-width: 160px;
}

/* ==================== QUALITY SECTION ==================== */
.quality-section {
    padding: 100px 0;
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quality-content h2 {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.quality-content p {
    color: var(--text-gray);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 15px;
}

.quality-list {
    background: var(--gray-bg);
    padding: 20px 25px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-green);
}

.quality-list p {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.quality-list p:last-child {
    margin-bottom: 0;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.certificate-item {
    display: block;
    background: var(--gray-bg);
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.certificate-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px;
}

.certificate-item h4 {
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    max-width: 130px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-green);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.footer-links i {
    color: var(--accent-green);
    font-size: 11px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
}

.contact-item i {
    color: var(--accent-green);
    width: 16px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.social-links i {
    color: var(--white);
    font-size: 15px;
}

.footer-map-section {
    display: flex;
    flex-direction: column;
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    width: 100%;
}

#footer-map {
    width: 100%;
    height: 100%;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: #777;
    font-size: 13px;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, rgba(30, 75, 135, 0.95) 0%, rgba(35, 85, 150, 0.9) 100%);
    padding: 150px 0 70px;
    text-align: center;
    margin-top: 94px;
}

.page-header h1 {
    color: var(--white);
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== FORMS ==================== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: 0.3s ease;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.08);
}

.form-control.error {
    border-color: #e74c3c;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 92, 54, 0.3);
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== CONTACT CARDS ==================== */
.contact-info-section {
    background: var(--gray-bg);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-card h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

/* ==================== RECYCLING PAGE ==================== */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.recycling-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.recycling-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.recycling-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.recycling-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
}

.recycling-icon i {
    font-size: 32px;
    color: var(--white);
}

.recycling-info-card h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 20px;
}

.recycling-info-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 15px;
}

/* Guidelines */
.guidelines-section {
    background: var(--gray-bg);
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.guideline-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guideline-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.guideline-icon.paper {
    background: #e3f2fd;
}

.guideline-icon.paper i {
    color: #1976d2;
}

.guideline-icon.plastic {
    background: #fff3e0;
}

.guideline-icon.plastic i {
    color: #f57c00;
}

.guideline-icon.glass {
    background: #e8f5e9;
}

.guideline-icon.glass i {
    color: #388e3c;
}

.guideline-icon.metal {
    background: #fce4ec;
}

.guideline-icon.metal i {
    color: #c2185b;
}

.guideline-icon i {
    font-size: 28px;
}

.guideline-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 16px;
}

.guideline-card ul {
    text-align: left;
    color: var(--text-gray);
    font-size: 13px;
}

.guideline-card ul li {
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
}

.guideline-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* ==================== FORM ROWS ==================== */
.form-section {
    padding: 60px 0;
    background: var(--gray-bg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.three-cols {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-row .form-group {
    margin-bottom: 0;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: 14px 50px;
    font-size: 16px;
    border-radius: 6px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 92, 54, 0.3);
}

/* ==================== CONTACT ICON CARDS ==================== */
.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 28px;
    color: var(--white);
}

/* ==================== STORE LOCATOR ==================== */
.locator-section {
    padding: 60px 0;
    background: var(--white);
}

.locator-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    min-height: 600px;
}

.locator-sidebar {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 25px;
}

.search-box h3 {
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-search {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 6px;
    margin-top: 10px;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(10, 92, 54, 0.3);
}

.locations-list {
    margin-top: 30px;
}

.locations-list h4 {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.location-items {
    max-height: 400px;
    overflow-y: auto;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s ease;
    cursor: pointer;
}

.location-item:hover {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.location-item i {
    color: var(--primary-green);
    font-size: 20px;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-info strong {
    color: var(--text-dark);
    font-size: 14px;
}

.location-info span {
    color: var(--text-light);
    font-size: 12px;
}

.locator-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 600px;
    width: 100%;
}

#recycling-map {
    width: 100%;
    height: 100%;
}

.locator-map iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border: none;
}

/* ==================== RECYCLING INFO SECTION ==================== */
.recycling-info-section {
    background: var(--gray-bg);
}

.section-title-centered {
    text-align: center;
    color: var(--primary-green);
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {

    .about-grid,
    .services-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-divider,
    .services-divider {
        display: none;
    }

    .service-card,
    .fleet-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-card.reverse {
        direction: ltr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guidelines-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-image {
        order: -1;
    }

    .locator-grid {
        grid-template-columns: 1fr;
    }

    .locator-map iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .header-container {
        padding: 12px 20px;
    }

    .logo img {
        height: 55px;
    }

    .logo {
        padding: 0;
    }

    .hero {
        min-height: 500px;
        margin-top: 79px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards,
    .recycling-info-grid {
        grid-template-columns: 1fr;
    }

    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .form-grid,
    .form-row,
    .form-row.three-cols {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 30px 20px;
    }

    .page-header {
        padding: 120px 0 50px;
        margin-top: 79px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .about-content h2,
    .services-content h2,
    .services-list h2,
    .quality-content h2,
    .fleet-content h2 {
        font-size: 26px;
    }

    .container {
        padding: 0 15px;
    }
}