/* assets/css/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

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

/* Top Bar */
.top-bar {
    background: #01155f;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-info span {
    margin-right: 25px;
}

.top-bar-info i {
    margin-right: 8px;
    color: #c01c2a;
}

.top-bar-social a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.top-bar-social a i {
    margin-right: 8px;
}

.top-bar-social a:hover {
    color: #c01c2a;
}

/* Main Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.sticky {
    padding: 5px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #01155f;
}

.logo span {
    color: #c01c2a;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #c01c2a;
}

.nav-quote-btn {
    background: #c01c2a;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-quote-btn:hover {
    background: #8a141f;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #01155f;
}

/* Hero Section - Enhanced with BG Image and Gradient */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&auto=format');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1,21,95,0.9) 0%, rgba(192,28,42,0.7) 50%, rgba(1,21,95,0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #c01c2a;
    position: relative;
    display: inline-block;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero {
        min-height: 550px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
}

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

.btn-primary {
    background: #c01c2a;
    color: #fff;
}

.btn-primary:hover {
    background: #8a141f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192,28,42,0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #c01c2a;
    transform: translateY(-2px);
}

.btn-submit {
    background: #c01c2a;
    color: #fff;
    width: 100%;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #8a141f;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(192,28,42,0.1);
    color: #c01c2a;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-badge i {
    margin-right: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #01155f;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.quote-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #01155f;
}

.quote-info p {
    margin-bottom: 30px;
    color: #666;
}

.quote-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.quote-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    z-index: 1;
}

.quote-form .form-group textarea + i {
    top: 25px;
    transform: none;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.quote-form textarea {
    padding: 14px 15px 14px 45px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: #c01c2a;
    box-shadow: 0 0 0 3px rgba(192,28,42,0.1);
}

.quote-image {
    position: relative;
}

.quote-image img {
    width: 100%;
    border-radius: 15px;
    height: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.quote-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #c01c2a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-content h2 {
    color: #c01c2a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.about-content h3 {
    color: #01155f;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.vision, .mission {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.vision i, .mission i {
    font-size: 2rem;
    color: #c01c2a;
    margin-bottom: 15px;
}

.vision h4, .mission h4 {
    color: #01155f;
    margin-bottom: 10px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    height: 100%;
    object-fit: cover;
}

.about-image-years {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #c01c2a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
}

/* Values Section */
.values {
    background: #01155f;
    color: #fff;
    padding: 80px 0;
}

.values .section-title,
.values .section-subtitle {
    color: #fff;
}

.values .section-subtitle {
    color: #ccc;
}

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

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.value-icon i {
    font-size: 3rem;
    color: #c01c2a;
    margin-bottom: 15px;
}

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

/* Services Overview */
.services-overview {
    padding: 80px 0;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon i {
    font-size: 3rem;
    color: #c01c2a;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #01155f;
}

.learn-more {
    display: inline-block;
    margin-top: 15px;
    color: #c01c2a;
    text-decoration: none;
    font-weight: 600;
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Features */
.features {
    background: #f8f9fa;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.feature-icon i {
    font-size: 2.5rem;
    color: #c01c2a;
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: #01155f;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: #c01c2a;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    padding-left: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author i {
    font-size: 2.5rem;
    color: #c01c2a;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #01155f, #c01c2a);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons .btn {
    margin: 0 10px;
}

.cta .btn-outline {
    border-color: #fff;
}

.cta .btn-outline:hover {
    background: #fff;
    color: #01155f;
}

/* Footer */
.footer {
    background: #01155f;
    color: #aaa;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col h3 i {
    margin-right: 10px;
    color: #c01c2a;
}

.footer-col p, .footer-col a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-col a:hover {
    color: #c01c2a;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li i {
    margin-right: 8px;
    font-size: 0.8rem;
    color: #c01c2a;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(rgba(1,21,95,0.8), rgba(192,28,42,0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&auto=format');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header h1 i {
    margin-right: 15px;
    color: #c01c2a;
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-page-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #01155f;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.about-feature {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.about-feature i {
    color: #c01c2a;
    margin-right: 8px;
}

.about-page-image img {
    width: 100%;
    border-radius: 15px;
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

/* Stats Section */
.stats {
    background: #c01c2a;
    color: #fff;
    padding: 60px 0;
}

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

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin: 10px 0;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Leadership */
.leadership {
    padding: 80px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.leader-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

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

.leader-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #c01c2a;
}

.leader-card h3 {
    margin-bottom: 5px;
    color: #01155f;
}

.leader-card p {
    color: #666;
    margin-bottom: 15px;
}

.leader-social a {
    color: #aaa;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.leader-social a:hover {
    color: #c01c2a;
}

/* Values Detailed */
.values-detailed {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.value-detailed-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
}

.value-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-detailed-card i {
    font-size: 3rem;
    color: #c01c2a;
    margin-bottom: 20px;
}

.value-detailed-card h3 {
    color: #01155f;
}

/* Services Page */
.services-page {
    padding: 80px 0;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-icon i {
    font-size: 3.5rem;
    color: #c01c2a;
}

.service-detail-content h2 {
    margin-bottom: 15px;
    color: #01155f;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
}

.service-detail-content ul li {
    margin-bottom: 10px;
}

.service-detail-content ul li i {
    color: #c01c2a;
    margin-right: 10px;
}

/* Why Choose */
.why-choose {
    background: #f8f9fa;
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s;
}

.reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reason-number {
    font-size: 3rem;
    font-weight: 800;
    color: #c01c2a;
    display: block;
    line-height: 1;
}

.reason i {
    font-size: 2rem;
    color: #01155f;
    margin: 15px 0;
}

/* Contact Page */
.contact-page {
    padding: 80px 0;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #01155f;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #c01c2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.contact-item h3 {
    margin-bottom: 5px;
    color: #01155f;
}

.contact-item p, .contact-item a {
    color: #666;
    text-decoration: none;
}

.contact-item a:hover {
    color: #c01c2a;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h3 {
    margin-bottom: 15px;
    color: #01155f;
}

.contact-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #01155f;
    transition: all 0.3s;
}

.contact-social a:hover {
    background: #c01c2a;
    color: #fff;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h2 {
    margin-bottom: 10px;
    color: #01155f;
}

.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.contact-form .form-group textarea + i {
    top: 25px;
    transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form textarea {
    padding: 12px 15px 12px 45px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c01c2a;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #01155f;
}

.map-section h2 i {
    color: #c01c2a;
    margin-right: 10px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Projects Page */
.projects-page {
    padding: 80px 0;
}

.projects-filter {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 25px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
}

.filter-btn i {
    margin-right: 8px;
}

.filter-btn:hover {
    background: #f0f0f0;
}

.filter-btn.active {
    background: #c01c2a;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.project-overlay a {
    width: 50px;
    height: 50px;
    background: #c01c2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin-bottom: 8px;
    color: #01155f;
}

.project-info p {
    color: #666;
    font-size: 0.9rem;
}

.project-info p i {
    margin-right: 5px;
    color: #c01c2a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .quote-grid,
    .about-grid,
    .contact-grid,
    .about-page-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-info span {
        display: block;
        margin-bottom: 5px;
    }
    
    .hero-buttons .btn {
        margin: 5px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .quote-image-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}