/* Inter Font */
/* cyrillic-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZJhiJ-Ek-_EeAmM.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZthiJ-Ek-_EeAmM.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZNhiJ-Ek-_EeAmM.woff2) format('woff2');
    unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZxhiJ-Ek-_EeAmM.woff2) format('woff2');
    unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZBhiJ-Ek-_EeAmM.woff2) format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZFhiJ-Ek-_EeAmM.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Navigation - Transparent over hero */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
    max-width: 200px;
    overflow: hidden;
    height: 50px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
    height: 100%;
    max-height: 50px;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    max-height: 50px;
    -webkit-object-fit: contain;
    object-fit: contain;
    -webkit-object-position: left center;
    object-position: left center;
    display: block;
    flex-shrink: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Hide old logo elements */
.logo-arrow {
    display: none;
}

.logo-tagline {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex-shrink: 1;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.nav-links a.active {
    color: rgb(175, 97, 24);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(175, 97, 24);
}

.nav-links a:hover {
    color: rgb(175, 97, 24);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* Sections - Full Width */
section {
    width: 100%;
    position: relative;
}

section[id] {
    scroll-margin-top: 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Hero Section - Dark Background with Landscape */
        #home {
            min-height: 100vh;
            position: relative;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)),
                        url('img/c837a6_c4ec010a6ed34a1e8b7068fffc7e6062~mv2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    overflow: hidden;
}

.hero-content-wrapper {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
}

.hero-text {
    padding: 0 3rem;
    z-index: 2;
}

.hero-text .subheading {
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: normal;
    color: #fff;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: rgb(175, 97, 24);
    color: #fff;
    border: 2px solid rgb(175, 97, 24);
}

.cta-primary:hover {
    background: rgba(175, 97, 24, 0.9);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-form-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    background: rgb(175, 97, 24);
    padding: 3rem;
    z-index: 3;
}

.hero-form-container h2 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-form .form-group {
    margin-bottom: 1.5rem;
}

.hero-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}

.hero-form .form-group input {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: #fff;
}

.hero-form .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form .form-group input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.chat-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-icon::before {
    content: '...';
    color: #fff;
    font-size: 20px;
    line-height: 0.5;
}

/* About Section */
#about {
    background: #fff;
    padding: 120px 0;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.about-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    color: #000;
    font-weight: normal;
    white-space: nowrap;
}

.arrow-graphic {
    width: 45px;
    height: 30px;
    border: 0.5px solid #000;
    position: relative;
    flex-shrink: 0;
}

.arrow-graphic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 0.5px;
    background: #000;
    transform: rotate(45deg);
    transform-origin: top left;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 1.5rem 0;
    width: 100%;
}

.about-text {
    padding: 0;
    flex: 1;
    width: 100%;
}

.about-mission {
    margin-top: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-promises {
    margin-top: 2.5rem;
    width: 100%;
}

.about-promises h4 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.promises-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.promises-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.promises-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgb(175, 97, 24);
    font-weight: bold;
    font-size: 18px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    margin: 0;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 40px 0;
}

.team-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.team-member {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member .image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    aspect-ratio: 4 / 5;
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1) {
    .team-member .image-wrapper {
        height: 0;
        padding-bottom: 125%; /* 5/4 * 100 */
    }

    .team-member img {
        position: absolute;
        top: 0;
        left: 0;
    }
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* Services Section - Orange Brown Background */
#services {
    background: rgb(175, 97, 24);
    padding: 120px 0;
    color: #fff;
}

.services-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.services-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    font-weight: normal;
    white-space: nowrap;
}

.services-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: right;
}

.services-arrow {
    width: 45px;
    height: 30px;
    border: 0.5px solid #fff;
    position: relative;
    flex-shrink: 0;
}

.services-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 0.5px;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: top left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 2px;
    background: #fff;
    margin-top: 4rem;
    align-items: stretch;
}

.service-card {
    background: rgb(175, 97, 24);
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
    min-height: 0;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 1rem;
}

.service-image-card {
    background: rgb(175, 97, 24);
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
    min-height: 0;
}

.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.read-more-btn {
    display: block;
    width: 200px;
    margin: 4rem auto 0;
    padding: 1rem 2rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #fff;
    color: rgb(175, 97, 24);
}

/* Projects Section */
#projects {
    background: #fff;
    padding: 120px 0;
}

.projects-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.projects-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.projects-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    margin: 0;
    color: #000;
    font-weight: normal;
    white-space: nowrap;
}

.projects-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: right;
}
 
.projects-grid {
    column-count: 2;
    column-gap: 2rem;
    margin-top: 4rem;
}

.project-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
    background: #fff;
    overflow: hidden;
    break-inside: avoid;
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
}

.project-info {
    padding: 1rem 1.2rem;
}

.project-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .projects-grid {
        column-count: 1;
    }
}

/* Clients Section - Dark Background */
#clients {
    background: #000;
    padding: 120px 0;
    color: #fff;
}

.clients-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.clients-header > div:first-child {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.clients-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    font-weight: normal;
    margin: 0;
    white-space: nowrap;
}

.clients-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: right;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #fff;
    margin-top: 4rem;
}

.client-card {
    background: #000;
    padding: 3rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
}

.client-card h4 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #fff;
}

.client-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
#contact {
    background: #fff;
    padding: 120px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}

@media (min-width: 1200px) {
    .contact-wrapper {
        gap: 6rem;
    }
}

.contact-form-section {
    position: relative;
    padding-right: 2rem;
}

.contact-form-section .section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
    display: block;
}

.contact-form-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: normal;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    margin-top: 2.5rem;
}

.contact-form .form-group-full {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 0;
    border: none;
    border-bottom: 1.5px solid #e0e0e0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    color: #000;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 300;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    border-bottom: 1.5px solid #e0e0e0;
    line-height: 1.6;
    padding-top: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: rgb(175, 97, 24);
    border-bottom-width: 2px;
}

.contact-form .submit-btn {
    grid-column: 1 / -1;
    width: auto;
    padding: 1.2rem 3.5rem;
    background: rgb(175, 97, 24);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.contact-form .submit-btn:hover {
    background: rgb(150, 80, 20);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 97, 24, 0.3);
}

.contact-info {
    padding-left: 2rem;
    border-left: 1px solid #f0f0f0;
}

.contact-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000;
    font-weight: normal;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-info h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.contact-info .company-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f5f5f5;
}

.contact-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.contact-item p {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin: 0;
}

.contact-item p a {
    color: rgb(175, 97, 24);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: rgb(150, 80, 20);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #f5f5f5;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-links a:hover {
    background: rgb(175, 97, 24);
    color: #fff;
    border-color: rgb(175, 97, 24);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(175, 97, 24, 0.2);
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    font-size: 14px;
}

footer p {
    margin: 0.5rem 0;
}

.footer-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .section-container {
        padding: 0 2rem;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .hero-content-wrapper {
        padding: 0 2rem;
    }

    .about-header,
    .services-header,
    .projects-header,
    .clients-header {
        gap: 2rem;
    }

    .about-title,
    .services-title,
    .projects-title,
    .clients-title {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        padding: 120px 2rem 2rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-form-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 3rem auto 0;
        padding: 2rem;
    }

    .hero-text {
        padding: 0;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-image-card {
        grid-column: 1 / -1;
        aspect-ratio: 2 / 1;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 0;
        overflow-x: hidden;
    }

    .nav-container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .logo-wrapper {
        gap: 0.25rem;
        flex: 0 0 auto;
        min-width: 0;
        overflow: hidden;
        height: 40px;
    }

    .logo-link {
        max-height: 40px;
    }

    .logo-img {
        height: 40px;
        max-width: 160px;
        max-height: 40px;
        -webkit-object-fit: contain;
        object-fit: contain;
        -webkit-object-position: left center;
        object-position: left center;
        flex-shrink: 0;
    }

    .menu-toggle {
        flex-shrink: 0;
        margin-left: 0.5rem;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        padding: 0.75rem;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hero Section */
    #home {
        background-attachment: scroll;
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-content-wrapper {
        padding: 2rem 1.5rem;
        height: auto;
        min-height: calc(100vh - 80px);
    }

    .hero-text .subheading {
        font-size: 16px;
        margin-bottom: 1rem;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-form-container {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .hero-form-container h2 {
        font-size: 16px;
        margin-bottom: 1.5rem;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 1.5rem;
    }

    /* Typography */
    .about-title,
    .services-title,
    .projects-title,
    .clients-title {
        font-size: 24px;
        white-space: normal;
    }

    .about-header,
    .services-header,
    .projects-header,
    .clients-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 40px;
    }

    .about-title-section,
    .services-title-section,
    .projects-title-section,
    .clients-header > div:first-child {
        width: 100%;
    }

    .about-text,
    .services-subtitle,
    .projects-tagline,
    .clients-subtitle {
        width: 100%;
    }

    .about-text p,
    .services-subtitle p,
    .projects-tagline p,
    .clients-subtitle p {
        font-size: 16px;
    }

    .arrow-graphic,
    .services-arrow {
        width: 35px;
        height: 25px;
        border-width: 0.5px;
    }

    .arrow-graphic::before,
    .services-arrow::before {
        width: 28px;
        height: 0.5px;
    }

    /* Team Section */
    .team-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-member .image-wrapper {
        max-width: 100%;
    }

    /* Services Section */
    #services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2px;
        margin-top: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        min-height: 200px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-image-card {
        min-height: 250px;
        aspect-ratio: 16 / 9;
    }

    .read-more-btn {
        margin-top: 3rem;
        width: 100%;
        max-width: 300px;
    }

    /* Projects Section */
    #projects {
        padding: 60px 0;
    }

    .projects-grid {
        column-count: 1;
        column-gap: 2rem;
        margin-top: 2rem;
    }

    .project-card:nth-child(even) {
        margin-top: 0;
    }

    .project-card .image-wrapper {
        aspect-ratio: 16 / 9;
    }

    .project-info {
        margin-top: 1.5rem;
    }

    .project-info h3 {
        font-size: 20px;
        margin-bottom: 0.75rem;
    }

    .project-info p {
        font-size: 14px;
    }

    /* Clients Section */
    #clients {
        padding: 60px 0;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .client-card {
        padding: 2rem 1.5rem;
        min-height: 150px;
    }

    .client-card h4 {
        font-size: 28px;
    }

    .client-card p {
        font-size: 11px;
    }

    /* Contact Section */
    #contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        margin-top: 2rem;
    }

    .contact-form-section {
        padding-right: 0;
        padding-bottom: 3rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .contact-form-section h3,
    .contact-info h3 {
        font-size: 36px;
        line-height: 1.3;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 1rem 0;
    }

    .contact-form .submit-btn {
        width: 100%;
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .contact-info {
        padding-left: 0;
        border-left: none;
        padding-top: 3rem;
    }

    .contact-subtitle {
        margin-bottom: 2rem;
    }

    .contact-info h4 {
        font-size: 18px;
    }

    .contact-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .social-links {
        gap: 1rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Divider */
    .divider-line {
        margin: 40px 0;
    }

    /* Footer */
    footer {
        padding: 1.5rem;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text .subheading {
        font-size: 14px;
    }

    .about-title,
    .services-title,
    .projects-title,
    .clients-title {
        font-size: 28px;
    }

    .about-text p,
    .services-subtitle p,
    .projects-tagline p,
    .clients-subtitle p {
        font-size: 16px;
    }

    .section-container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .logo-wrapper {
        height: 35px;
    }

    .logo-link {
        max-height: 35px;
    }

    .logo-img {
        height: 35px;
        max-width: 140px;
        max-height: 35px;
        -webkit-object-fit: contain;
        object-fit: contain;
        -webkit-object-position: left center;
        object-position: left center;
        flex-shrink: 0;
    }

    .hero-content-wrapper {
        padding: 2rem 1rem;
    }

    .hero-form-container {
        padding: 1.5rem 1rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .contact-form-section h3,
    .contact-info h3 {
        font-size: 28px;
    }

    .team-member h3 {
        font-size: 18px;
    }

    .project-info h3 {
        font-size: 18px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .menu-toggle span,
    .nav-links a,
    .submit-btn,
    .read-more-btn,
    .social-links a {
        cursor: pointer;
    }

    /* Ensure touch targets are at least 44x44px */
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}

