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

:root {
    --primary-color: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

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

.section {
    display: none;
    padding-top: 80px;
}

.section.active {
    display: block;
}

/* Remove padding for sections with hero slider */
.section .hero {
    margin-top: -80px;
}

/* Add padding back to content after hero */
.section .hero + .container,
.section .hero + .removals-section {
    padding-top: 3rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: #000000;
    font-weight: 500;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-arrow,
.submenu-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 250px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 1px solid var(--light-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Nested Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-submenu:hover .dropdown-submenu-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu:hover .submenu-arrow {
    transform: translateX(5px);
}

.dropdown-submenu-menu li {
    border-bottom: 1px solid var(--light-color);
}

.dropdown-submenu-menu li:last-child {
    border-bottom: none;
}

.dropdown-submenu-menu a {
    padding: 12px 20px;
    display: block;
}

.dropdown-submenu-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    color: white;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem;
    border-radius: 10px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Hero overlay text styling for About Us and Contact Us pages */
.hero-content .page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content .mission,
.hero-content .contact-subtitle {
    font-size: 1.25rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Tagline Banner Section */
.tagline-banner {
    padding: 0.75rem 0;
    background: linear-gradient(135deg, #FF5722 0%, #1e293b 100%);
    text-align: center;
}

.main-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Removals Solutions Section - Clean Luxury Design */
.removals-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Remove container restrictions for removals section */
.removals-section .container {
    max-width: 100%;
    padding: 0;
}

.removals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    z-index: 0;
}

.removals-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.removals-header .section-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.removals-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 1rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.removals-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
    padding: 0;
    overflow-x: visible;
    width: 100%;
}

.removal-card {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    max-width: 220px;
}

.removal-card:hover {
    transform: translateY(-8px);
}

.removal-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.removal-card:hover .removal-icon {
    transform: scale(1.05);
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Image icon styling - all icons are now images */
.removal-icon.image-icon {
    border: 3px solid #e2e8f0;
    background: #ffffff;
}

.removal-icon .icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.removal-card:hover .removal-icon.image-icon {
    transform: scale(1.05);
    border-color: #cbd5e1;
}

.removal-card h3 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.3px;
    max-width: 180px;
}

.removal-card p {
    display: none;
}

.removal-card .btn-quote {
    display: none;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: var(--dark-color);
    color: white;
}

/* Map Background Section */
.map-section {
    width: 100%;
    height: 500px;
    background-image: url('../images/logbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    color: white;
}

/* About Section */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mission {
    font-size: 1.25rem;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story {
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-story p:last-child {
    margin-bottom: 0;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.team-member h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Section */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.services-subtitle {
    font-size: 1.25rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 100%;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-detailed-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: center;
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
}

.service-detailed-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-desc {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.service-features h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detailed-card .btn {
    margin-top: 1rem;
    width: 100%;
    max-width: 200px;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    margin: 4rem -2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-section .section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.why-choose-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-subtitle {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.why-choose-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.why-choose-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Contact Section */
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card,
.contact-form-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
}

.info-card h3,
.contact-form-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
}

.info-item.emergency {
    background-color: #fee2e2;
    padding: 1rem;
    border-radius: 5px;
    border-left: 4px solid var(--danger-color);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Contact Map Section - Full View */
.contact-map-section {
    width: 100%;
    height: 700px;
    background-image: url('../images/logbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.contact-map-section .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.location-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

/* Image Slider */
.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 16px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
    background-color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .removals-grid {
        gap: 2rem;
    }

    .removal-card {
        width: 160px;
        height: 160px;
    }

    .removal-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 100px 2rem 2rem;
        overflow-y: auto;
        z-index: 998;
        box-shadow: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin-bottom: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    /* Mobile Dropdown Adjustments */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        margin-left: 0;
        margin-top: 0.5rem;
        border-radius: 8px;
        display: none;
        padding: 0.5rem 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .dropdown-submenu-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #e9ecef;
        margin-left: 1rem;
        border-radius: 8px;
        display: none;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }

    .dropdown-submenu.active .dropdown-submenu-menu {
        display: block;
    }

    .dropdown-submenu-menu a {
        padding: 0.75rem 1.5rem;
    }

    .dropdown-submenu-menu a:hover {
        padding-left: 1.5rem;
    }

    .dropdown-arrow,
    .submenu-arrow {
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-submenu.active .submenu-arrow {
        transform: rotate(90deg);
    }

    /* Logo adjustments for mobile */
    .logo-image {
        height: 60px;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
    }

    /* Adjust mobile menu top padding based on navbar height */
    .nav-menu {
        padding-top: 90px !important;
    }

    /* Hero content mobile adjustments */
    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .removals-grid {
        gap: 1.5rem;
    }

    .removal-card {
        width: 140px;
        height: 140px;
    }

    .removal-card h3 {
        font-size: 0.85rem;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        height: 500px;
        border-radius: 10px;
    }

    /* Service Showcase Mobile */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-grid-pets {
        grid-template-columns: 1fr;
    }

    .showcase-item img {
        height: 200px;
    }

    .service-showcase {
        padding: 2rem 0;
        margin: 2rem 0;
    }

    .pet-services-info {
        padding: 1.5rem;
    }

    /* Tagline Banner Mobile */
    .tagline-banner {
        padding: 0.5rem 0;
    }

    .main-tagline {
        font-size: 1rem;
        letter-spacing: 0.3px;
    }

    .pet-services-info h3 {
        font-size: 1.25rem;
    }

    .pet-services-info li {
        font-size: 0.95rem;
    }
}

/* Service Detail Pages */
.service-detail-content {
    padding: 3rem 0;
}

.service-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-options {
    margin-top: 4rem;
}

.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.option-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.option-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
}

/* Service Showcase/Gallery */
.service-showcase {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-color);
    border-radius: 16px;
}

.service-showcase .section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.showcase-grid-pets {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.showcase-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.showcase-item p {
    padding: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin: 0;
    font-size: 0.95rem;
}

/* Showcase Items Without Captions */
.showcase-grid-no-captions {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.showcase-item-no-caption {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.showcase-item-no-caption:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.showcase-item-no-caption img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Pet Services Info */
.pet-services-info {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pet-services-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pet-services-info ul {
    list-style: none;
    padding: 0;
}

.pet-services-info li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.pet-services-info li:last-child {
    border-bottom: none;
}

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

.section.active {
    animation: fadeIn 0.5s ease-in-out;
}

/* Project Cargo Completed Section */
#project-cargo-completed-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

.completed-projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.completed-projects-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.completed-projects-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 400;
}

.completed-project {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.completed-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--primary-color);
}

.project-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
    min-width: 80px;
}

.project-info {
    flex: 1;
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.project-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 64, 175, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-icon {
    font-size: 3rem;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 20px 25px;
    font-size: 30px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}

.modal-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 30px;
}

.modal-next {
    right: 30px;
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 8px;
    max-width: 80%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .completed-projects-header .section-title {
        font-size: 2rem;
    }

    .project-header {
        flex-direction: column;
        gap: 15px;
    }

    .project-number {
        font-size: 2.5rem;
        min-width: auto;
    }

    .project-title {
        font-size: 1.4rem;
    }

    .project-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }

    .modal-nav {
        padding: 15px 18px;
        font-size: 24px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 75vh;
    }

    .modal-caption {
        bottom: 15px;
        font-size: 1rem;
        padding: 10px 20px;
        max-width: 90%;
    }
}
