/* ===== CSS Variables ===== */
:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #2C3E50;
    --secondary-dark: #1A252F;
    --accent-color: #3498DB;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.header.scrolled .navbar .nav-links a,
.header.scrolled .navbar .logo-text span,
.header.scrolled .btn-primary {
    color: var(--text-dark);
}

.header.scrolled .btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 150px;
    height: 150px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: none;
}

/* Navigation */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--bg-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    transition: var(--transition);
}

/* CTA Button */
.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--bg-white);
    cursor: pointer;
}

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

.btn-full {
    width: 100%;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1580674285054-bed31e145f59?w=1920&h=1080&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.9) 0%, rgba(44,62,80,0.7) 50%, rgba(255,107,53,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--bg-white);
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 .highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat i {
    font-size: 32px;
    color: var(--primary-color);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--bg-white);
}

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

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.service-features {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===== Locations Section ===== */
.locations {
    padding: 100px 0;
    background: var(--bg-white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

/* Location card backgrounds - all using site's orange theme */
.location-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

/* Common location image styling */
.location-image {
    position: relative;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Map overlay - subtle white outline on orange background */
.location-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 600'%3E%3Cpath d='M200,100 Q180,120 190,160 Q200,200 230,230 Q260,250 300,240 Q330,230 350,260 Q370,290 360,330 Q350,370 330,400 Q310,430 280,450 Q250,465 220,450 Q190,430 170,400 Q150,360 155,320 Q160,280 180,240 Q190,210 200,180 Q205,140 200,100' fill='none' stroke='%23FFFFFF' stroke-width='3' opacity='0.25'/%3E%3Ccircle cx='250' cy='240' r='4' fill='%23FFFFFF' opacity='0.4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
}

/* Icon and flag styling */
.location-image i {
    font-size: 48px;
    color: var(--bg-white);
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.location-flag {
    font-size: 56px;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.location-content {
    padding: 25px;
    background: var(--bg-white);
}

.location-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.location-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Features Section ===== */
.features {
    padding: 100px 0;
    background: var(--bg-light);
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.feature-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.values-list {
    margin-top: 15px;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.values-list i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
}

.values-list strong {
    color: var(--secondary-color);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    font-size: 16px;
    margin-top: 20px;
    display: inline-block;
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
}

.info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

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

.footer-brand .logo-main {
    color: var(--bg-white);
}

.footer-brand .logo-sub {
    color: var(--primary-color);
}

.footer-brand > p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

.footer-links ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .services-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-card,
    .location-card {
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .footer-brand p {
        font-size: 13px;
    }
}

/* Tablet Portrait & Large Mobile */
@media (max-width: 900px) {
    .container {
        max-width: 720px;
    }

    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .feature-section {
        gap: 40px;
    }

    .about-grid,
    .contact-grid {
        gap: 40px;
    }

    .hero-stats {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    /* Navigation */
    .navbar {
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        color: var(--secondary-color);
        font-size: 14px;
        display: block;
        padding: 8px 0;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Make all buttons touch-friendly */
    .btn-primary,
    .btn-secondary,
    .nav-links a {
        touch-action: manipulation;
    }

    .nav-links a {
        padding: 12px 10px;
        border-radius: 4px;
    }

    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--secondary-color);
        transition: var(--transition);
        border-radius: 2px;
    }

    /* Mobile nav backdrop for better mobile experience */
    .nav-backdrop {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-backdrop.active {
        opacity: 1;
    }

    /* Hamburger animation when active */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .logo-text {
        display: none;
    }

    .logo-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-text h1 .highlight {
        display: block;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .hero-cta {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 14px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .stat {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .stat i {
        font-size: 28px;
        margin: 0 auto 5px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
        text-transform: uppercase;
    }

    /* Sections */
    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 16px;
    }

    .services {
        padding: 50px 0;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .locations {
        padding: 50px 0;
    }

    .locations-grid {
        gap: 20px;
    }

    .location-card {
        padding: 15px;
    }

    .location-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--primary-color);
    }

    .location-content h3 {
        font-size: 18px;
    }

    .location-content p {
        font-size: 13px;
    }

    .features {
        padding: 50px 0;
    }

      /* About Section - Stacked */
    .about {
        padding: 50px 0;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        width: 100%;
        order: 1;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        border-radius: 8px;
    }

    .about-content {
        width: 100%;
        order: 2;
        text-align: center;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 24px;
    }

    .cta-section > p {
        font-size: 15px;
    }

     /* Contact Section - Form takes full width */
    .contact {
        padding: 50px 0;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-form-wrapper {
        order: 1;
    }

    .contact-info {
        order: 2;
    }

    .info-card {
        flex: 1;
    }

    /* Features - Why Choose Cargo 89 - Full Width Stacked */
    .feature-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .feature-content {
        width: 100%;
    }

    .feature-image {
        width: 100%;
        order: 1;
    }

    .feature-content {
        order: 2;
    }

    .feature-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
        text-align: center;
    }

    .feature-content > p {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-item {
        padding: 25px 20px;
        text-align: center;
    }

    .feature-item i {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-item h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .feature-image {
        order: -1;
    }

    .feature-image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }

    /* About */
    .about-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-content > p {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-content h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .values-list {
        margin-top: 15px;
    }

    .values-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .values-list i {
        font-size: 16px;
    }

    /* Contact */
    .contact-info {
        gap: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card i {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .info-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .info-card p {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    /* Contact Section - Full Width Form on Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-wrapper {
        order: -1;
        width: 100%;
    }

    /* Footer */
    .footer {
        padding: 60px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-brand .logo {
        margin: 0 auto 15px;
    }

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

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-links ul a {
        padding: 8px 15px;
        display: block;
        width: 100%;
        transition: color 0.3s ease;
    }

    .footer-links ul a:hover {
        color: var(--primary-color);
    }

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

    .footer-contact ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-social .social-icons {
        justify-content: center;
        display: flex;
        gap: 15px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid var(--border-color);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .location-content {
        padding: 20px;
    }

    .location-content h3 {
        font-size: 18px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h4 {
        font-size: 16px;
    }

    .info-card p {
        font-size: 13px;
    }

    /* Contact form full width */
    .contact-form-wrapper {
        width: 100%;
        padding: 30px 20px;
    }

    .info-card {
        width: 100%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        width: 100%;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
        display: block;
    }

    .contact-form {
        gap: 15px;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 14px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form-wrapper {
        box-shadow: var(--shadow-sm);
        border-radius: 8px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .cta-section > p {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 13px;
    }

   /* Footer for small mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-links ul a {
        width: 100%;
        padding: 10px 0;
        font-size: 13px;
        display: block;
    }

    .footer-contact ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .footer-brand .logo {
        margin: 0 auto 10px;
    }

    .footer-links {
        padding: 10px 0;
    }

    .footer-brand p {
        font-size: 12px;
    }

    .footer-links h4 {
        font-size: 14px;
    }

    .footer-links ul li a {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .hero-text h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 13px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .stat-number {
        font-size: 26px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .location-image {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--primary-color);
    }

    .location-content h3 {
        font-size: 15px;
    }

    .footer-brand .logo {
        margin: 0 auto 10px;
    }

    .footer-links ul {
        gap: 5px;
    }

    .footer-bottom p {
        font-size: 10px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
    }

    .hero-text {
        max-width: 500px;
    }
}

/* Print Styles */
@media print {
    .header {
        position: static;
    }

    .nav-links,
    .btn-primary,
    .hero-cta,
    .cta-section {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-overlay {
        background: rgba(44,62,80,0.8);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.1ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #D94815;
        --secondary-color: #000;
        --text-light: #555;
        --border-color: #333;
    }

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

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-to-top i {
    font-size: 20px;
}

/* Mobile scroll to top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top i {
        font-size: 18px;
    }
}

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

.service-card,
.location-card,
.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== Notifications ===== */
.notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 90%;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

.notification.info {
    background: #3498db;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* Mobile notifications */
@media (max-width: 768px) {
    .notification {
        top: 70px;
        padding: 12px 20px;
        font-size: 14px;
        left: 0;
        right: 0;
        transform: translateX(-50%);
    }
}