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

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --text-primary: #ffffff;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    --background-dark: rgba(17, 24, 39, 0.95);
    --background-card: rgba(255, 255, 255, 0.95);
    --background-overlay: rgba(0, 0, 0, 0.4);
    --border-color: rgba(229, 231, 235, 0.2);
    --font-primary: 'Poppins', sans-serif;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
}

html.menu-open {
    overflow: hidden;
    height: 100%;
    width: 100%;
}

body.menu-open {
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

body[data-scroll-position] {
    position: fixed;
    width: 100%;
    top: calc(var(--scroll-position, 0) * -1px);
}

body.menu-open[data-scroll-position] {
    top: calc(var(--scroll-position, 0) * -1px);
}

body.modal-open {
    overflow: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y;
    overscroll-behavior-y: contain;
}

@media (max-width: 768px) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .main-header {
        padding-top: env(safe-area-inset-top);
    }
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .logo-link {
    color: #111827;
}

.main-header.scrolled .nav-link {
    color: #111827;
}

.main-header.scrolled .nav-link:hover {
    opacity: 0.7;
}

.main-header.scrolled .nav-link-button {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.main-header.scrolled .nav-link-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.main-header.scrolled .nav-link-login {
    background-color: transparent;
}

.main-header.scrolled .nav-link-login:hover {
    opacity: 0.7;
}

.main-header.scrolled .mobile-menu-toggle span {
    background-color: #111827;
}

.main-navigation {
    padding: 0.75rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.header-logo .logo-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.header-logo .logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: opacity 0.3s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    padding: 0.25rem 0;
}

@media (max-width: 768px) {
    .nav-link:active {
        transform: scale(0.97);
        opacity: 0.8;
    }
}

.nav-link-icon {
    display: none;
}

.nav-link-login .nav-link-icon {
    display: block;
    flex-shrink: 0;
}

.nav-link span {
    display: inline;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link-button {
    background-color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: var(--text-primary);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-link-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.nav-link-login {
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link-login:hover {
    opacity: 0.7;
}

.nav-link-login .nav-link-icon-user {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.nav-link-login .nav-link-icon-globe {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    display: block;
}

.nav-link-login span {
    display: none;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}


.mobile-menu-header {
    display: none;
}

.mobile-menu-footer {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
    z-index: 1002;
    position: relative;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:active {
    background-color: rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 13px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 13px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../asset/images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.3) 45%, transparent 55%, rgba(15, 23, 42, 0.15) 85%, rgba(15, 23, 42, 0.2) 100%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    max-width: 600px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    text-decoration: none;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

@media (max-width: 768px) {
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
    }
    
    .cta-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

.cta-button-primary {
    background-color: var(--primary-color);
    color: var(--text-primary);
}

.cta-button-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.estimate-form-container {
    display: flex;
    justify-content: flex-end;
}

.estimate-form-card {
    background-color: var(--background-card);
    border-radius: 1rem;
    padding: 1.25rem;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.form-icon {
    background-color: var(--primary-color);
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.form-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.form-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.form-instructions {
    color: #4b5563;
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
    line-height: 1.4;
}

.estimate-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.125rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.section-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: var(--primary-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-row {
    display: flex;
    gap: 0.5rem;
}

.form-group-half {
    flex: 1;
    min-width: 0;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 0.625rem;
    width: 16px;
    height: 16px;
    stroke-width: 2;
    color: #6b7280;
    pointer-events: none;
    z-index: 1;
}

.form-input-with-icon {
    padding-left: 2.25rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-input,
.form-select {
    padding: 0.4375rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-primary);
    color: #111827;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .form-input,
    .form-select {
        font-size: 16px;
        padding: 0.625rem;
        min-height: 44px;
    }
    
    .form-input:focus,
    .form-select:focus {
        font-size: 16px;
    }
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    cursor: pointer;
}

.cta-button-submit {
    background-color: var(--primary-color);
    color: var(--text-primary);
    width: 100%;
    padding: 0.625rem;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.cta-button-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-disclaimer {
    font-size: 0.625rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.125rem;
    line-height: 1.4;
}

.form-link {
    color: var(--primary-color);
    text-decoration: none;
}

.form-link:hover {
    text-decoration: underline;
}

.main-footer {
    background-color: #111827;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 0 2rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
}

.footer-company-slogan {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.footer-contact-icon {
    width: 1rem;
    height: 1rem;
    color: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    white-space: nowrap;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.375rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-social-link i {
    width: 1rem;
    height: 1rem;
}

.footer-social-link:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}


.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
}

.footer-column.footer-column-with-newsletter {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
}

.footer-column.footer-column-with-newsletter .footer-column-section {
    flex: 1;
    min-width: 0;
}

.footer-column-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding-bottom: 0;
    line-height: 1.4;
    white-space: nowrap;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-link-item {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.footer-link-item:hover {
    transform: translateX(4px);
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.1s ease;
    line-height: 1.5;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding: 0.25rem 0;
}

@media (max-width: 768px) {
    .footer-link:active {
        transform: scale(0.97);
    }
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link-icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
    flex-shrink: 0;
    color: inherit;
}

.footer-newsletter-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
    display: block;
    width: 100%;
}

.footer-newsletter-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: block;
    width: 100%;
}

.footer-newsletter-form {
    margin-top: 0;
    width: 100%;
}

.footer-newsletter-input-wrapper {
    display: flex;
    gap: 0.625rem;
    align-items: stretch;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.625rem 0.875rem;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 0.8125rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-button {
    padding: 0.625rem 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-newsletter-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffffff;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
}

.how-it-works-section {
    background-color: #f3f4f6;
    padding: 5rem 0;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.how-it-works-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.how-it-works-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.how-it-works-icon i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.how-it-works-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.how-it-works-card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

.services-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}


.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.services-video-column {
    width: 100%;
}

.services-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.services-video-placeholder {
    width: 100%;
    max-height: 600px;
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.services-experience-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.services-experience-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.services-experience-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.services-features-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.services-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.services-feature-icon {
    width: 56px;
    height: 56px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #374151;
}

.services-feature-icon i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.services-feature-content {
    flex: 1;
}

.services-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.services-feature-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.services-cta-wrapper {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}

.cta-button-services {
    background-color: var(--primary-color);
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button-services:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .how-it-works-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        order: 2;
    }

    .estimate-form-container {
        justify-content: center;
        order: 1;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-section .section-main-title {
        font-size: 2rem;
    }

}

@media (max-width: 768px) {
    .main-header {
        position: relative;
        height: auto;
        background-color: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
    }

    .main-header .logo-link {
        color: #111827;
    }

    .main-header .nav-link {
        color: #111827;
    }

    .main-header .mobile-menu-toggle span {
        background-color: #111827;
    }

    .main-navigation {
        padding: 0.375rem 0;
    }

    .header-container {
        padding: 0 1.5rem;
        min-height: 48px;
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }

    .header-logo {
        order: 2;
        margin-left: 0;
        flex-shrink: 0;
    }

    .header-logo .logo-link {
        font-size: 1.25rem;
    }

    .mobile-menu-toggle {
        order: 1;
        position: relative;
        margin-right: 0;
    }

    .mobile-menu-toggle.active {
        display: none;
    }

    .nav-menu:not(.active) {
        order: 3;
        position: static;
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0 0 0 auto;
        box-shadow: none;
        overflow: visible;
    }

    .nav-menu:not(.active) .nav-item {
        width: auto;
        border: none;
        margin: 0;
    }

    .nav-menu:not(.active) .nav-item:not(.nav-item-login):not(.nav-item-contact) {
        display: none;
    }

    .nav-menu:not(.active) .nav-item-contact,
    .nav-menu:not(.active) .nav-item-login {
        display: list-item;
    }

    .nav-menu:not(.active) .nav-link-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
        border-radius: 0.375rem;
        background-color: var(--primary-color);
        color: var(--text-primary);
        border: none;
    }

    .nav-menu:not(.active) .nav-link-button .nav-link-icon {
        display: none;
    }

    .nav-menu:not(.active) .nav-link-button:hover {
        background-color: var(--primary-hover);
    }

    .nav-menu:not(.active) .nav-link-login {
        padding: 0;
        gap: 0.75rem;
    }

    .nav-menu:not(.active) .nav-link-login .nav-link-icon-user {
        width: 20px;
        height: 20px;
    }

    .nav-menu:not(.active) .nav-link-login .nav-link-icon-globe {
        width: 18px;
        height: 18px;
    }

    .nav-link-icon {
        display: block;
    }

    .nav-link span {
        display: inline;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        background-color: #ffffff;
        padding: 1rem 1.5rem;
        padding-top: calc(1rem + env(safe-area-inset-top));
        min-height: calc(56px + env(safe-area-inset-top));
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 1002;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-footer {
        display: block;
    }

    .nav-menu.active ~ .mobile-menu-header,
    .mobile-menu-header.active {
        left: 0;
    }

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

    .mobile-logo-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: #111827;
        text-decoration: none;
        letter-spacing: 0.05em;
        line-height: 1.2;
    }

    .mobile-menu-close {
        width: 32px;
        height: 32px;
        border: none;
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        flex-shrink: 0;
        transition: background-color 0.3s ease, transform 0.3s ease;
        color: #374151;
        padding: 0;
    }

    .mobile-menu-close:hover {
        background-color: rgba(0, 0, 0, 0.1);
        transform: rotate(90deg);
    }

    .mobile-menu-close i {
        width: 18px;
        height: 18px;
        stroke-width: 2;
    }

    .mobile-menu-footer {
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        background-color: #ffffff;
        padding: 1.25rem 1.5rem;
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 1002;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active ~ .mobile-menu-footer,
    .mobile-menu-footer.active {
        left: 0;
    }

    .mobile-menu-contact {
        margin-bottom: 1.5rem;
        padding-bottom: 0;
    }

    .mobile-contact-name {
        font-size: 1rem;
        font-weight: 600;
        color: #111827;
        margin: 0 0 0.5rem 0;
        line-height: 1.4;
    }

    .mobile-contact-address {
        font-size: 0.875rem;
        color: #6b7280;
        margin: 0 0 0.75rem 0;
        line-height: 1.5;
    }

    .mobile-contact-email {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .mobile-contact-email:hover {
        color: var(--primary-hover);
    }

    .mobile-contact-email-icon {
        width: 16px;
        height: 16px;
        stroke-width: 2;
        flex-shrink: 0;
    }

    .mobile-contact-siret {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color: #6b7280;
        margin: 0.75rem 0 0 0;
        line-height: 1.5;
    }

    .mobile-contact-siret i {
        width: 16px;
        height: 16px;
        stroke-width: 2;
        flex-shrink: 0;
        color: #6b7280;
    }

    .mobile-menu-social {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

    .mobile-social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f3f4f6;
        border-radius: 5px;
        color: #6b7280;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .mobile-social-link:hover {
        background-color: var(--primary-color);
        color: #ffffff;
        transform: translateY(-2px);
    }

    .mobile-social-link i {
        width: 18px;
        height: 18px;
        stroke-width: 2;
    }

    .nav-menu.active {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        background-color: #ffffff;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        padding: 0;
        margin: 0;
        gap: 0;
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        box-sizing: border-box;
        align-items: stretch;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        padding-top: calc(72px + env(safe-area-inset-top));
        padding-bottom: calc(100px + env(safe-area-inset-bottom));
        order: unset;
    }

    .nav-menu:not(.active) {
        left: -100%;
    }

    .nav-menu.active .nav-item {
        width: 100%;
        margin: 0;
        border-bottom: none;
        list-style: none;
    }

    .nav-menu.active .nav-item-login {
        margin-top: 0.5rem;
        border-bottom: none;
    }

    .nav-menu.active .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.25s ease;
        text-align: left;
        color: #1f2937;
        text-decoration: none;
        position: relative;
        background-color: transparent;
        gap: 0.75rem;
    }

    .nav-menu.active .nav-link-icon {
        width: 20px;
        height: 20px;
        stroke-width: 2;
        color: #6b7280;
        flex-shrink: 0;
        transition: color 0.25s ease;
    }

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

    .nav-menu.active .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
        transition: width 0.25s ease;
    }

    .nav-menu.active .nav-link:active {
        background-color: rgba(37, 99, 235, 0.08);
    }

    .nav-menu.active .nav-link:active::after {
        width: 4px;
    }

    .nav-menu.active .nav-item-contact {
        margin-top: 0.5rem;
    }

    .nav-menu.active .nav-link-button {
        background-color: var(--primary-color);
        border: none;
        cursor: pointer;
        font-family: var(--font-primary);
        width: calc(100% - 2rem);
        margin: 0 1rem;
        padding: 0.875rem 1.5rem;
        border-radius: 0.5rem;
        font-weight: 600;
        color: var(--text-primary);
        text-align: center;
        justify-content: center;
    }

    .nav-menu.active .nav-link-button:hover {
        background-color: var(--primary-hover);
    }

    .nav-menu.active .nav-link-button .nav-link-icon {
        display: none;
    }

    .nav-menu.active .nav-item-login {
        display: none;
    }

    .nav-menu.active .dropdown-arrow {
        font-size: 0.7rem;
        opacity: 0.5;
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1.25rem;
        min-height: 44px;
        gap: 0.375rem;
    }

    .header-logo {
        margin-left: 0;
    }

    .main-navigation {
        padding: 0.375rem 0;
    }

    .header-logo .logo-link {
        font-size: 1.125rem;
    }

    .mobile-menu-header {
        width: 90%;
        max-width: 280px;
        padding: 0.875rem 1.25rem;
        min-height: 52px;
    }

    .mobile-logo-link {
        font-size: 1.125rem;
        line-height: 1.2;
    }

    .mobile-menu-close {
        width: 28px;
        height: 28px;
    }

    .mobile-menu-close i {
        width: 16px;
        height: 16px;
    }

    .mobile-menu-footer {
        width: 90%;
        max-width: 280px;
        padding: 1rem 1.25rem;
    }

    .mobile-menu-contact {
        margin-bottom: 1.25rem;
        padding-bottom: 0;
    }

    .mobile-contact-name {
        font-size: 0.9375rem;
    }

    .mobile-contact-address {
        font-size: 0.8125rem;
    }

    .mobile-contact-email {
        font-size: 0.8125rem;
    }

    .mobile-contact-email-icon {
        width: 14px;
        height: 14px;
    }

    .mobile-contact-siret {
        font-size: 0.8125rem;
        margin-top: 0.625rem;
    }

    .mobile-contact-siret i {
        width: 14px;
        height: 14px;
    }

    .mobile-social-link {
        width: 36px;
        height: 36px;
    }

    .mobile-social-link i {
        width: 16px;
        height: 16px;
    }

    .nav-menu.active {
        width: 90%;
        max-width: 280px;
        padding-top: 68px;
        padding-bottom: 90px;
    }

    .nav-menu.active .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .nav-menu.active .nav-link-icon {
        width: 18px;
        height: 18px;
    }


    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .hero-container {
        padding: 1rem;
        gap: 2rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .estimate-form-card {
        padding: 1rem;
    }

    .form-title {
        font-size: 1.1rem;
    }

    .form-header {
        margin-bottom: 0.5rem;
    }

    .form-instructions {
        margin-bottom: 0.75rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .how-it-works-section {
        padding: 3rem 0;
    }

    .how-it-works-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .how-it-works-card {
        padding: 1.5rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .services-feature-item {
        gap: 1rem;
    }

    .services-feature-icon {
        width: 48px;
        height: 48px;
    }

    .services-feature-icon i {
        width: 24px;
        height: 24px;
    }

    .services-feature-title {
        font-size: 1.125rem;
    }

    .services-cta-wrapper {
        justify-content: center;
    }

    .cta-button-services {
        width: 100%;
        text-align: center;
    }
}


.page-hero-section {
    background-color: var(--background-dark);
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.page-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.content-section {
    padding: 4rem 0;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.content-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.project-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(15, 23, 42, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.project-image-placeholder i {
    width: 64px;
    height: 64px;
    stroke-width: 1.5;
    opacity: 0.5;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.project-location {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.project-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    border-radius: 0.25rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section {
    max-width: 500px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-info-icon i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--text-primary);
}

.contact-form-section {
    width: 100%;
}

.contact-form-card {
    background-color: var(--background-card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-card .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-textarea {
    padding: 0.4375rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-family: var(--font-primary);
    color: #111827;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

@media (max-width: 768px) {
    .form-textarea {
        font-size: 16px;
        padding: 0.625rem;
    }
    
    .form-textarea:focus {
        font-size: 16px;
    }
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea::placeholder {
    color: #9ca3af;
}

.login-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
}

.login-container {
    max-width: 500px;
    width: 100%;
    padding: 0 2rem;
}

.login-card {
    background-color: var(--background-card);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon-large {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-primary);
}

.login-icon-large i {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.login-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    cursor: pointer;
}

.form-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-footer-text {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-section {
        max-width: 100%;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }


    .footer-column.footer-column-with-newsletter {
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .footer-legal-links {
        width: 100%;
        margin-top: 0.5rem;
        gap: 0.75rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .footer-legal-link {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .page-hero-subtitle {
        font-size: 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .content-title {
        font-size: 1.5rem;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .content-text {
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

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

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

    .contact-form-card {
        padding: 1.5rem;
    }

    .login-card {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .footer-column-with-newsletter {
        flex-direction: column !important;
        gap: 2.5rem;
    }

    .footer-column-with-newsletter .footer-column-section {
        width: 100%;
    }

    .footer-column-title {
        margin-bottom: 0.75rem;
    }

    .footer-newsletter-input-wrapper {
        flex-direction: column;
    }

    .footer-newsletter-button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-legal-links {
        width: 100%;
        margin-top: 0.5rem;
        gap: 0.625rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .footer-legal-link {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 100px 0 40px;
    }

    .content-section {
        padding: 2rem 0;
    }

    .content-container {
        padding: 0 1rem;
        text-align: left;
    }

    .page-hero-container {
        padding: 0 1rem;
        text-align: center;
    }
    
    .content-title {
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    
    .page-hero-title {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    .contact-form-card {
        padding: 1.25rem;
    }

    .login-card {
        padding: 1.5rem;
    }

    .main-footer {
        padding: 3.5rem 0 1.5rem;
    }

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

    .footer-content {
        gap: 2rem;
    }


    .footer-column-title {
        margin-bottom: 0.75rem;
        padding-bottom: 0;
    }

    .footer-link-list {
        gap: 0.625rem;
    }

    .footer-link {
        font-size: 0.875rem;
    }
}

.services-offer-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.services-offer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.services-section .section-header {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.renovation-process-section .section-header {
    text-align: left;
    margin-bottom: 1rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: #eff6ff;
    border-radius: 0.5rem;
    text-shadow: 
        0.5px 0 0 rgba(239, 68, 68, 0.3),
        -0.5px 0 0 rgba(6, 182, 212, 0.3);
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.renovation-process-section .section-main-title {
    color: #111827;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: visible;
}

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

.service-card-icon {
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background-color: rgba(17, 24, 39, 0.9);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 10;
}

.service-card-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

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

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card-link:hover {
    color: var(--primary-hover);
}

.service-card-link i {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.renovation-process-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.renovation-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.process-image-column {
    width: 100%;
    display: flex;
    align-items: stretch;
    height: 100%;
}

.process-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 0.75rem;
    object-fit: cover;
    object-position: center;
}

.before-after-comparison {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f3f4f6;
    --slider-position: 50%;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: grayscale;
}

.before-after-comparison.images-loaded .before-after-image {
    opacity: 1;
}

.before-after-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 500px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: none;
}

.before-after-wrapper:active,
.before-after-wrapper.dragging {
    cursor: grabbing;
}

.before-after-wrapper.dragging .before-after-overlay {
    transition: none;
}

.before-after-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(0);
    will-change: transform;
}

.before-after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: grayscale;
    -ms-interpolation-mode: bicubic;
}

.before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--slider-position, 50%)) 0 0);
    transition: clip-path 0.05s linear;
    will-change: clip-path;
}

.before-after-overlay .after-image {
    width: 100%;
    left: 0;
}

.before-after-slider-handle {
    position: absolute;
    top: 0;
    left: var(--slider-position, 50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    cursor: grab;
    z-index: 10;
    transition: width 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    will-change: left;
}

.before-after-slider-handle:active,
.before-after-slider-handle:hover {
    width: 6px;
    background-color: var(--primary-hover);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.before-after-slider-handle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.slider-handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-color: inherit;
}

.slider-handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 11;
}

.before-after-slider-handle:hover .slider-handle-icon {
    background-color: var(--primary-hover);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.before-after-slider-handle:active .slider-handle-icon {
    transform: translate(-50%, -50%) scale(0.95);
}

.slider-handle-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: #ffffff;
}

.before-after-label {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    backdrop-filter: blur(10px);
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.before-label {
    left: 1rem;
}

.after-label {
    right: 1rem;
}

.process-steps-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: -1rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
}

.process-step-number-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-icon-background {
    width: 64px;
    height: 64px;
    background-color: #f3f4f6;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.process-step-number {
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: -2px;
    right: -2px;
    color: #ffffff;
    z-index: 3;
}

.process-step-number-text {
    font-size: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.process-step-icon {
    width: 32px;
    height: 32px;
    stroke-width: 2;
    position: relative;
    color: #374151;
    opacity: 1;
    z-index: 2;
}

.process-step-content {
    flex: 1;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.process-step-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Customer Reviews Section */
.customer-reviews-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.customer-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.customer-reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin: 0 0 3rem 0;
    line-height: 1.2;
}

.google-reviews-summary-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
}

.google-reviews-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.google-reviews-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.google-logo-google {
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(to right, #4285F4 0%, #34A853 25%, #FBBC05 50%, #EA4335 75%, #4285F4 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-logo-reviews {
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
}

.google-reviews-rating-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-rating-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.google-rating-stars {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.rating-star {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: #d1d5db;
    flex-shrink: 0;
}

.rating-star.rating-star-filled {
    fill: #fbbf24;
    color: #fbbf24;
}

.rating-star.rating-star-empty {
    fill: none;
    color: #d1d5db;
    stroke: #d1d5db;
}

.google-reviews-total {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.review-us-button {
    background-color: #4285F4;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.review-us-button:hover {
    background-color: #357ae8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.reviews-carousel-container {
    position: relative;
    margin-bottom: 2rem;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.reviews-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: max-content;
    backface-visibility: hidden;
    perspective: 1000px;
}

.review-card {
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    padding-bottom: 1.75rem;
    width: calc((100% - (4 * 1.5rem)) / 5);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.google-logo-badge {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transform: translate(25%, 25%);
}

.google-logo-badge svg {
    width: 100%;
    height: 100%;
}

.reviewer-avatar-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.reviewer-avatar-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.reviewer-avatar-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.reviewer-avatar-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.reviewer-avatar-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.reviewer-avatar-6 {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.reviewer-avatar-7 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.reviewer-avatar-8 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.reviewer-avatar-9 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.reviewer-initial {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.reviewer-name-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.review-time-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verified-badge {
    width: 18px;
    height: 18px;
    color: #4285F4;
    flex-shrink: 0;
    stroke-width: 2;
}

.review-time {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.google-logo-badge-hidden {
    display: none;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-star {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: #d1d5db;
    flex-shrink: 0;
}

.review-star.review-star-filled {
    fill: #fbbf24;
    color: #fbbf24;
}

.review-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.read-more-link {
    font-size: 0.875rem;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #357ae8;
    text-decoration: underline;
}

.carousel-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #374151;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav-button:hover {
    background-color: #1f2937;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav-button i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.carousel-next {
    right: 0;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pagination-dot:hover {
    background-color: #9ca3af;
}

.pagination-dot-active {
    width: 10px;
    height: 10px;
    background-color: #374151;
}

.pagination-dot-active:hover {
    background-color: #374151;
}

/* Consultation CTA Section */
.consultation-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.consultation-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.consultation-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.consultation-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.consultation-cta-description {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.consultation-cta-urgency {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.5;
}

.consultation-cta-button {
    margin-top: 0.5rem;
    background-color: #ffffff;
    color: #2563eb;
    font-weight: 600;
}

.consultation-cta-button:hover {
    background-color: #f3f4f6;
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .consultation-cta-section {
        padding: 4rem 0;
    }

    .consultation-cta-title {
        font-size: 2rem;
    }

    .consultation-cta-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .consultation-cta-section {
        padding: 3rem 0;
    }

    .consultation-cta-container {
        padding: 0 1.5rem;
    }

    .consultation-cta-content {
        gap: 1.25rem;
    }

    .consultation-cta-title {
        font-size: 1.75rem;
    }

    .consultation-cta-description {
        font-size: 1rem;
    }

    .consultation-cta-urgency {
        font-size: 1rem;
    }

    .consultation-cta-button {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .consultation-cta-section {
        padding: 2.5rem 0;
    }

    .consultation-cta-container {
        padding: 0 1rem;
    }

    .consultation-cta-title {
        font-size: 1.5rem;
    }

    .consultation-cta-description {
        font-size: 0.95rem;
    }

    .consultation-cta-urgency {
        font-size: 0.95rem;
    }
}

/* Portfolio Section Styles */
.portfolio-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.portfolio-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-section .section-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.portfolio-section .section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-carousel-container {
    position: relative;
    margin-bottom: 2rem;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.portfolio-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: max-content;
    backface-visibility: hidden;
    perspective: 1000px;
}

.portfolio-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    width: calc((100% - (4 * 1.5rem)) / 5);
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.portfolio-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.portfolio-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f3f4f6;
    position: relative;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.portfolio-location {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.portfolio-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio-pagination-dot:hover {
    background-color: #9ca3af;
}

.portfolio-pagination-dot-active {
    width: 10px;
    height: 10px;
    background-color: #374151;
}

.portfolio-pagination-dot-active:hover {
    background-color: #374151;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-image {
        max-height: 500px;
        object-fit: cover;
    }

    .before-after-wrapper {
        min-height: 400px;
    }

    .slider-handle-icon {
        width: 44px;
        height: 44px;
    }

    .slider-handle-icon i {
        width: 20px;
        height: 20px;
    }

    .section-main-title {
        font-size: 2rem;
    }

}

@media (max-width: 1024px) {
    .google-reviews-summary-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .review-us-button {
        width: 100%;
        text-align: center;
    }

    .reviews-carousel-container {
        padding: 0 2.5rem;
    }

    .review-card {
        width: calc((100% - (2 * 1rem)) / 3);
        min-width: 0;
    }

    .portfolio-section {
        padding: 4rem 0;
    }

    .portfolio-carousel-container {
        padding: 0 2.5rem;
    }

    .portfolio-card {
        width: calc((100% - (2 * 1rem)) / 3);
        min-width: 0;
    }

    .portfolio-image-wrapper {
        height: 240px;
    }
}

/* Previous Works Section */
.previous-works-section {
    padding: 5rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

.previous-works-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.previous-works-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.previous-works-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 744px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 3%, black 97%, transparent 100%);
}

.previous-works-carousel-wrapper::before,
.previous-works-carousel-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 35px;
    pointer-events: none;
    z-index: 10;
}

.previous-works-carousel-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.previous-works-carousel-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.previous-works-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    height: 100%;
}

.previous-works-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: visible;
    height: fit-content;
    backface-visibility: hidden;
    perspective: 1000px;
}

.previous-works-column-up {
    animation: scrollUp 70s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.previous-works-column-down {
    animation: scrollDown 70s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.previous-works-column-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.previous-work-card:hover {
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.previous-work-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.previous-work-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%;
}

.previous-work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.previous-work-card:hover .previous-work-image {
    transform: scale(1.05);
}

.previous-work-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.previous-work-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.previous-work-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.previous-work-address {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.previous-work-address::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #9ca3af;
    border-radius: 50%;
}

@keyframes scrollUp {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(0, -50%, 0);
    }
}

@keyframes scrollDown {
    0% {
        transform: translate3d(0, -50%, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.previous-works-column-up:hover,
.previous-works-column-down:hover {
    animation-play-state: paused;
}

.previous-works-carousel-wrapper:hover .previous-works-column-up,
.previous-works-carousel-wrapper:hover .previous-works-column-down {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .previous-works-column-up,
    .previous-works-column-down {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .previous-works-carousel-wrapper {
        height: 680px;
    }

    .previous-works-carousel-wrapper::before,
    .previous-works-carousel-wrapper::after {
        height: 30px;
    }

    .previous-works-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .previous-work-image-wrapper {
        height: 220px;
    }

    .previous-work-content {
        padding: 1rem;
    }

    .previous-work-title {
        font-size: 1rem;
    }

    .previous-work-description {
        font-size: 0.8125rem;
    }
}

@media (max-width: 768px) {
    .previous-works-section {
        padding: 3rem 0;
    }

    .previous-works-container {
        padding: 0 1.5rem;
    }

    .previous-works-section .section-header {
        margin-bottom: 2rem;
    }

    .previous-works-section .section-main-title {
        font-size: 2rem;
    }

    .previous-works-section .section-description {
        font-size: 1rem;
    }

    .previous-works-carousel-wrapper {
        height: 600px;
    }

    .previous-works-carousel-wrapper::before,
    .previous-works-carousel-wrapper::after {
        height: 28px;
    }

    .previous-works-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .previous-works-column {
        gap: 1rem;
    }

    .previous-works-column-content {
        gap: 1rem;
    }

    .previous-work-image-wrapper {
        height: 200px;
    }

    .previous-work-content {
        padding: 1rem;
        gap: 0.5rem;
    }

    .previous-work-title {
        font-size: 0.9375rem;
    }

    .previous-work-description {
        font-size: 0.8125rem;
    }

    .previous-work-address {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .previous-works-section {
        padding: 2.5rem 0;
    }

    .previous-works-container {
        padding: 0 1rem;
    }

    .previous-works-section .section-header {
        margin-bottom: 1.5rem;
    }

    .previous-works-section .section-main-title {
        font-size: 1.75rem;
    }

    .previous-works-section .section-description {
        font-size: 0.9375rem;
    }

    .previous-works-carousel-wrapper {
        height: 560px;
    }

    .previous-works-carousel-wrapper::before,
    .previous-works-carousel-wrapper::after {
        height: 25px;
    }

    .previous-works-carousel {
        gap: 0.5rem;
    }

    .previous-works-column {
        gap: 0.75rem;
    }

    .previous-works-column-content {
        gap: 0.75rem;
    }

    .previous-work-image-wrapper {
        height: 180px;
    }

    .previous-work-content {
        padding: 0.875rem;
    }

    .previous-work-title {
        font-size: 0.875rem;
    }

    .previous-work-description {
        font-size: 0.75rem;
    }

    .previous-work-address {
        font-size: 0.625rem;
    }

    .services-offer-section,
    .renovation-process-section {
        padding: 3rem 0;
    }

    .customer-reviews-section {
        padding: 3rem 0;
    }

    .customer-reviews-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .google-reviews-summary-section {
        padding: 1.5rem;
    }

    .google-rating-number {
        font-size: 2rem;
    }

    .rating-star {
        width: 20px;
        height: 20px;
    }

    .reviews-carousel-container {
        padding: 0 2rem;
    }

    .review-card {
        width: calc((100% - (1 * 0.75rem)) / 2);
        min-width: 0;
        padding: 1.25rem;
    }

    .portfolio-section {
        padding: 3rem 0;
    }

    .portfolio-section .section-main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .portfolio-section .section-description {
        font-size: 1rem;
    }

    .portfolio-carousel-container {
        padding: 0 2rem;
    }

    .portfolio-card {
        width: calc((100% - (1 * 0.75rem)) / 2);
        min-width: 0;
    }

    .portfolio-image-wrapper {
        height: 220px;
    }

    .portfolio-card-content {
        padding: 1.25rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }

    .reviewer-initial {
        font-size: 1rem;
    }

    .reviewer-name {
        font-size: 0.95rem;
    }

    .review-text {
        font-size: 0.875rem;
    }

    .services-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services-section .section-header {
        margin-bottom: 2.5rem;
    }

    .section-main-title {
        font-size: 1.75rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
    }

    .services-section .section-main-title {
        font-size: 1.75rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
    }

    .section-description {
        font-size: 1rem;
    }

    .services-section .section-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .process-steps-column {
        gap: 2rem;
    }

    .process-step {
        gap: 1rem;
    }

    .process-step-number-wrapper {
        width: 56px;
        height: 56px;
    }

    .process-step-icon-background {
        width: 56px;
        height: 56px;
    }

    .process-step-number {
        width: 24px;
        height: 24px;
        top: -2px;
        right: -2px;
    }

    .process-step-number-text {
        font-size: 0.625rem;
    }

    .process-step-icon {
        width: 28px;
        height: 28px;
    }

    .before-after-wrapper {
        min-height: 350px;
    }

    .slider-handle-icon {
        width: 40px;
        height: 40px;
    }

    .slider-handle-icon i {
        width: 18px;
        height: 18px;
    }

    .before-after-label {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        top: 0.75rem;
    }

    .before-label {
        left: 0.75rem;
    }

    .after-label {
        right: 0.75rem;
    }
}

/* Mobile App-like Enhancements */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
    }
    
    button,
    a,
    input[type="submit"],
    input[type="button"] {
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
    }
    
    .service-card,
    .project-card,
    .how-it-works-card,
    .review-card {
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.05);
    }
    
    .service-card:active,
    .project-card:active,
    .how-it-works-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .reviews-carousel-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        touch-action: pan-x;
    }

    .portfolio-carousel-container {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        touch-action: pan-x;
    }
    
    .before-after-wrapper {
        touch-action: pan-x;
    }
}

@media (max-width: 480px) {
    .customer-reviews-container {
        padding: 0 1rem;
    }

    .customer-reviews-title {
        font-size: 1.75rem;
    }

    .google-reviews-summary-section {
        padding: 1.25rem;
    }

    .google-logo-google,
    .google-logo-reviews {
        font-size: 1.25rem;
    }

    .google-rating-number {
        font-size: 1.75rem;
    }

    .rating-star {
        width: 18px;
        height: 18px;
    }

    .reviews-carousel-container {
        padding: 0 1.5rem;
    }

    .review-card {
        width: calc(100% - 0.75rem);
        min-width: 0;
    }

    .portfolio-section {
        padding: 2.5rem 0;
    }

    .portfolio-section .section-main-title {
        font-size: 1.75rem;
    }

    .portfolio-carousel-container {
        padding: 0 1.5rem;
    }

    .portfolio-card {
        width: calc(100% - 0.75rem);
        min-width: 0;
    }

    .portfolio-image-wrapper {
        height: 200px;
    }

    .carousel-nav-button {
        width: 36px;
        height: 36px;
    }

    .carousel-nav-button i {
        width: 18px;
        height: 18px;
    }

    .section-main-title {
        font-size: 1.5rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        line-height: 1.3;
    }
    
    .services-section .section-main-title {
        font-size: 1.5rem;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        line-height: 1.3;
    }

    .service-card-content {
        padding: 1.25rem;
    }

    .process-step-number-wrapper {
        width: 48px;
        height: 48px;
    }

    .process-step-icon-background {
        width: 48px;
        height: 48px;
    }


    .process-step-number {
        width: 20px;
        height: 20px;
        top: -1px;
        right: -1px;
    }

    .process-step-number-text {
        font-size: 0.5rem;
    }

    .process-step-icon {
        width: 24px;
        height: 24px;
    }
}

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-container {
    position: relative;
    background-color: var(--background-card);
    border-radius: 1rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.contact-modal-overlay.active .contact-modal-container {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s ease, transform 0.3s ease;
    color: #374151;
}

.contact-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.contact-modal-close i {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-modal-content {
    padding: 2.5rem;
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.contact-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-modal-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-modal-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-modal-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-modal-info-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-modal-info-icon i {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.contact-modal-info-content {
    flex: 1;
}

.contact-modal-info-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-modal-info-value {
    font-size: 1rem;
    color: #111827;
    font-weight: 500;
    line-height: 1.5;
}

.contact-modal-form-section {
    width: 100%;
}

.contact-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .contact-modal-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-modal-info-section {
        order: 2;
    }

    .contact-modal-form-section {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-modal-container {
        max-height: 95vh;
        border-radius: 0.75rem;
    }

    .contact-modal-content {
        padding: 2rem 1.5rem;
    }

    .contact-modal-header {
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .contact-modal-title {
        font-size: 1.75rem;
    }

    .contact-modal-subtitle {
        font-size: 0.95rem;
    }

    .contact-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .contact-modal-close i {
        width: 18px;
        height: 18px;
    }

    .contact-modal-info-item {
        gap: 0.75rem;
    }

    .contact-modal-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-modal-info-icon i {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .contact-modal-overlay {
        padding: 0.5rem;
    }

    .contact-modal-container {
        border-radius: 0.5rem;
    }

    .contact-modal-content {
        padding: 1.5rem 1rem;
    }

    .contact-modal-title {
        font-size: 1.5rem;
    }

    .contact-modal-body {
        gap: 1.5rem;
    }

    .contact-modal-info-section {
        gap: 1.25rem;
    }
}


