/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-teal: #0A6E7C;
    --primary-teal-dark: #2A5C6A;
    
    /* Secondary Colors */
    --secondary-beige: #F5F1E8;
    --secondary-beige-light: #EFEBE0;
    
    /* Accent Colors */
    --accent-orange: #D96C2B;
    --accent-orange-dark: #C45A1E;
    
    /* Logo Colors */
    --logo-teal: #188b9a;
    --logo-green: #8fa193;
    --logo-brown: #ac6935;
    --logo-dark-teal: #297373;
    --logo-orange: #f66939;
    
    /* Text Colors */
    --text-charcoal: #2C3E50;
    --text-mid-grey: #7F8C8D;
    --text-light-grey: #ECF0F1;
    
    /* Background */
    --bg-white: #FFFFFF;
    --bg-light: #F9F9F9;
    
    /* Typography */
    --font-chinese: 'Microsoft JhengHei UI', 'PingFang HK', 'Noto Sans HK', sans-serif;
    --font-english: 'Inter', 'Manrope', 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-chinese);
    color: var(--text-charcoal);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-charcoal);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
}

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

/* ============================================
   Container
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   Scroll Reveal Animations (Global)
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-delay-sm {
    transition-delay: 0.1s;
}

.reveal-delay-md {
    transition-delay: 0.25s;
}

.reveal-delay-lg {
    transition-delay: 0.4s;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */

.floating-whatsapp {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    background: #1ebe5d;
}

.floating-whatsapp svg {
    width: 26px;
    height: 26px;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 52px;
        height: 52px;
    }
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    gap: var(--spacing-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
    flex-shrink: 0;
    text-decoration: none;
}

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

.logo-icon svg,
.logo-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-chinese);
    display: flex;
    font-size: 1.2rem;
    flex-direction: column;
    line-height: 1;
    align-items: flex-start;
    justify-content: center;
}

.logo-en {
    font-family: var(--font-english);
    font-weight: 500;
    font-size: 0.65em;
    color: var(--primary-teal);
    margin-top: 0.15em;
    display: block;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--text-charcoal);
    font-weight: 500;
    font-size: 1.0625rem;
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-teal);
}

.nav-cta {
    background-color: var(--accent-orange);
    color: white !important;
    padding: var(--spacing-sm) var(--spacing-xl) !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 1.0625rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-cta::after {
    display: none;
}

.nav-cta.active::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-charcoal);
    transition: all 0.3s ease;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    font-family: var(--font-chinese);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-teal);
    color: white;
    border: 2px solid var(--primary-teal);
}

.btn-secondary:hover {
    background-color: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    max-height: 750px;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--bg-white) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.hero-text {
    max-width: 600px;
    padding-right: var(--spacing-lg);
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
    line-height: 1.15;
    font-weight: 700;
    white-space: nowrap;
}

.hero-subheading {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-teal);
    line-height: 1.3;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-mid-grey);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.hero-trust-title {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.hero-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.badge-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-teal);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(4px);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.badge-text {
    color: var(--text-charcoal);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.5;
    flex: 1;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-cta .btn {
    padding: 30px 120px 30px 120px;
    font-size: 1.125rem;
    border-radius: 15px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: linear-gradient(135deg, var(--secondary-beige) 0%, var(--bg-white) 100%);
    padding: var(--spacing-lg);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ============================================
   Trust Section
   ============================================ */
.trust-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: var(--spacing-lg);
}

.trust-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

/* Professional Trust Section */
.trust-section-professional {
    padding: calc(var(--spacing-xxl) * 1.5) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(24, 139, 154, 0.02) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.trust-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(24, 139, 154, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(217, 108, 43, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.trust-grid-professional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xxl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.trust-item-professional {
    text-align: left;
    padding: calc(var(--spacing-xl) * 1.2) var(--spacing-xl);
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(24, 139, 154, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.trust-item-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.trust-item-professional::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 139, 154, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trust-item-professional:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(24, 139, 154, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(24, 139, 154, 0.2);
}

.trust-item-professional:hover::before {
    transform: scaleX(1);
}

.trust-item-professional:hover::after {
    opacity: 1;
}

.trust-icon-professional {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 16px;
    position: relative;
    flex-shrink: 0;
}

.trust-icon-professional svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
}

.trust-item-professional h3 {
    font-size: 1.375rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.trust-item-professional p {
    font-size: 1rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: 0.2px;
}

@media (max-width: 992px) {
    .trust-grid-professional {
        gap: var(--spacing-xl);
        max-width: 100%;
    }
    
    .trust-item-professional {
        padding: var(--spacing-xl);
    }
    
    .trust-icon-professional {
        width: 60px;
        height: 60px;
    }
    
    .trust-icon-professional svg {
        width: 34px;
        height: 34px;
    }
    
    .trust-item-professional h3 {
        font-size: 1.25rem;
    }
}

.trust-item h3 {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-sm);
}

.trust-item p {
    color: var(--text-mid-grey);
    font-size: 0.9375rem;
}

/* ============================================
   How It Works
   ============================================ */
.how-it-works {
    padding: var(--spacing-xxl) 0;
    background-color: var(--secondary-beige-light);
    height: 600px;
}

/* Professional How It Works Section */
.how-it-works-professional {
    padding: var(--spacing-xxl) 0 calc(var(--spacing-xxl) * 1.5) 0;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--secondary-beige-light) 100%);
}

.process-steps-professional {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: var(--spacing-xxl) auto 0;
    flex-wrap: wrap;
}

.step-professional {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-number-professional {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--logo-teal) 0%, var(--logo-dark-teal) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.step-content-professional {
    width: 100%;
}

.step-icon-professional {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-md);
    color: var(--logo-teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-professional svg {
    width: 100%;
    height: 100%;
}

.step-professional h3 {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.step-professional p {
    font-size: 0.9375rem;
    color: var(--text-mid-grey);
    line-height: 1.6;
    margin: 0;
}

.step-arrow-professional {
    color: var(--logo-teal);
    opacity: 0.5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow-professional svg {
    width: 24px;
    height: 24px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
}

.section-subtitle {
    text-align: center;
    color: var(--text-mid-grey);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
}

.step-icon {
    font-size: 3rem;
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.step h3 {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-sm);
}

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

.step-arrow {
    font-size: 2rem;
    color: var(--primary-teal);
    align-self: center;
    margin: 0 var(--spacing-sm);
}

/* ============================================
   Help Section
   ============================================ */
.help-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.help-content {
    display: grid;
    /* 保持比例不變 */
    grid-template-columns: 1.3fr 1fr;
    /* 增加間距讓圖片有更多空間向右延伸 */
    gap: var(--spacing-xxl);
    column-gap: 12rem; /* 從 8rem 增加到 12rem */
    align-items: stretch;
    max-width: 1800px; /* 增加最大寬度 */
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-xxl);
    height: 100%;
    min-height: 500px;
    /* 確保容器足夠寬 */
    width: 100%;
}

.help-image-wrapper {
    justify-self: start;
    /* 關鍵：使用 auto 寬度讓容器根據內容擴展 */
    width: auto;
    min-width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: visible;
    height: 100%;
    /* 添加右邊距將圖片向右推 */
    margin-right: -50px; /* 負邊距讓圖片向右溢出 */
}

.help-image {
    /* 關鍵：增加圖片寬度 */
    width: 160%; /* 從 130% 增加到 160% */
    height: 100%;
    min-height: 400px;
    max-height: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: stretch;
    /* 確保圖片向右延伸 */
    margin-left: 0;
}

.help-text-wrapper {
    justify-self: end;
    width: 100%;
    max-width: 100%;
    /* 保持文字區域的左邊距 */
    padding-left: var(--spacing-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 確保文字區域位置不變 */
    position: relative;
    z-index: 2;
}

.help-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: none;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    flex: 1;
}

.help-image-placeholder::before {
    content: '📷';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.help-image-placeholder img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
}

.help-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
}

/* 其他樣式保持不變 */
.help-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-xl);
}

.help-text {
    margin-bottom: 0;
}

.help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.help-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
}

.help-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.help-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.help-cta .btn {
    background-color: var(--accent-orange);
    color: white;
    border: none;
}

.help-cta .btn:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 108, 43, 0.4);
}

/* ============================================
   Services Preview
   ============================================ */
.services-preview {
    padding: calc(var(--spacing-xxl) * 1.5) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, #fafafa 100%);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(24, 139, 154, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(217, 108, 43, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: calc(var(--spacing-xxl) * 1.2);
    position: relative;
    z-index: 1;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--text-mid-grey);
    margin-top: var(--spacing-md);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.services-grid-redesigned {
    display: grid;
    /* 修改：減少列數，讓每張卡片更寬 */
    grid-template-columns: repeat(3, 1fr); /* 從 6 改為 3 */
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--spacing-lg);
}

.service-card-large {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xxl) var(--spacing-xl); /* 增加內邊距 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(24, 139, 154, 0.08);
    position: relative;
    overflow: hidden;
    min-width: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* 增加陰影 */
    display: flex;
    flex-direction: column;
    /* 增加最小高度 */
    min-height: 380px;
}

.service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(24, 139, 154, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(24, 139, 154, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(24, 139, 154, 0.25);
}

.service-card-large:hover::before {
    transform: scaleX(1);
}

.service-card-large:hover::after {
    opacity: 1;
}

.service-card-content {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-icon-large {
    margin-bottom: var(--spacing-lg);
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 21px;
    position: relative;
    color: var(--primary-teal);
}

.service-icon-large svg {
    width: 46px;
    height: 46px;
    stroke: currentColor;
}

.service-card-large h3 {
    color: var(--text-charcoal);
    font-size: 1.5rem; /* 從 1.25rem 增加到 1.5rem */
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.service-card-large p {
    color: var(--text-mid-grey);
    line-height: 1.8; /* 從 1.7 增加到 1.8 */
    margin-bottom: var(--spacing-xl); /* 增加間距 */
    flex-grow: 1;
    font-size: 1.0625rem; /* 從 0.9375rem 增加到 1.0625rem */
    letter-spacing: 0.2px;
}

.service-card-large .btn-outline {
    margin-top: auto;
    border: 2px solid var(--primary-teal);
    color: var(--primary-teal);
    background: transparent;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.service-card-large .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card-large .btn-outline:hover::before {
    left: 100%;
}

.service-card-large .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 139, 154, 0.25);
    border-color: var(--primary-teal);
}

@media (max-width: 1400px) {
    .services-grid-redesigned {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .services-grid-redesigned {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .services-preview {
        padding: var(--spacing-xxl) 0;
    }
    
    .services-header {
        margin-bottom: var(--spacing-xxl);
    }
}

@media (max-width: 768px) {
    .services-grid-redesigned {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .service-card-large {
        padding: var(--spacing-xl);
    }
    
    .service-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .service-icon-large svg {
        width: 36px;
        height: 36px;
    }
    
    .service-card-large h3 {
        font-size: 1.375rem;
    }
    
    .service-card-large p {
        font-size: 1rem;
    }
    
    .services-subtitle {
        font-size: 1.125rem;
    }
}

/* ============================================
   Inspiration Section
   ============================================ */
.inspiration-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--secondary-beige-light);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.inspiration-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.inspiration-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.inspiration-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.inspiration-content {
    padding: var(--spacing-md);
}

.inspiration-content h3 {
    color: var(--primary-teal);
    margin-bottom: var(--spacing-xs);
}

.inspiration-content p {
    color: var(--text-mid-grey);
    font-size: 0.9375rem;
}

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

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
    margin-top:40px;
    margin-bottom:40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    align-items: stretch;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-rating {
    color: var(--accent-orange);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--text-charcoal);
    font-style: italic;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.testimonial-author strong {
    color: var(--primary-teal);
}

.testimonial-author span {
    color: var(--text-mid-grey);
    font-size: 0.875rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: calc(var(--spacing-xxl) * 1.5) 0;
    background-image: url('../images/photo 10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    opacity: 0.75;
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xl);
}

.cta-section .btn-primary {
    background-color: var(--accent-orange);
}

.cta-section .btn-primary:hover {
    background-color: var(--accent-orange-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--text-charcoal);
    color: white;
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero {
    padding: calc(var(--spacing-xxl) * 1.5) 0 var(--spacing-xxl) 0;
    margin-top: 80px;
    background: white;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.about-hero-text {
    text-align: left;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--text-charcoal);;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-charcoal);;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.about-hero-description {
    font-size: 1.125rem;
    color: var(--text-charcoal);;
    line-height: 1.8;
    margin: 0;
}

.about-hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-logo {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl);
    background: transparent;
    border-radius: var(--radius-lg);
}

.about-hero-logo svg,
.about-hero-logo img {
    width: 100%;
    height: auto;
    max-width: 250px;
    object-fit: contain;
}

.about-values {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.3) 0%, rgba(255, 255, 255, 1) 100%);
}

.about-values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.about-values-header h2 {
    font-size: 2.5rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.about-values-intro {
    font-size: 1.125rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    margin: 0;
}

.about-values-list {
    max-width: 1400px;
    margin: 0 auto;
}

.about-value-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
    align-items: center;
    margin-bottom: calc(var(--spacing-xxl) * 1.5);
    padding: var(--spacing-xl);
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-value-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.about-value-item-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.about-value-item-reverse .about-value-content {
    order: 1;
}

.about-value-item-reverse .about-value-image {
    order: 0;
}

.about-value-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.about-value-item:hover .about-value-image {
    transform: scale(1.02);
}

.about-value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-value-content {
    padding: var(--spacing-md);
}

.about-value-number {
    font-size: 4rem;
    font-weight: 300;
    color: rgba(24, 139, 154, 0.15);
    line-height: 1;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-english);
}

.about-value-content h3 {
    font-size: 1.75rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.about-value-content p {
    font-size: 1rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    margin: 0;
}

.about-why-choose {
    padding: var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.about-why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xxl);
}

.about-why-intro {
    font-size: 1.125rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.about-why-item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 241, 232, 0.3) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--logo-teal);
    transition: all 0.3s ease;
}

.about-why-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--logo-dark-teal);
}

.about-why-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: transparent;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-teal);
}

.about-why-content {
    flex: 1;
}

.about-why-content h3 {
    font-size: 1.375rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.about-why-content p {
    font-size: 0.9375rem;
    color: var(--text-mid-grey);
    line-height: 1.7;
    margin: 0;
}

.about-commitment {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--secondary-beige-light) 100%);
}

.about-commitment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr; /* 增加比例差異 */
    gap: calc(var(--spacing-xxl) * 2); /* 雙倍間距 */
    align-items: center;
    max-width: 1600px; /* 增加最大寬度 */
    margin: 0 auto;
}

.about-commitment-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    /* 如果需要讓圖片靠左一些，可以添加 margin */
    margin-right: var(--spacing-xl);
}

.about-commitment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-commitment-content {
    text-align: left;
    /* 如果需要讓內容靠右一些，可以添加 margin */
    margin-left: var(--spacing-xl);
}

.about-commitment-content h2 {
    font-size: 2.5rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-align: left;
}

.about-commitment-intro {
    font-size: 1.125rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.about-commitment-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: left;
}

.about-commitment-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.about-commitment-item:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.commitment-check {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--logo-teal) 0%, var(--logo-dark-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.commitment-check svg {
    width: 18px;
    height: 18px;
}

.about-commitment-item p {
    font-size: 1rem;
    color: var(--text-charcoal);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ============================================
   Form Styles
   ============================================ */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-charcoal);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--text-light-grey);
    border-radius: var(--radius-md);
    font-family: var(--font-chinese);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-checkbox input {
    width: auto;
}

/* ============================================
   Page Header
   ============================================ */
/* ============================================
   Services Introduction
   ============================================ */
.services-intro {
    padding: calc(var(--spacing-xxl) * 1.5) 0 var(--spacing-xxl);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
    color: white;
}

.services-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-intro h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.services-intro-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-categories {
    margin-top: var(--spacing-xl);
}

.services-categories h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.category-item a {
    color: white;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.category-item a:hover {
    color: white;
}

/* ============================================
   Content Section
   ============================================ */
.page-header {
    background-color: var(--bg-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: calc(var(--spacing-xxl) + 1rem) 0 var(--spacing-xl) 0;
    margin-top: 40px; /* Account for sticky navbar */
    margin-bottom: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

.page-header-description {
    font-size: 1.125rem;
    color: var(--text-charcoal);
    max-width: 700px;
    margin: var(--spacing-md) auto 0 auto;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

.content-section {
    padding: var(--spacing-xxl) 0;
}

.content-section-alt {
    background-color: var(--secondary-beige-light);
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-header {
    background-color: var(--bg-white);
    padding: calc(var(--spacing-xxl) + 1rem) 0 var(--spacing-lg) 0;
    margin-top: 80px;
    text-align: center;
    position: relative;
    margin-bottom: 0;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
    font-weight: 700;
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--text-mid-grey);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content-section {
    padding: var(--spacing-lg) 0 var(--spacing-xxl) 0;
    background-color: var(--bg-white);
}

.contact-cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #0e6c7a 0%, #0a5a66 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo 10.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.contact-cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-cta-text {
    text-align: left;
}

.contact-cta-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
}

.contact-cta-text > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.contact-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-cta-phone {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    backdrop-filter: blur(10px);
}

.btn-cta-phone:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-cta-phone svg {
    flex-shrink: 0;
}

.contact-cta-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.contact-cta-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.contact-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   Commercial Page Styles
   ============================================ */
.commercial-hero {
    background: linear-gradient(135deg, rgba(24, 139, 154, 0.1) 0%, rgba(41, 115, 115, 0.05) 100%);
    padding: calc(var(--spacing-xxl) * 1.5) 0 calc(var(--spacing-xxl) * 1.5) 0;
    margin-top: 0;
    text-align: center;
    position: relative;
}

.commercial-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.commercial-hero h1 {
    font-size: 3.5rem;
    color: var(--logo-teal);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.commercial-hero h2 {
    font-size: 2rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.commercial-hero-description {
    font-size: 1.125rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.commercial-content-section {
    padding: var(--spacing-xxl) 0;
}

.commercial-section-1 {
    background: white;
}

.commercial-section-1 .service-image-container {
    background-color: white;
}

.commercial-section-2 {
    background: #f5f1e8;
}

.commercial-section-2 .service-image-container {
    background-color: #f5f1e8;
}

.commercial-section-3 {
    background: white;
}

.commercial-section-3 .service-image-container {
    background-color: white;
}

.commercial-service-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr; /* Give more space to image column */
    gap: calc(var(--spacing-xxl) * 2);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
}

.commercial-service-grid-reverse {
    grid-template-columns: 1.8fr 1fr; 
    background: #f5f1e8;
}

.commercial-service-grid-reverse .commercial-service-content {
    order: 1;
}

.commercial-service-grid-reverse .commercial-service-image {
    order: 2;
}

.commercial-service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.commercial-service-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.commercial-service-image img:hover {
    transform: scale(1.02);
}

.commercial-service-content {
    padding: var(--spacing-xl) 0; 
}

.commercial-service-content h2 {
    font-size: 2.5rem; /* Increased from 2.25rem */
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-lg); /* Increased margin */
    font-weight: 700;
}

.commercial-service-content p {
    font-size: 1.125rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.commercial-service-content h4 {
    font-size: 1.25rem;
    color: var(--text-charcoal);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.commercial-service-content ul {
    color: var(--text-mid-grey);
    line-height: 1.8;
    padding-left: var(--spacing-lg);
    font-size: 1rem;
}

.commercial-section-4 {
    background: linear-gradient(135deg, rgba(217, 108, 43, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Benefits Section */
.commercial-benefits {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 241, 232, 0.3) 100%);
}

.benefits-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xxl) auto;
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid rgba(24, 139, 154, 0.15);
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.benefits-header h3 {
    font-size: 1.75rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.benefits-intro {
    font-size: 1.125rem;
    color: var(--text-mid-grey);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list {
    max-width: 1200px;
    margin: 0 auto;
}

/* New Benefit Item Design */
.benefit-item-new {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xxl);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 241, 232, 0.4) 100%);
    border: 1px solid rgba(24, 139, 154, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item-new::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--logo-teal) 0%, var(--logo-dark-teal) 100%);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(24, 139, 154, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 241, 232, 0.5) 100%);
}

.benefit-item-new:hover::before {
    opacity: 1;
}

.benefit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(24, 139, 154, 0.1) 0%, rgba(41, 115, 115, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--logo-teal);
    transition: all 0.3s ease;
    border: 2px solid rgba(24, 139, 154, 0.15);
}

.benefit-item-new:hover .benefit-icon {
    background: linear-gradient(135deg, var(--logo-teal) 0%, var(--logo-dark-teal) 100%);
    color: white;
    transform: scale(1.1);
    border-color: var(--logo-teal);
    box-shadow: 0 4px 12px rgba(24, 139, 154, 0.3);
}

.benefit-icon svg {
    width: 56px;
    height: 56px;
}

.benefit-content-new {
    padding-right: var(--spacing-lg);
}

.benefit-content-new h3 {
    font-size: 1.5rem;
    color: var(--text-charcoal);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.benefit-content-new p {
    font-size: 0.9375rem;
    color: var(--text-mid-grey);
    line-height: 1.7;
    margin: 0;
}

.benefit-image-new {
    width: 100%;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.benefit-item-new:hover .benefit-image-new {
    transform: scale(1.03);
}

.benefit-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Enhanced CTA Section */
.benefits-cta {
    margin-top: calc(var(--spacing-xxl) * 1.5);
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--logo-teal) 0%, var(--logo-dark-teal) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.benefits-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.benefits-cta-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.benefits-cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.benefits-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.btn-cta-large {
    padding: var(--spacing-md) var(--spacing-xxl);
    font-size: 1.125rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(217, 108, 43, 0.4);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-width: 200px;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 108, 43, 0.5);
    background: linear-gradient(135deg, var(--accent-orange-dark) 0%, #B04A0F 100%);
}

.btn-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-subtext {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.95;
}

.btn-cta-secondary {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.benefits-cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.cta-feature svg {
    color: white;
    flex-shrink: 0;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Unique color schemes for each service section - based on website theme colors */
/* Using subtle variations of Teal, Beige, and Orange from the color palette */

#residential {
    background-color:white;
}

#residential .service-image-container {
    background-color: white;
}

#commercial {
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--secondary-beige-light) 100%);
}

#commercial .service-image-container {
    background-color: linear-gradient(135deg, var(--secondary-beige) 0%, var(--secondary-beige-light) 100%);
}

#design {
    background: white;
}

#design .service-image-container {
    background-color: white;
}

#partial {
    background: #f2f8f9;
}

#partial .service-image-container {
    background: #f2f8f9;
}

#renovation {
    background: #fcf4ef;
}

#renovation .service-image-container {
    background-color: #fcf4ef;
}

#furniture {
    background: white;
}

#furniture .service-image-container {
    background-color: white;
}

/* ============================================
   Service Images
   ============================================ */
/* Override inline align-items for all service grids to make both divs same height */
div[style*="grid-template-columns"] {
    align-items: stretch !important;
    min-height: 400px;
}

/* Service Section Wrapper - Similar to Hero Section */
.service-section-wrapper {
    background: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.service-section-reverse {
    grid-template-columns: 1fr 1fr;
}

.service-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-xl);
}

.service-content-wrapper h2 {
    color: var(--primary-teal);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.service-content-wrapper h4 {
    color: var(--primary-teal);
    font-size: 1.25rem;
    font-weight: 600;
}

/* Service Image Container - Similar to Hero Image */
.service-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    background-color: var(--secondary-beige);
    padding: var(--spacing-lg);
    height: 100%;
    min-height: 450px;
}

.service-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Image wrapper takes full height of inner container */
.service-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Image fills the entire wrapper */
.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 968px) {
    .service-section-wrapper {
        grid-template-columns: 1fr !important;
        gap: var(--spacing-xl);
        min-height: auto;
    }
    
    .service-section-reverse {
        grid-template-columns: 1fr !important;
    }
    
    .service-image-container {
        order: -1;
        min-height: 350px;
        padding: var(--spacing-md);
    }
    
    .service-image-inner {
        max-width: 100%;
        max-height: 100%;
    }
    
    .service-image-wrapper {
        min-height: 300px;
    }
    
    .service-content-wrapper {
        padding: var(--spacing-lg);
    }
    
    .service-content-wrapper h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-image-container {
        min-height: 300px;
    }
    
    .service-image-wrapper {
        min-height: 250px;
    }
    
    .service-content-wrapper h2 {
        font-size: 1.75rem;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: var(--spacing-xl) var(--spacing-md);
        order: 1;
    }
    
    .hero-badges {
        gap: var(--spacing-xs);
    }
    
    .hero-image {
        order: 2;
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .hero {
        min-height: 400px;
        max-height: 500px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: var(--spacing-sm) 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-wrapper {
        gap: var(--spacing-md);
    }
    
    .logo {
        font-size: 1.25rem;
        gap: var(--spacing-sm);
    }
    
    .logo-icon svg,
    .logo-icon img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-xl);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        gap: var(--spacing-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: var(--spacing-sm) 0;
        width: 100%;
        font-size: 1.125rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        white-space: normal;
        line-height: 1.25;
    }
    
    .hero-subheading {
        font-size: 1.125rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-trust-title {
        font-size: 1.125rem;
    }
    
    .hero-badges {
        gap: var(--spacing-xs);
    }
    
    .badge-item {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .badge-text {
        font-size: 0.8125rem;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6875rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .hero-cta .btn {
        width: 100%;
        min-width: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .help-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .help-image-wrapper {
        order: -1;
        overflow: hidden;
    }
    
    .help-image {
        width: 100%;
        min-height: 300px;
    }
    
    .help-image-placeholder {
        min-height: 300px;
    }
    
    .help-title {
        font-size: 2rem;
    }
    
    .help-description {
        font-size: 1rem;
    }
    
    .help-cta {
        text-align: center;
    }
    
    .help-cta h3 {
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .page-header {
        padding: calc(var(--spacing-xl) + 1rem) 0 var(--spacing-lg) 0;
        margin-top: 0;
        margin-bottom: 0;
        min-height: 280px;
        background-attachment: scroll;
    }
    
    .page-header::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    }
    
    .page-header h1 {
        font-size: 2rem;
        text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9);
    }
    
    .page-header p {
        font-size: 1.125rem;
        color: var(--text-charcoal);
        font-weight: 500;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    }
    
    .page-header-description {
        color: var(--text-charcoal);
        font-weight: 500;
        text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: var(--spacing-md);
    }
    
    .trust-item {
        padding: var(--spacing-md);
    }
    
    .trust-item h3 {
        font-size: 1rem;
    }
    
    .trust-item p {
        font-size: 0.875rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

@media (max-width: 768px) {
    .commercial-hero {
        padding: calc(var(--spacing-xl) + 1rem) 0 var(--spacing-lg) 0;
        margin-top: 70px;
    }
    
    .commercial-hero h1 {
        font-size: 2.5rem;
    }
    
    .commercial-hero h2 {
        font-size: 1.5rem;
    }
    
    .commercial-hero-description {
        font-size: 1rem;
    }
    
    .benefit-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .benefit-number {
        font-size: 3rem;
    }
    
    .benefit-image {
        order: -1;
        height: 300px;
    }
    
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefits-header h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item-new {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .benefit-icon-wrapper {
        order: -1;
        justify-content: flex-start;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .benefit-content-new {
        padding-right: 0;
    }
    
    .benefit-image-new {
        order: -1;
        height: 250px;
    }
    
    .commercial-service-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .commercial-service-grid-reverse {
        grid-template-columns: 1fr;
    }
    
    .commercial-service-grid-reverse .commercial-service-content {
        order: 1;
    }
    
    .commercial-service-grid-reverse .commercial-service-image {
        order: 2;
    }
    
    .commercial-service-image {
        padding: var(--spacing-md);
    }
    
    .commercial-service-image img {
        max-width: 100%;
    }
    
    .commercial-service-content {
        text-align: center;
    }
    
    .commercial-service-content h2 {
        font-size: 1.875rem;
    }
    
    .benefits-cta {
        padding: var(--spacing-xl);
    }
    
    .benefits-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .benefits-cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-large,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .trust-grid-professional {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .trust-item-professional {
        padding: var(--spacing-xl);
    }
    
    .trust-icon-professional {
        width: 56px;
        height: 56px;
    }
    
    .trust-icon-professional svg {
        width: 32px;
        height: 32px;
    }
    
    .trust-item-professional h3 {
        font-size: 1.25rem;
    }
    
    .trust-item-professional p {
        font-size: 0.9375rem;
    }
    
    .process-steps-professional {
        flex-direction: column;
        gap: var(--spacing-xl);
    }
    
    .step-arrow-professional {
        transform: rotate(90deg);
    }
    
    .step-professional {
        min-width: 100%;
    }
    
    .about-hero {
        padding: calc(var(--spacing-xl) + 1rem) 0 var(--spacing-lg) 0;
        margin-top: 70px;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-logo {
        max-width: 100%;
        padding: var(--spacing-lg);
    }
    
    .about-hero-logo svg,
    .about-hero-logo img {
        max-width: 180px;
    }
    
    .about-value-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-value-item-reverse {
        grid-template-columns: 1fr;
    }
    
    .about-value-item-reverse .about-value-content {
        order: 0;
    }
    
    .about-value-item-reverse .about-value-image {
        order: -1;
    }
    
    .about-value-image {
        height: 300px;
    }
    
    .about-value-number {
        font-size: 3rem;
    }
    
    .about-commitment-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-commitment-image {
        height: 350px;
    }
    
    .about-commitment-content {
        text-align: center;
    }
    
    .about-commitment-content h2 {
        text-align: center;
    }
    
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-why-item:hover {
        transform: translateY(-4px);
    }
    
    .about-commitment-list {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-header {
        padding: calc(var(--spacing-xl) + 1rem) 0 var(--spacing-md) 0;
        margin-top: 70px;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-header p {
        font-size: 1.125rem;
    }
    
    .contact-content-section {
        padding: var(--spacing-md) 0 var(--spacing-xl) 0;
    }
    
    .contact-cta-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-cta-text {
        text-align: center;
    }
    
    .contact-cta-text h2 {
        font-size: 2rem;
    }
    
    .contact-cta-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .btn-cta-large,
    .btn-cta-phone {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-cta-image {
        height: 300px;
        order: -1;
    }
}

