@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0066CC;
    --dark-blue: #003366;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-grey: #F0F0F0;
    --white: #FFFFFF;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-grey);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-out;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    box-shadow: 0 6px 12px rgba(0, 51, 102, 0.3);
}

.btn-primary:focus {
    outline: 2px solid var(--light-grey);
    outline-offset: 2px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 14px 28px;
}

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

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

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

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-grey);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-blue);
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark-grey);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    transition: right 0.4s ease-out;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 32px;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--dark-grey);
}

.mobile-nav-link {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-grey);
    padding: 16px 0;
    border-bottom: 1px solid var(--light-grey);
}

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

.mobile-cta {
    margin-top: 32px;
}

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

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-panel {
    position: relative;
    overflow: hidden;
}

.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    padding: 24px;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(0, 51, 102, 0.5));
}

/* About Section */
.about-section {
    background-color: var(--light-grey);
    position: relative;
}

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

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 24px;
    color: var(--medium-grey);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--medium-grey);
    margin-bottom: 24px;
}

/* Featured Projects */
.projects-showcase {
    background-color: var(--dark-grey);
    color: var(--white);
    overflow: hidden;
}

.projects-showcase .section-title h2,
.projects-showcase .section-title p {
    color: var(--white);
}

.projects-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 24px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-scroll::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 400px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.project-card-content {
    padding: 24px;
}

.project-card h3 {
    color: var(--dark-grey);
    margin-bottom: 8px;
}

.project-card p {
    color: var(--medium-grey);
    font-size: 0.875rem;
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--light-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 32px 16px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.feature-item h3 {
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--medium-grey);
    font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark-grey);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-blue);
}

.testimonial-role {
    color: var(--medium-grey);
    font-size: 0.875rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-grey);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-blue);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    margin-right: 16px;
}

.cta-banner .btn-primary:hover {
    background-color: var(--light-grey);
}

.cta-banner .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-banner .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background-color: var(--dark-grey);
    color: var(--light-grey);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: var(--font-secondary);
    color: var(--light-grey);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--medium-grey);
}

/* Page Hero */
.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-grey);
    margin-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Page Sections */
.story-section {
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 24px;
}

.story-content p {
    color: var(--medium-grey);
    margin-bottom: 16px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 16px;
}

.timeline-year {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-blue);
    min-width: 80px;
}

/* Values Section */
.values-section {
    background-color: var(--light-grey);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-blue);
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--medium-grey);
    font-size: 0.9375rem;
}

/* Team Section */
.team-section {
    background-color: var(--white);
}

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

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

.team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-card h3 {
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary-blue);
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    color: var(--medium-grey);
    font-size: 0.9375rem;
}

/* Milestones */
.milestones-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.milestone-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.milestone-item p {
    opacity: 0.9;
    font-size: 1rem;
}

/* Services Page */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 600;
    background-color: var(--light-grey);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab.active,
.service-tab:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 64px 0;
}

.service-detail.reverse .service-detail-image {
    order: 2;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--medium-grey);
    margin-bottom: 24px;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-list li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
}

/* Process Section */
.process-section {
    background-color: var(--light-grey);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.process-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.process-step h3 {
    margin-bottom: 12px;
}

.process-step p {
    color: var(--medium-grey);
    font-size: 0.9375rem;
}

/* Projects Page */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    background-color: transparent;
    border: 2px solid var(--light-grey);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

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

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 51, 102, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

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

.project-overlay h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.project-overlay p {
    color: var(--light-grey);
    font-size: 0.875rem;
}

/* Contact Page */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.contact-method {
    text-align: center;
    padding: 32px;
    background-color: var(--light-grey);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--primary-blue);
}

.contact-method h3 {
    margin-bottom: 8px;
}

.contact-method a {
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-form-section {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 1px solid var(--medium-grey);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

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

/* What to Expect */
.expect-section {
    background-color: var(--light-grey);
}

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

.expect-item {
    display: flex;
    gap: 16px;
}

.expect-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.expect-item p {
    color: var(--medium-grey);
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--light-grey);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--medium-grey);
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Responsive - Tablet */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 24px;
    }
    
    .nav, .header-contact {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-panel.hero-after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .about-grid,
    .story-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-detail.reverse .service-detail-image {
        order: 0;
    }
    
    .services-grid,
    .features-grid,
    .values-grid,
    .team-grid,
    .process-grid,
    .milestones-grid,
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .header {
        height: 68px;
    }
    
    .logo img {
        height: 48px;
    }
    
    .hero {
        padding-top: 68px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .features-grid,
    .values-grid,
    .team-grid,
    .process-grid,
    .milestones-grid,
    .projects-grid,
    .expect-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        flex: 0 0 300px;
    }
    
    .cta-banner .btn-primary,
    .cta-banner .btn-secondary {
        display: block;
        width: 100%;
        margin: 0 0 16px;
    }
    
    .page-hero {
        margin-top: 68px;
        min-height: 300px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-nav {
        flex-direction: column;
        align-items: stretch;
    }
}
