/* Base Styles */
:root {
    --primary-color: #ffcc00;
    --primary-dark: #e6b800;
    --secondary-color: #f9f9f9;
    --text-color: #333;
    --text-light: #777;
    --border-color: #eee;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
}

.btn-large {
    padding: 14px 30px;
    font-size: 16px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
    position: relative;
}

.main-nav ul li a {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0 !important;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px !important;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li a:hover {
    background-color: var(--secondary-color);
}

/* Mobile Nav */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: var(--shadow);
    padding: 20px;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav ul li a.submenu-item {
    padding-left: 20px;
    font-size: 14px;
    color: var(--text-light);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 0 0 50%;
    max-width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 18px;
}

.hero-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Projects Section */
.projects {
    background-color: var(--secondary-color);
}

.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.project-filters button {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 5px 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-filters button.active,
.project-filters button:hover {
    color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-image {
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
}

.project-overlay p {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.about-text {
    flex: 0 0 50%;
    max-width: 50%;
}

.about-text h2 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.about-feature h4 {
    margin-bottom: 5px;
}

.about-feature p {
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 10px;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-rating {
    margin-top: 10px;
}

.testimonial-rating i {
    color: var(--primary-color);
    margin: 0 2px;
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    flex: 0 0 40%;
    max-width: 40%;
}

.contact-form {
    flex: 0 0 55%;
    max-width: 55%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-detail i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-detail-content h4 {
    margin-bottom: 5px;
}

.contact-detail-content p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-social {
    display: flex;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a,
.footer-contact ul li a {
    color: #ccc;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover,
.footer-contact ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #ccc;
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    padding: 50px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
    font-size: 36px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumbs a {
    color: var(--text-color);
}

.breadcrumbs span {
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumbs span:last-child {
    color: var(--primary-color);
}

/* About Page */
.about-page {
    background-color: #fff;
}

.mission {
    background-color: var(--secondary-color);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-value {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.mission-value h3 {
    margin-bottom: 15px;
}

.mission-value p {
    color: var(--text-light);
}

.team {
    background-color: #fff;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
}

.member-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.member-description {
    color: var(--text-light);
}

.why-us {
    background-color: var(--secondary-color);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.reason-item h3 {
    margin-bottom: 15px;
}

.reason-item p {
    color: var(--text-light);
}

.clients {
    background-color: #fff;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.client-logo {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 36px;
}

.cta-content p {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background-color: var(--text-color);
    color: #fff;
}

.cta-content .btn:hover {
    background-color: #000;
}

/* Services Page */
.services-overview {
    background-color: #fff;
}

.category-details {
    background-color: #fff;
}

.category-content {
    display: flex;
    justify-content: space-between;
}

.category-description {
    flex: 0 0 65%;
    max-width: 65%;
}

.category-cta {
    flex: 0 0 30%;
    max-width: 30%;
}

.service-details {
    margin-top: 30px;
}

.service-details h3 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-details ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.service-details ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-details p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-box h3 {
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-projects {
    background-color: var(--secondary-color);
}

/* Gallery Page */
.projects-gallery {
    background-color: #fff;
}

.gallery-filters {
    margin-bottom: 30px;
}

.gallery-filters ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-filters ul li {
    margin: 0 5px 10px;
}

.gallery-filters ul li a {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gallery-filters ul li a.active,
.gallery-filters ul li a:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.single-project {
    background-color: #fff;
}

.project-details {
    display: flex;
    justify-content: space-between;
}

.project-gallery {
    flex: 0 0 55%;
    max-width: 55%;
}

.project-main-image {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.project-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.thumbnail {
    width: calc(25% - 8px);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.project-info {
    flex: 0 0 40%;
    max-width: 40%;
}

.project-info h2 {
    margin-bottom: 20px;
}

.project-meta {
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.meta-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.project-description {
    color: var(--text-light);
    margin-bottom: 30px;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.related-projects {
    background-color: var(--secondary-color);
}

/* Contact Page */
.contact {
    background-color: #fff;
}

.map {
    height: 450px;
}

.map-container {
    height: 100%;
}

.map iframe {
    height: 100%;
    width: 100%;
    border: 0;
}

/* Error Page */
.error-page {
    padding: 100px 0;
    text-align: center;
}

.error-content h1 {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.error-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-text {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text, .about-features {
        text-align: center;
    }
    
    .about-feature {
        flex-direction: column;
        align-items: center;
    }
    
    .about-feature i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .project-details {
        flex-direction: column;
    }
    
    .project-gallery, .project-info {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .project-gallery {
        margin-bottom: 30px;
    }
    
    .category-content {
        flex-direction: column;
    }
    
    .category-description, .category-cta {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .category-cta {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        max-width: 540px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .services-grid, 
    .projects-grid, 
    .mission-values, 
    .team-members, 
    .reasons-grid, 
    .clients-logo-grid {
        grid-template-columns: 1fr;
    }
    
    .thumbnail {
        width: calc(33.33% - 7px);
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h3::after,
    .footer-services h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-detail i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .contact-social {
        justify-content: center;
    }
    
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .thumbnail {
        width: calc(50% - 5px);
    }
    
    .gallery-filters ul li a {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .error-content h1 {
        font-size: 80px;
    }
    
    .error-content h2 {
        font-size: 24px;
    }
}

/* Print Styles */
@media print {
    header, footer, .mobile-nav-toggle, .mobile-nav {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .btn {
        border: 1px solid #000;
        padding: 5px 10px;
        text-decoration: none;
    }
    
    .hero, section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .hero-content, .about-content, .contact-content, .project-details, .category-content {
        display: block;
    }
    
    .hero-text, .hero-image, .about-image, .about-text, .contact-info, .contact-form, 
    .project-gallery, .project-info, .category-description, .category-cta {
        width: 100%;
        max-width: 100%;
    }
    
    .services-grid, .projects-grid, .mission-values, .team-members, 
    .reasons-grid, .clients-logo-grid, .footer-content {
        display: block;
    }
    
    .service-card, .project-item, .mission-value, .team-member, 
    .reason-item, .client-logo {
        width: 100%;
        margin-bottom: 20px;
        page-break-inside: avoid;
    }
    
    .service-image, .project-image, .member-image {
        height: auto;
    }
    
    .project-overlay {
        position: static;
        opacity: 1;
        background: none;
        color: #000;
        padding: 10px 0;
    }
    
    .project-overlay h3, .project-overlay p {
        color: #000;
    }
    
    .thumbnail {
        width: 24%;
    }
}

/* Additional Utility Classes */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 10px !important;
}

.mb-2 {
    margin-bottom: 20px !important;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 10px !important;
}

.mt-2 {
    margin-top: 20px !important;
}

.mt-3 {
    margin-top: 30px !important;
}

.p-0 {
    padding: 0 !important;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-flex {
    display: flex !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-column {
    flex-direction: column !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.rounded {
    border-radius: 8px !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.bg-light {
    background-color: var(--secondary-color) !important;
}

.bg-white {
    background-color: #fff !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-dark {
    color: var(--text-color) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.position-relative {
    position: relative !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus, .btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to content link for keyboard navigation */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--text-color);
    padding: 8px 15px;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}
