/* Sticky Navbar */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 24px 0 16px 0;
    transition: box-shadow 0.2s;
}

.logo {
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #222;
    text-decoration: none;
}

.logo img {
    max-height: 34px;
}

.nav-link {
    font-family: 'Karla', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #222;
    margin-left: 32px;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #64412F;
}

/* Mobile Menu */
.menu-toggler {
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #222;
    display: block;
    transition: background-color 0.3s;
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #222;
    display: block;
    transition: transform 0.3s;
}

.hamburger-icon:before {
    top: -8px;
}

.hamburger-icon:after {
    bottom: -8px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    z-index: 1600;
}

.mobile-nav {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-nav-link {
    font-family: 'Karla', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    margin: 15px 0;
    padding: 10px;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-link:hover {
    color: #64412F;
}

/* Hero Section */
.hero {
    height: calc(100vh - 150px);
    padding: 0;
    background: #fff;
    display: flex;
    align-items: center;
}
.hero-title {
    font-family: 'Karla', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero-subtitle {
    font-family: 'Karla', sans-serif;
    font-size: 1rem;
    color: #888;
    margin-bottom: 32px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero .swiper-button-next,
.hero .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.hero .swiper-button-next:hover,
.hero .swiper-button-prev:hover {
    background: rgba(0,0,0,0.5);
}

.hero .swiper-button-next:after,
.hero .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Quality Section */
.quality-section {
    padding: 140px 0 80px 0;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.quality-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #222;
    font-family: 'Karla', sans-serif;
    font-weight: 500;
}

.quality-section .right-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quality-section .right-col p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.more-btn {
    display: inline-block;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s;
}

.more-btn:hover {
    background: #444;
    color: #fff;
}

/* Gallery Section */
.gallery-section {
    background: #fff;
    padding: 0;
}

.gallery-row {
    margin: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    height: 600px; /* Fixed height for all gallery items */
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Crop and center images */
    object-position: center;
    transition: transform 0.5s ease;
}

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.trust-title {
    font-family: 'Karla', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 60px;
}

.trust-category {
    color: #999;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-weight: 500;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    font-family: 'Karla', sans-serif;
    margin-bottom: 15px;
    position: relative;
}

.trust-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #ddd;
}

.trust-col {
    padding-right: 30px;
    margin-bottom: 30px;
}

.trust-text {
    font-size: 1rem;
    color: #555;
    font-family: 'Karla', sans-serif;
    line-height: 1.6;
    margin-top: 30px;
}

/* Vision Section */
.vision-section {
    background: #222;
    color: #fff;
    padding: 48px 0;
}
.vision-section h3 {
    font-family: 'Karla', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vision-text {
    font-size: 1.1rem;
    font-family: 'Karla', sans-serif;
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 56px 0 32px 0;
    background: #fff;
}
.projects-title {
    font-family: 'Karla', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 32px;
}

.projects-slider {
    position: relative;
    margin-bottom: 40px;
}

.project-item {
    background: #fff;
    margin-bottom: 24px;
    overflow: hidden;
}

.project-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

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

.project-info {
    padding: 12px 0;
}

.project-title {
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.project-location {
    font-family: 'Karla', sans-serif;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.projects-section .swiper-button-next,
.projects-section .swiper-button-prev {
    color: #000;
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.projects-section .swiper-button-next:hover,
.projects-section .swiper-button-prev:hover {
    background: #f8f8f8;
}

.projects-section .swiper-button-next:after,
.projects-section .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Pinterest Section */
.pinterest-section {
    background: #222;
    color: #fff;
    padding: 56px 0 32px 0;
}
.pinterest-heading {
    font-size: 0.9rem;
    color: #fff;
    font-family: 'Karla', sans-serif;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pinterest-title {
    font-family: 'Karla', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* Contact Section */
.contact-section {
    padding: 56px 0 32px 0;
    background: #fff;
}

.contact-section a{
    color: #222;
    text-decoration: none;
}

.contact-section-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.contact-section-link:hover {
    text-decoration: none;
    color: inherit;
}

.contact-title {
    font-family: 'Karla', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.contact-title svg {
    margin-left: 12px;
    transition: transform 0.3s;
}

.contact-section-link:hover .contact-title svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 24px 0;
    font-family: 'Karla', sans-serif;
    font-size: 0.95rem;
    color: #888;
}

/* General Styles */
body {
    font-family: 'Karla', Arial, sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    padding: 0;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 32px 0;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .nav-link {
        margin-left: 16px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .projects-title, .trust-title, .contact-title, .pinterest-title {
        font-size: 1.8rem;
        margin-top: 40px;
    }
    
    /* Hero section responsive adjustments */
    .hero .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .hero .col-lg-8 {
        flex: 0 0 100%;
        max-width: 100%;
        order: -1;
    }
    .hero-slider {
        height: 50vh;
        margin-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .header {
        padding: 16px 0;
    }
    
    /* Gallery grid for mobile */
    .gallery-section .row {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    
    /* Fallback for older browsers */
    @supports not (display: grid) {
        .gallery-section .col-md-3 {
            flex: 0 0 50%;
            max-width: 50%;
            margin-bottom: 20px;
        }
    }
    
    /* Mobile gallery adjustments */
    .gallery-item {
        height: 200px; /* Smaller height on mobile */
    }
    
    /* Mobile projects adjustments */
    .project-item img {
        height: 300px; /* Smaller image height on mobile */
    }
    
    .gallery-section, .projects-section, .trust-section, .vision-section, .pinterest-section, .contact-section {
        padding: 10px 0 10px 0;
    }
    .gallery-label, .project-title, .project-location {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    /* Gallery grid for small mobile */
    .gallery-section .row {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }
    
    /* Fallback for older browsers */
    @supports not (display: grid) {
        .gallery-section .col-md-3 {
            flex: 0 0 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }
    }
    
    /* Gallery adjustments for small mobile */
    .gallery-item {
        height: 300px; /* Single column height */
    }
    
    /* Keep reasonable aspect ratio on mobile */
    .gallery-image-container {
        padding-bottom: 66%;
    }
} 

/* --- Inline CSS moved from projects.html --- */
.projects-header { margin: 60px 0 30px 0; text-align: left; }
.projects-header h1 { font-size: 2.5rem; font-weight: 500; letter-spacing: 1px; }
.filter-controls { display: flex; gap: 32px; margin-bottom: 32px; }
.filter-controls a { background: none; border: none; color: #bdbdbd; font-size: 0.95rem; letter-spacing: 0.5px; cursor: pointer; padding: 0 0 8px 0; border-bottom: 2px solid transparent; transition: color 0.2s, border 0.2s; text-decoration: none; }
.filter-controls a.active { color: #222; border-bottom: 2px solid #222; font-weight: 500; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; margin-bottom: 40px; }
.project-card { background: none; border: none; box-shadow: none; border-radius: 0; overflow: visible; display: flex; flex-direction: column; align-items: flex-start; }
.project-card a { text-decoration: none; color: inherit; display: block; width: 100%; }
.project-card a:hover { text-decoration: none; }
.project-card img { width: 100%; height: 240px; object-fit: cover; border-radius: 0; box-shadow: none; transition: transform 0.3s ease; }
.project-card:hover img { transform: scale(1.02); }
.project-info { padding: 18px 0 0 0; }
.project-title { font-size: 1.1rem; font-weight: 700; color: #222; font-family: 'Karla', sans-serif; margin-bottom: 4px; }
.project-category { font-size: 0.85rem; color: #bdbdbd; text-transform: uppercase; font-family: 'Karla', sans-serif; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-bottom: 60px; }
.pagination a { background: #222; color: #fff; border: none; border-radius: 2px; padding: 6px 16px; cursor: pointer; font-size: 1rem; }
.pagination a.active { background: #bdbdbd; color: #222; }
@media (max-width: 900px) {
    .projects-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .filter-controls { 
        flex-wrap: wrap; 
        gap: 20px; 
        align-items: flex-start; 
    }
    
    .filter-controls a { 
        padding: 0 0 8px 0; 
        border-bottom: 2px solid transparent; 
        white-space: nowrap; 
    }
    
    .filter-controls a.active { 
        border-bottom: 2px solid #222; 
    }
}

@media (max-width: 600px) {
    .projects-grid { grid-template-columns: 1fr; }
    
    .filter-controls { 
        gap: 16px; 
        margin-bottom: 24px; 
    }
    
    .filter-controls a { 
        font-size: 0.9rem; 
        padding: 0 0 6px 0; 
    }
}

/* --- Inline CSS moved from contact.html --- */
.contact-hero { font-size: 2rem; font-weight: 400; font-family: 'Karla', sans-serif; margin: 60px 0 48px 0; letter-spacing: 1px; }
.contact-main { max-width: 1100px; margin: 0 auto 0 auto; display: flex; gap: 64px; padding: 0 16px 48px 16px; }
.contact-form-col { flex: 2; }
.contact-info-col { flex: 1; min-width: 260px; }
.contact-form-label { font-size: 1.1rem; font-weight: 500; margin-bottom: 32px; }
.contact-form-row { 
    display: flex; 
    gap: 24px; 
    margin-bottom: 24px; 
    flex-wrap: wrap; 
}

.contact-form-row input { 
    flex: 1; 
    min-width: 0; 
}

/* Fix for invalid feedback - position it absolutely to not affect flex layout */
.contact-form-row .invalid-feedback { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    margin-top: 4px; 
    z-index: 10; 
}

/* Make input containers relative for absolute positioning of error messages */
.contact-form-row > div {
    position: relative;
    flex: 1;
    min-width: 0;
}

/* Ensure inputs stay visible and don't get pushed by error messages */
.contact-form-row input.contact-input.form-control,
.contact-form-row input.contact-input {
    width: 100% !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
}
/* Base input styles */
.contact-input, .contact-textarea { 
    width: 100%; 
    border: none; 
    border-bottom: 2px solid #222; 
    background: none; 
    font-size: 1rem; 
    padding: 10px 0; 
    margin-bottom: 0; 
    color: #222; 
    font-family: 'Karla', sans-serif; 
    border-radius: 0; 
    outline: none; 
    box-shadow: none; 
}

.contact-input:focus, .contact-textarea:focus { 
    border-bottom: 2px solid #888; 
    background: none; 
    box-shadow: none; 
}

.contact-input.is-invalid, .contact-textarea.is-invalid { 
    border-bottom: 2px solid #dc3545; 
    background: none; 
    box-shadow: none; 
}

.contact-input.is-invalid:focus, .contact-textarea.is-invalid:focus { 
    border-bottom: 2px solid #dc3545; 
    background: none; 
    box-shadow: none; 
}

/* Override Bootstrap form-control styles with higher specificity */
input.contact-input.form-control, 
textarea.contact-textarea.form-control,
input#name.contact-input.form-control,
input#email.contact-input.form-control,
input#phone.contact-input.form-control,
input#city.contact-input.form-control,
textarea#content_message.contact-textarea { 
    border: none !important; 
    border-bottom: 2px solid #222 !important; 
    background: none !important; 
    border-radius: 0 !important; 
    box-shadow: none !important; 
    padding: 10px 0 !important; 
    width: 100% !important;
}

input.contact-input.form-control:focus, 
textarea.contact-textarea.form-control:focus,
input#name.contact-input.form-control:focus,
input#email.contact-input.form-control:focus,
input#phone.contact-input.form-control:focus,
input#city.contact-input.form-control:focus,
textarea#content_message.contact-textarea:focus { 
    border-bottom: 2px solid #888 !important; 
    background: none !important; 
    box-shadow: none !important; 
}

input.contact-input.form-control.is-invalid, 
textarea.contact-textarea.form-control.is-invalid,
input#name.contact-input.form-control.is-invalid,
input#email.contact-input.form-control.is-invalid,
input#phone.contact-input.form-control.is-invalid,
input#city.contact-input.form-control.is-invalid,
textarea#content_message.contact-textarea.is-invalid { 
    border-bottom: 2px solid #dc3545 !important; 
    background: none !important; 
    box-shadow: none !important; 
}

input.contact-input.form-control.is-invalid:focus, 
textarea.contact-textarea.form-control.is-invalid:focus,
input#name.contact-input.form-control.is-invalid:focus,
input#email.contact-input.form-control.is-invalid:focus,
input#phone.contact-input.form-control.is-invalid:focus,
input#city.contact-input.form-control.is-invalid:focus,
textarea#content_message.contact-textarea.is-invalid:focus { 
    border-bottom: 2px solid #dc3545 !important; 
    background: none !important; 
    box-shadow: none !important; 
}

/* Maximum specificity override for any inline styles */
input[type="text"].contact-input.form-control,
input[type="email"].contact-input.form-control,
textarea.contact-textarea {
    border: none !important; 
    border-bottom: 2px solid #222 !important; 
    background: none !important; 
    border-radius: 0 !important; 
    box-shadow: none !important; 
    padding: 10px 0 !important; 
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.contact-form-group { margin-bottom: 32px; }
.contact-project-label { margin-bottom: 12px; font-size: 1rem; color: #888; }
.project-type-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.project-type-checkbox { display: inline-block; cursor: pointer; }
.project-type-input { display: none; }
.project-type-btn { display: inline-block; border: 1px solid #888; background: none; color: #222; font-size: 1rem; padding: 6px 18px; border-radius: 2px; cursor: pointer; transition: background 0.2s, color 0.2s, border 0.2s; font-family: 'Karla', sans-serif; }
.project-type-input:checked + .project-type-btn { background: #222; color: #fff; border-color: #222; }
.project-type-input.is-invalid + .project-type-btn { border-color: #dc3545; }
.project-type-input.is-invalid:checked + .project-type-btn { background: #dc3545; color: #fff; border-color: #dc3545; }
.contact-textarea { min-height: 60px; resize: vertical; border-bottom: 2px solid #222; }
.contact-submit-btn { background: #222 !important; color: #fff !important; border: none !important; padding: 10px 32px; font-size: 1rem; font-family: 'Karla', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 2px; margin-top: 16px; transition: background 0.2s; }
.contact-submit-btn:hover { background: #444 !important; color: #fff !important; }

/* Override Bootstrap button styles */
.contact-submit-btn.btn, .contact-submit-btn.btn-primary { background: #222 !important; color: #fff !important; border: none !important; border-radius: 2px !important; box-shadow: none !important; }
.contact-submit-btn.btn:hover, .contact-submit-btn.btn-primary:hover { background: #444 !important; color: #fff !important; border: none !important; }

/* Error message styling */
.invalid-feedback { display: block; width: 100%; margin-top: 8px; font-size: 0.875rem; color: #dc3545; font-family: 'Karla', sans-serif; }
.invalid-feedback.oc-visible { display: block; }

/* Form check styling for agreement checkbox */
.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-check-input { margin: 0; width: 18px; height: 18px; border: 2px solid #222; border-radius: 2px; background: none; cursor: pointer; }
.form-check-input:checked { background: #222; border-color: #222; }
.form-check-input.is-invalid { border-color: #dc3545; }
.form-check-label { font-size: 0.95rem; color: #222; font-family: 'Karla', sans-serif; line-height: 1.4; cursor: pointer; }
.form-check-label a { color: #222; text-decoration: underline; }
.form-check-label a:hover { color: #888; }
.contact-info-label { font-size: 1.1rem; font-weight: 700; margin-top: 0; margin-bottom: 4px; letter-spacing: 0.02em; }
.contact-info-value { font-size: 1rem; color: #888; margin-bottom: 24px; word-break: break-all; }
@media (max-width: 900px) {
    .contact-main { flex-direction: column; gap: 40px; }
    .contact-hero { font-size: 2.2rem; }
    .contact-form-row { 
        flex-direction: column; 
        gap: 24px; 
    }
    .contact-form-row > div {
        flex: none;
        width: 100%;
    }
    .contact-form-row .invalid-feedback { 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        margin-top: 4px; 
    }
    .contact-form-row input.contact-input.form-control,
    .contact-form-row input.contact-input {
        width: 100% !important;
    }
}
@media (max-width: 600px) {
    .contact-main { padding: 0 8px 32px 8px; }
    .contact-hero { font-size: 1.5rem; }
}

/* --- Inline CSS moved from single-project.html --- */
.single-project-main { display: flex; gap: 48px; max-width: 1200px; margin: 60px auto 0 auto; padding: 0 16px; }
.project-images-col { flex: 2; min-width: 0; }
.project-images-list { display: flex; flex-direction: column; gap: 32px; }
.project-images-list img { width: 100%; border-radius: 0; object-fit: cover; background: #fff; }
.project-info-col { flex: 1; min-width: 320px; }
.project-info-sticky { position: sticky; top: 100px; margin-top: 00px; }
.project-title { font-size: 2.3rem; font-weight: 700; font-family: 'Karla', sans-serif; margin-bottom: 24px; }
.project-desc { font-size: 1rem; color: #222; margin-bottom: 32px; line-height: 1.6; }
.project-meta { font-size: 1rem; color: #888; margin-bottom: 8px; }
.project-meta strong { color: #222; font-weight: 600; min-width: 90px; display: inline-block; }
.project-meta-list { margin-bottom: 24px; }
.vision-section { background: #222; color: #fff; padding: 56px 0 32px 0; margin-top: 64px; }
.vision-section .container { display: flex; align-items: center; justify-content: flex-start; gap: 48px; }
.vision-label { font-size: 0.9rem; text-transform: uppercase; color: #bdbdbd; margin-bottom: 12px; letter-spacing: 0.05em; }
.vision-text { font-size: 1.2rem; font-family: 'Karla', sans-serif; line-height: 1.6; }
.similar-projects-section { margin: 64px 0 0 0; }
.similar-title { font-size: 2rem; font-weight: 700; font-family: 'Karla', sans-serif; margin-bottom: 32px; }
.swiper { width: 100%; }
.swiper-slide { background: none; }
.similar-card { background: none; border: none; box-shadow: none; border-radius: 0; }
.similar-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }
.similar-info { padding: 16px 0 0 0; }
.similar-title-card { font-size: 1.1rem; font-weight: 700; color: #222; font-family: 'Karla', sans-serif; margin-bottom: 4px; }
.similar-category { font-size: 0.85rem; color: #bdbdbd; text-transform: uppercase; font-family: 'Karla', sans-serif; }
@media (max-width: 991px) {
    .single-project-main { flex-direction: column; gap: 32px; }
    .project-info-col { min-width: 0; order: 1; }
    .project-images-col { order: 2; }
    .project-info-sticky { position: static; }
    .vision-section .container { flex-direction: column; gap: 24px; }
}

/* --- Inline CSS moved from about-us.html --- */
.about-hero { font-size: 2.8rem; font-weight: 600; font-family: 'Karla', sans-serif; margin: 60px 0 32px 0; letter-spacing: 1px; }
.about-main { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.about-row { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 64px; }
.about-text-col { flex: 2; }
.about-img-col { flex: 1; min-width: 260px; display: flex; justify-content: flex-end; }
.about-img { width: 320px; height: 320px; object-fit: cover; border-radius: 0; background: #eee; }
.about-intro { text-transform: uppercase; font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.04em; }
.about-desc { font-size: 1rem; color: #222; margin-bottom: 18px; line-height: 1.6; }
.section-label { font-size: 1rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; margin-bottom: 24px; }
.process-row, .team-row { display: flex; gap: 48px; align-items: flex-start; margin-bottom: 64px; }
.process-label, .team-label { flex: 1; min-width: 120px; }
.process-accordion-col, .team-list-col { flex: 3; }
.process-accordion { width: 100%; }
.process-step { border-bottom: 1px solid #bbb; }
.process-step-header { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 18px 0; font-size: 1.1rem; font-weight: 600; background: none; border: none; width: 100%; text-align: left; }
.process-step-header .icon { font-size: 1.3rem; transition: transform 0.2s; }
.process-step-header.active .icon { transform: rotate(180deg); }
.process-step-content { font-size: 0.98rem; color: #444; padding: 0 0 18px 0; line-height: 1.6; display: none; }
.process-step-content.open { display: block; }
.team-list { display: flex; gap: 40px; flex-wrap: wrap; }
.team-member { width: 200px; text-align: left; }
.team-img { width: 200px; height: 220px; object-fit: cover; border-radius: 0; background: #eee; margin-bottom: 16px; }
.team-name { font-size: 1.1rem; font-weight: 600; color: #222; margin-bottom: 2px; }
.team-role { font-size: 0.95rem; color: #888; text-transform: uppercase; }
@media (max-width: 900px) {
    .about-row, .process-row, .team-row { flex-direction: column; gap: 24px; }
    .about-img { width: 100%; height: 220px; }
    .team-list { gap: 24px; }
    .team-member, .team-img { width: 100%; }
} 

footer a{
    text-decoration: none;
    color: #222;
}

@media (max-width: 768px) {
    .quality-section{
        padding:0px 0 40px 0;
    }

    .quality-text{
        font-size: 1.2rem;
    }

    .trust-title{
        margin-bottom: 45px;
    }

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

    .project-item{
        margin-bottom: 5px;
    }

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

    .about-img-col{
        width: 100%;
    }

    .projects-header h1{
        font-size: 2rem;
    }

    .contact-hero{
        margin: 20px 0 28px 0;
    }
}

