/* ==========================================================================
   TO Inspect Ltd. - Main Stylesheet
   Elegant & Artistic Design for Discerning Clientele
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Elegant Monochromatic */
    --color-primary: #2d2d2d;            /* Deep Charcoal */
    --color-primary-dark: #1a1a1a;
    --color-primary-light: #4a4a4a;
    --color-secondary: #888888;          /* Sophisticated Gray */
    --color-secondary-light: #a8a8a8;
    --color-secondary-muted: #b5b5b5;    /* Soft Silver */
    --color-accent: #666666;             /* Medium Gray */
    --color-accent-light: #999999;
    --color-red: #c94a4a;                /* Elegant Red for important elements */
    --color-red-dark: #a63d3d;
    --color-red-light: #e07070;
    --color-rose: #9a9a9a;               /* Warm Gray */
    --color-rose-light: #d0d0d0;
    --color-sage: #707070;               /* Cool Gray */
    --color-sage-light: #e0e0e0;
    --color-warm-white: #f8f6f4;         /* Warm White */
    
    /* Neutrals - Refined Grayscale */
    --color-white: #ffffff;
    --color-cream: #fafafa;              /* Off White */
    --color-ivory: #f5f5f5;              /* Light Gray */
    --color-sand: #ebebeb;               /* Soft Gray */
    --color-stone: #d4d4d4;              /* Stone Gray */
    --color-charcoal: #1a1a1a;           /* Near Black */
    --color-charcoal-light: #3d3d3d;
    --color-ink: #0d0d0d;                /* Rich Black */
    
    /* Typography - Elegant Serifs */
    --font-display: 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
    --font-heading: 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
    --font-body: 'Lato', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-chinese: 'Noto Serif SC', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    
    /* Font Sizes - Refined Scale (Optimized for Readability) */
    --text-xs: 0.8125rem;    /* 13px - minimum readable size */
    --text-sm: 0.9375rem;    /* 15px */
    --text-base: 1.0625rem;  /* 17px - comfortable reading */
    --text-lg: 1.1875rem;    /* 19px */
    --text-xl: 1.375rem;     /* 22px */
    --text-2xl: 1.625rem;    /* 26px */
    --text-3xl: 2.125rem;    /* 34px */
    --text-4xl: 2.625rem;    /* 42px */
    --text-5xl: 3.5rem;      /* 56px */
    --text-6xl: 4.5rem;      /* 72px */
    
    /* Font Weights */
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Letter Spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;
    --tracking-widest: 0.2em;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.4;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;
    --leading-loose: 2;
    
    /* Spacing - Generous & Luxurious (Enhanced) */
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 1.75rem;
    --space-xl: 2.5rem;
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
    --space-4xl: 7rem;
    --space-5xl: 10rem;
    
    /* Layout */
    --max-width: 1280px;
    --max-width-narrow: 900px;
    --max-width-wide: 1440px;
    --header-height: 100px;
    
    /* Shadows - Soft & Subtle */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.1);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(201, 169, 166, 0.15);
    
    /* Transitions - Smooth & Elegant */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 800ms cubic-bezier(0.23, 1, 0.32, 1);
    
    /* Border Radius - Soft Edges */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Borders */
    --border-thin: 1px solid var(--color-sand);
    --border-accent: 1px solid var(--color-secondary-muted);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1200px) {
    html {
        font-size: 17px;
    }
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    line-height: var(--leading-relaxed);
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

::selection {
    background-color: var(--color-rose-light);
    color: var(--color-ink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography - Elegant & Refined
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--weight-normal);
    line-height: var(--leading-tight);
    color: var(--color-ink);
    margin-bottom: var(--space-md);
    letter-spacing: var(--tracking-tight);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-tight);
}

h2 {
    font-size: var(--text-4xl);
    font-weight: var(--weight-light);
}

h3 {
    font-size: var(--text-3xl);
    font-weight: var(--weight-normal);
}

h4 {
    font-size: var(--text-2xl);
    font-weight: var(--weight-normal);
}

h5 {
    font-size: var(--text-xl);
    font-weight: var(--weight-medium);
}

h6 {
    font-size: var(--text-lg);
    font-weight: var(--weight-medium);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-charcoal-light);
}

.text-display {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: var(--weight-light);
    line-height: var(--leading-none);
    letter-spacing: var(--tracking-tight);
}

.text-elegant {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: var(--weight-light);
}

.text-label {
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   Layout Components
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-2xl);
}

.container--narrow {
    max-width: var(--max-width-narrow);
}

.container--wide {
    max-width: var(--max-width-wide);
}

.main-content {
    flex: 1;
}

/* --------------------------------------------------------------------------
   Top Information Bar - Elegant Monochromatic
   -------------------------------------------------------------------------- */
.top-info-bar {
    background-color: #1a1a1a;
    color: #fafafa;
    padding: 8px 0;
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
}

.top-info-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-info-bar__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: nowrap;
}

.top-info-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 300;
    white-space: nowrap;
}

.top-info-bar__item i {
    color: #888888;
    font-size: var(--text-sm);
}

.top-info-bar a {
    color: #fafafa;
    transition: color var(--transition-fast);
}

.top-info-bar a:hover {
    color: #a8a8a8;
}

/* --------------------------------------------------------------------------
   Navigation Bar - Elegant Monochromatic
   -------------------------------------------------------------------------- */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.navbar__logo img {
    height: 45px;
    width: auto;
}

.navbar__logo-text {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: var(--tracking-wide);
}

.navbar__logo-text span {
    color: #888888;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: #4a4a4a;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-base);
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width var(--transition-elegant);
}

.navbar__link:hover {
    color: #1a1a1a;
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* --------------------------------------------------------------------------
   Buttons - Elegant Monochromatic
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--primary {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn--primary:hover {
    background-color: #2d2d2d;
    border-color: #2d2d2d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn--secondary {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn--secondary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn--outline {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn--outline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn--ghost {
    background-color: transparent;
    color: #4a4a4a;
    border-color: transparent;
}

.btn--ghost:hover {
    color: #1a1a1a;
    background-color: #f5f5f5;
}

.btn--elegant {
    background-color: transparent;
    color: #1a1a1a;
    border-color: #4a4a4a;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn--elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    transition: left var(--transition-base);
    z-index: -1;
}

.btn--elegant:hover {
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn--elegant:hover::before {
    left: 0;
}

.btn--lang {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    background-color: transparent;
    color: #4a4a4a;
    border-color: #888888;
    border-radius: 0;
}

.btn--lang:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
}

/* Mobile Menu Toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1002;
}

.navbar__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Toggle animation when active */
.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

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

/* Mobile menu close button */
.navbar__close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.navbar__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #1a1a1a;
    transition: all 0.2s ease;
}

.navbar__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.navbar__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar__close:hover span {
    background-color: #666666;
}

@media (max-width: 992px) {
    .navbar__close {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Footer - Elegant Monochromatic
   -------------------------------------------------------------------------- */
.footer {
    background-color: #1a1a1a;
    color: #fafafa;
    padding-top: var(--space-4xl);
    margin-top: var(--space-3xl);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer__section h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #ffffff;
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    letter-spacing: var(--tracking-wide);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer__links a {
    color: #a8a8a8;
    font-weight: 300;
    transition: all var(--transition-fast);
    display: inline-block;
    padding: var(--space-xs) 0;
}

.footer__links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    color: #a8a8a8;
    font-weight: 300;
}

.footer__contact-item i {
    color: #888888;
    margin-top: 4px;
    font-size: var(--text-sm);
}

.footer__contact-item a {
    color: #a8a8a8;
}

.footer__contact-item a:hover {
    color: #ffffff;
}

.footer__review-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background-color: transparent;
    color: #a8a8a8;
    padding: var(--space-md) var(--space-xl);
    border: 1px solid #4a4a4a;
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    margin-top: var(--space-md);
    transition: all var(--transition-fast);
}

.footer__review-btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer__copyright {
    font-size: var(--text-sm);
    color: #666666;
    font-weight: 300;
    letter-spacing: var(--tracking-wide);
}

/* --------------------------------------------------------------------------
   Hero Section - Artistic
   -------------------------------------------------------------------------- */
.hero {
    background-color: var(--color-primary);
    color: var(--color-cream);
    padding: var(--space-4xl) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(156, 173, 152, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 166, 0.1) 0%, transparent 50%);
}

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

.hero__content {
    max-width: 750px;
}

.hero__title {
    font-family: var(--font-display);
    color: var(--color-cream);
    margin-bottom: var(--space-xl);
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-tight);
}

.hero__subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2xl);
    opacity: 0.85;
    font-weight: var(--weight-light);
    line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   Section Styles - Luxurious Spacing
   -------------------------------------------------------------------------- */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

/* Section Divider - adds visual separation between sections */
.section + .section {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.section--cream {
    background-color: var(--color-cream);
}

.section--ivory {
    background-color: var(--color-ivory);
}

.section--sand {
    background-color: var(--color-sand);
}

.section--gray {
    background-color: var(--color-ivory);
}

.section--sage {
    background-color: var(--color-sage-light);
}

.section--rose {
    background-color: var(--color-rose-light);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-xl);
}

.section__title {
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    font-weight: var(--weight-light);
    padding-bottom: var(--space-lg);
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.section__subtitle {
    color: var(--color-charcoal-light);
    font-size: var(--text-lg);
    margin-top: var(--space-xl);
    font-weight: var(--weight-light);
    font-style: italic;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Cards - Refined & Minimal
   -------------------------------------------------------------------------- */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-elegant);
    border: var(--border-thin);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary-muted);
}

.card__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--color-ivory);
}

.card__content {
    padding: var(--space-xl) var(--space-lg);
}

.card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-normal);
    margin-bottom: var(--space-md);
    color: var(--color-ink);
}

.card__text {
    color: var(--color-charcoal-light);
    font-weight: var(--weight-light);
    line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   Blog Styles
   -------------------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-2xl);
}

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-elegant);
    border: var(--border-thin);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: var(--color-ivory);
}

.blog-card__content {
    padding: var(--space-xl) var(--space-lg);
}

.blog-card__category {
    display: inline-block;
    background-color: var(--color-sage-light);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    padding: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-lg);
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-normal);
    margin-bottom: var(--space-md);
    color: var(--color-ink);
}

.blog-card__excerpt {
    color: var(--color-charcoal-light);
    margin-bottom: var(--space-lg);
    font-weight: var(--weight-light);
    line-height: var(--leading-relaxed);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--color-charcoal-light);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-sand);
}

.blog-card__meta i {
    color: var(--color-secondary-muted);
}

/* --------------------------------------------------------------------------
   Forms - Elegant
   -------------------------------------------------------------------------- */
.form-group {
    margin-bottom: var(--space-xl);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-sm);
    color: var(--color-charcoal);
}

.form-control {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-light);
    color: var(--color-ink);
    background-color: var(--color-white);
    border: 1px solid var(--color-stone);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(44, 62, 45, 0.08);
}

.form-control::placeholder {
    color: var(--color-stone);
}

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

/* --------------------------------------------------------------------------
   Placeholder Images - Artistic
   -------------------------------------------------------------------------- */
.placeholder-image {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-rose-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-charcoal-light);
    font-size: var(--text-sm);
    font-weight: var(--weight-light);
    letter-spacing: var(--tracking-wide);
}

/* --------------------------------------------------------------------------
   Decorative Elements
   -------------------------------------------------------------------------- */
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: var(--space-2xl) auto;
}

.divider--left {
    margin-left: 0;
    background: linear-gradient(90deg, var(--color-secondary), transparent);
}

.ornament {
    display: inline-block;
    color: var(--color-secondary-muted);
    font-size: var(--text-2xl);
    line-height: 1;
}

.ornament::before {
    content: '❧';
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-charcoal-light); }

.bg-cream { background-color: var(--color-cream); }
.bg-ivory { background-color: var(--color-ivory); }
.bg-white { background-color: var(--color-white); }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }
.mt-6 { margin-top: var(--space-3xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }
.mb-6 { margin-bottom: var(--space-3xl); }

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-6 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

.px-1 { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-2 { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-3 { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-4 { padding-left: var(--space-xl); padding-right: var(--space-xl); }
.px-5 { padding-left: var(--space-2xl); padding-right: var(--space-2xl); }

/* --------------------------------------------------------------------------
   Responsive Design - Monochromatic
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    :root {
        --text-5xl: 2.75rem;
        --text-4xl: 2.25rem;
        --text-3xl: 1.75rem;
    }
    
    .navbar__toggle {
        display: flex;
    }
    
    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 80px 30px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
        pointer-events: auto;
    }
    
    .navbar__menu.active {
        right: 0;
    }
    
    .navbar__links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .navbar__links li {
        width: 100%;
    }
    
    .navbar__link {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
        font-size: 1rem;
        color: #1a1a1a;
        letter-spacing: 0.5px;
        transition: all 0.2s ease;
        position: relative;
        z-index: 10;
        cursor: pointer;
    }
    
    .navbar__link:hover,
    .navbar__link.active {
        color: #666666;
        padding-left: 10px;
    }
    
    .navbar__link::after {
        display: none;
    }
    
    .navbar__actions {
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
        gap: 12px;
        position: relative;
        z-index: 10;
    }
    
    .navbar__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 5rem;
        --space-5xl: 6rem;
    }
    
    .top-info-bar {
        padding: 6px 10px;
    }
    
    .top-info-bar__content {
        gap: var(--space-lg);
    }
    
    .top-info-bar__item {
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .top-info-bar__item i {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: var(--space-3xl) 0;
        min-height: 400px;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .footer__contact-item {
        justify-content: center;
    }
    
    .footer__links {
        align-items: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Improve button sizing on mobile */
    .btn {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--text-xs);
    }
    
    .section {
        padding: var(--space-3xl) 0;
    }
    
    .section__header {
        margin-bottom: var(--space-2xl);
    }
}

@media (max-width: 480px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .top-info-bar {
        padding: 5px 8px;
    }
    
    .top-info-bar__content {
        gap: var(--space-sm);
    }
    
    .top-info-bar__item {
        font-size: 0.6rem;
        gap: 3px;
    }
    
    .top-info-bar__item i {
        font-size: 0.6rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .section__header {
        margin-bottom: var(--space-xl);
        padding: 0 var(--space-sm);
    }
}

/* --------------------------------------------------------------------------
   Highlight Box for Articles
   -------------------------------------------------------------------------- */
.highlight-box {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-ivory) 100%);
    border-left: 4px solid var(--color-secondary);
    padding: var(--space-xl) var(--space-2xl);
    margin: var(--space-2xl) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.highlight-box strong {
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Animation Classes
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp var(--transition-elegant) forwards;
}

.animate-fade-in {
    animation: fadeIn var(--transition-slow) forwards;
}

/* ==========================================================================
   HOME PAGE SPECIFIC STYLES
   ========================================================================== */

/* Modern Typography Override */
:root {
    --font-display-modern: 'Playfair Display', serif;
    --font-body-modern: 'Inter', sans-serif;
}

/* ===== HERO SECTION - FULL SCREEN IMMERSIVE ===== */
.home-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), 
                url('../Image Assets/index1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(250, 250, 250, 0.3));
    pointer-events: none;
}

.home-hero__container {
    max-width: 1100px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
    padding: var(--space-3xl) var(--space-2xl);
}

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

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero__badge i {
    font-size: 1.1rem;
}

.home-hero__title {
    font-family: var(--font-display-modern);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.home-hero__title .highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.home-hero__text {
    font-family: var(--font-body-modern);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
    font-weight: 400;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-hero__actions {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.home-hero__actions .btn {
    font-size: 1rem;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.home-hero__actions .btn--primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #ffffff;
}

.home-hero__actions .btn--primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.home-hero__actions .btn--outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.home-hero__actions .btn--outline:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: var(--space-3xl);
    padding: var(--space-2xl) var(--space-4xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-hero__stat {
    text-align: center;
    padding: var(--space-md) var(--space-lg);
}

.home-hero__stat-number {
    font-family: var(--font-display-modern);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-xs);
    display: block;
    white-space: nowrap;
}

.home-hero__stat-label {
    font-family: var(--font-body-modern);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ===== FEATURES STRIP - HORIZONTAL QUALIFICATION BAR ===== */
.features-strip {
    background: #ffffff;
    padding: var(--space-4xl) var(--space-xl);
    position: relative;
    margin-top: 0;
    z-index: 3;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.features-strip__container {
    background: transparent;
    border-radius: 0;
    padding: 0 var(--space-xl);
    box-shadow: none;
    border: none;
    max-width: 1200px;
    margin: 0 auto;
}

.features-strip__grid {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    align-items: center;
    flex-wrap: nowrap;
}

.features-strip__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-xl);
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.features-strip__item:hover {
    transform: translateY(-3px);
}

.features-strip__icon {
    width: 55px;
    height: 55px;
    background: #f5f5f5;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.features-strip__item:hover .features-strip__icon {
    background: #e8e8e8;
    transform: scale(1.05);
}

.features-strip__icon i {
    font-size: 1.4rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.features-strip__text {
    font-family: var(--font-body-modern);
    font-size: var(--text-base);
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    text-align: left;
}

/* ===== ABOUT MIKE SECTION - MODERN SPLIT LAYOUT ===== */
.about-mike {
    padding: var(--space-5xl) var(--space-xl);
    background: #ffffff;
}

.about-mike__grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: var(--space-5xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-mike__image-wrapper {
    position: relative;
}

.about-mike__image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-radius: 30px;
    z-index: 0;
}

.about-mike__photo {
    width: 100%;
    aspect-ratio: 4/5;
    background: url('../Image Assets/index3.jpeg');
    background-size: cover;
    background-position: center top;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-mike__photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.about-mike__photo-label {
    position: absolute;
    bottom: var(--space-2xl);
    left: var(--space-2xl);
    right: var(--space-2xl);
    z-index: 2;
    color: #ffffff;
}

.about-mike__photo-name {
    font-family: var(--font-display-modern);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.about-mike__photo-title {
    font-family: var(--font-body-modern);
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.about-mike__credentials {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: var(--space-md) var(--space-xl);
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--text-sm);
    margin-top: var(--space-2xl);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-mike__content h2 {
    font-family: var(--font-display-modern);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #1a1a1a;
    margin-bottom: var(--space-lg);
    font-weight: 700;
    line-height: 1.2;
}

.about-mike__content h2 .accent {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-mike__subtitle {
    font-family: var(--font-body-modern);
    font-size: var(--text-lg);
    color: #666666;
    margin-bottom: var(--space-xl);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-mike__text {
    font-family: var(--font-body-modern);
    font-size: var(--text-base);
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.about-mike__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

.about-mike__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 50px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-mike__badge:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #1a1a1a;
}

.about-mike__badge i {
    font-size: 1rem;
}

/* ===== SERVICES SECTION - MODERN CARD GRID ===== */
.services-overview {
    padding: var(--space-5xl) var(--space-xl);
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.services-overview__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    padding: 0 var(--space-lg);
}

.services-overview__header h2 {
    font-family: var(--font-display-modern);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    margin-bottom: var(--space-xl);
    font-weight: 700;
}

.services-overview__header p {
    font-family: var(--font-body-modern);
    font-size: var(--text-lg);
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-3xl);
    margin-bottom: var(--space-4xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f5f5f5;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--card-color, #1a1a1a), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--card-color, #1a1a1a);
}

.service-card:nth-child(1) { --card-color: #E8D5E2; }
.service-card:nth-child(2) { --card-color: #D5E5E8; }
.service-card:nth-child(3) { --card-color: #E8E2D5; }
.service-card:nth-child(4) { --card-color: #D5E8DE; }
.service-card:nth-child(5) { --card-color: #E2D5E8; }
.service-card:nth-child(6) { --card-color: #D5DEE8; }

.service-card__icon {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-color, #f5f5f5) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.service-card__icon::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.service-card:hover .service-card__icon::after {
    transform: scale(1);
}

.service-card__icon i {
    font-size: 3rem;
    color: #1a1a1a;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon i {
    transform: scale(1.15) rotate(5deg);
}

.service-card__content {
    padding: var(--space-2xl);
}

.service-card__header {
    display: none;
}

.service-card__title {
    font-family: var(--font-display-modern);
    font-size: var(--text-xl);
    color: #1a1a1a;
    margin-bottom: var(--space-lg);
    font-weight: 700;
}

.service-card__text {
    font-family: var(--font-body-modern);
    font-size: var(--text-sm);
    color: #666666;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #1a1a1a;
    font-weight: 700;
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-card__link:hover {
    color: var(--card-color, #666666);
    gap: var(--space-md);
}

.service-card__link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-card__link i {
    transform: translateX(5px);
}

/* ===== PORTFOLIO SECTION - MODERN GALLERY ===== */
.portfolio-section {
    padding: var(--space-5xl) var(--space-xl);
    background: #ffffff;
}

.portfolio-section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    padding: 0 var(--space-lg);
}

.portfolio-section__header h2 {
    font-family: var(--font-display-modern);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    margin-bottom: var(--space-xl);
    font-weight: 700;
}

.portfolio-section__header p {
    font-family: var(--font-body-modern);
    font-size: var(--text-lg);
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

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

.portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--space-2xl);
}

.portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-item__label {
    color: #ffffff;
    font-family: var(--font-body-modern);
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item__label {
    transform: translateY(0);
}

/* ===== REVIEWS SECTION - MODERN TESTIMONIALS ===== */
.reviews-section {
    padding: var(--space-5xl) var(--space-xl);
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.reviews-section__header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    padding: 0 var(--space-lg);
}

.reviews-section__header h2 {
    font-family: var(--font-display-modern);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    margin-bottom: var(--space-xl);
    font-weight: 700;
}

.reviews-section__header p {
    font-family: var(--font-body-modern);
    font-size: var(--text-lg);
    color: #666666;
    font-weight: 400;
    line-height: 1.7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    border-radius: 25px;
    padding: var(--space-3xl);
    position: relative;
    border: 2px solid #f5f5f5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #FFD700;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: var(--space-xl);
    right: var(--space-2xl);
    font-family: var(--font-display-modern);
    font-size: 6rem;
    color: #f5f5f5;
    line-height: 1;
    z-index: 0;
}

.review-card__stars {
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.review-card__stars i {
    color: #FFD700;
    font-size: 1.2rem;
    margin-right: 3px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.review-card__text {
    font-family: var(--font-body-modern);
    font-size: var(--text-base);
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 2px solid #f5f5f5;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.review-card__name {
    font-family: var(--font-body-modern);
    font-weight: 700;
    color: #1a1a1a;
    font-size: var(--text-base);
    margin-bottom: 4px;
}

.review-card__location {
    font-size: var(--text-sm);
    color: #888888;
    margin-bottom: 2px;
}

.review-card__type {
    font-size: var(--text-xs);
    color: #666666;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== SERVICE AREAS PREVIEW - MODERN DARK DESIGN ===== */
.areas-preview {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    padding: var(--space-5xl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.areas-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.areas-preview__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4xl);
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl);
}

.areas-preview__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.areas-preview__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.areas-preview__icon i {
    color: #FFD700;
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
}

.areas-preview h3 {
    font-family: var(--font-display-modern);
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.areas-preview p {
    font-family: var(--font-body-modern);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 0;
}

.areas-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    width: 100%;
    margin-bottom: var(--space-3xl);
    padding: 0 var(--space-lg);
}

.areas-preview__tag {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-xl);
    border-radius: 50px;
    font-family: var(--font-body-modern);
    font-size: var(--text-base);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.areas-preview__tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.areas-preview__cta {
    margin-top: var(--space-xl);
}

.areas-preview__cta .btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.areas-preview__cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

/* ===== CTA SECTION - MODERN CALL TO ACTION ===== */
.home-cta {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: var(--space-5xl) var(--space-xl);
    text-align: center;
    position: relative;
}

.home-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.home-cta h2 {
    font-family: var(--font-display-modern);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-xl);
    font-weight: 700;
    color: #1a1a1a;
}

.home-cta p {
    font-family: var(--font-body-modern);
    font-size: var(--text-lg);
    color: #666666;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
    font-weight: 400;
    line-height: 1.8;
    padding: 0 var(--space-lg);
}

.home-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.home-cta__actions .btn {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.home-cta__actions .btn--primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.home-cta__actions .btn--primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.home-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: transparent;
    border: 3px solid #1a1a1a;
    color: #1a1a1a;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.home-cta__phone:hover {
    background: #1a1a1a;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN FOR HOME PAGE ===== */
@media (max-width: 992px) {
    .home-hero {
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .home-hero__title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .home-hero__stats {
        grid-template-columns: repeat(3, auto);
        gap: var(--space-xl);
        padding: var(--space-xl) var(--space-2xl);
    }
    
    .about-mike__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }
    
    .about-mike__image-wrapper::before {
        display: none;
    }
    
    .about-mike__image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-mike__photo {
        position: relative;
        overflow: visible;
        margin-bottom: 80px;
    }
    
    .about-mike__photo::after {
        display: none;
    }
    
    .about-mike__photo-label {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        bottom: auto;
        color: #1a1a1a;
        margin-top: var(--space-lg);
        text-align: center;
        padding: var(--space-md);
    }
    
    .about-mike__photo-name {
        color: #1a1a1a;
        font-size: 1.5rem;
    }
    
    .about-mike__photo-title {
        color: #666666;
        font-size: 0.95rem;
    }
    
    .about-mike__badges {
        justify-content: center;
    }
    
    .features-strip__grid {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .features-strip__item {
        white-space: normal;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding: var(--space-2xl) 0;
        align-items: flex-start;
        padding-top: 120px;
    }
    
    .home-hero__container {
        padding: var(--space-lg);
    }
    
    .home-hero__badge {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-md);
    }
    
    .home-hero__title {
        font-size: clamp(2.2rem, 10vw, 3rem);
        margin-bottom: var(--space-lg);
    }
    
    .home-hero__text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--space-xl);
    }
    
    .home-hero__stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-sm);
        padding: var(--space-lg);
        margin-top: var(--space-lg);
    }
    
    .home-hero__stat {
        padding: var(--space-xs);
        flex: 1;
    }
    
    .home-hero__stat-number {
        font-size: 1.5rem;
    }
    
    .home-hero__stat-label {
        font-size: 0.65rem;
        letter-spacing: 0;
    }
    
    .home-hero__actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .home-hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .features-strip__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-sm);
    }
    
    .features-strip__item {
        flex-direction: column;
        text-align: center;
        padding: var(--space-sm);
        background: #f8f8f8;
        border-radius: 10px;
        gap: var(--space-xs);
        aspect-ratio: 1;
        justify-content: center;
        align-items: center;
    }
    
    .features-strip__icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .features-strip__icon i {
        font-size: 1rem;
    }
    
    .features-strip__text {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    /* ===== STACKED CARD DECK FOR SERVICES - MOBILE ===== */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-top: var(--space-md);
    }
    
    .service-card {
        position: relative;
        margin-bottom: 0;
        transform-origin: top center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        z-index: 1;
        border-radius: 20px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }
    
    /* Stack cards with visible headers - each shows just below the previous */
    .service-card:nth-child(1) { z-index: 6; }
    .service-card:nth-child(2) { z-index: 5; margin-top: -10px; }
    .service-card:nth-child(3) { z-index: 4; margin-top: -10px; }
    .service-card:nth-child(4) { z-index: 3; margin-top: -10px; }
    .service-card:nth-child(5) { z-index: 2; margin-top: -10px; }
    .service-card:nth-child(6) { z-index: 1; margin-top: -10px; }
    
    .service-card.expanded {
        z-index: 10 !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        margin-top: var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .service-card__icon {
        display: none;
    }
    
    .service-card__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--space-md) var(--space-lg);
        cursor: pointer;
        min-height: 70px;
        background: #ffffff;
        border-radius: 20px;
    }
    
    .service-card__header-title {
        font-family: var(--font-body-modern);
        font-size: var(--text-base);
        font-weight: 600;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }
    
    .service-card__header-title i {
        font-size: 1.2rem;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--card-color, #f5f5f5) 0%, #ffffff 100%);
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .service-card__expand-icon {
        width: 28px;
        height: 28px;
        background: #f0f0f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .service-card__expand-icon i {
        font-size: 0.7rem;
        color: #666666;
        transition: transform 0.3s ease;
    }
    
    .service-card.expanded .service-card__expand-icon {
        background: #1a1a1a;
    }
    
    .service-card.expanded .service-card__expand-icon i {
        color: #ffffff;
        transform: rotate(180deg);
    }
    
    .service-card.expanded .service-card__content {
        max-height: 500px;
        opacity: 1;
        padding: var(--space-lg);
        padding-top: 0;
    }
    
    .service-card__content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 var(--space-lg);
        transition: all 0.4s ease;
    }
    
    .service-card__title {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .review-card {
        padding: var(--space-xl);
    }
    
    .review-card::before {
        font-size: 4rem;
        top: var(--space-md);
        right: var(--space-lg);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .portfolio-item {
        border-radius: 15px;
    }
    
    .areas-preview__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .areas-preview__tag {
        padding: var(--space-md);
        font-size: var(--text-sm);
    }
    
    .areas-preview__cta {
        display: flex;
        justify-content: center;
    }
    
    .about-mike__photo {
        aspect-ratio: 1;
        border-radius: 20px;
    }
    
    .about-mike__badges {
        gap: var(--space-sm);
    }
    
    .about-mike__badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }
    
    .home-cta__actions {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
    }
    
    .home-cta__actions .btn,
    .home-cta__phone {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .services-overview__header h2,
    .portfolio-section__header h2,
    .reviews-section__header h2,
    .home-cta h2 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .home-hero__title {
        font-size: 2rem;
    }
    
    .home-hero__stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .home-hero__stat {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        text-align: left;
        background: rgba(255, 255, 255, 0.05);
        padding: var(--space-md) var(--space-lg);
        border-radius: 15px;
    }
    
    .home-hero__stat-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }
    
    .home-hero__stat-label {
        font-size: 0.75rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
    }
    
    .areas-preview__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
        margin: 0 auto;
    }
    
    .areas-preview__tag {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }
    
    .features-strip {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .features-strip__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .features-strip__item {
        padding: var(--space-xs);
        border-radius: 8px;
        aspect-ratio: 1;
    }
    
    .features-strip__icon {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    
    .features-strip__icon i {
        font-size: 0.85rem;
    }
    
    .features-strip__text {
        font-size: 0.5rem;
    }
    
    .service-card__header {
        padding: var(--space-sm) var(--space-md);
        min-height: 60px;
    }
    
    .service-card__header-title {
        font-size: var(--text-sm);
        gap: var(--space-sm);
    }
    
    .service-card__header-title i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .service-card__expand-icon {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================================================
   CHINESE VERSION HOME PAGE STYLES
   ========================================================================== */

:root {
    --font-display-cn: 'Noto Serif SC', 'Playfair Display', Georgia, serif;
    --font-body-cn: 'Noto Sans SC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Chinese Hero Section */
.home-hero.chinese-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(45, 45, 45, 0.88) 100%),
                url('../Image Assets/index1.jpeg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
}

.home-hero.chinese-hero .home-hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.home-hero.chinese-hero .home-hero__content {
    color: #fff;
}

.home-hero.chinese-hero .home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.home-hero.chinese-hero .home-hero__title {
    font-family: var(--font-display-cn);
    font-size: clamp(2.5rem, 5vw, var(--text-5xl));
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
    color: #fff;
}

.home-hero.chinese-hero .home-hero__text {
    font-family: var(--font-body-cn);
    font-size: var(--text-lg);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.home-hero.chinese-hero .home-hero__actions {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.btn-outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.home-hero.chinese-hero .home-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
}

.home-hero.chinese-hero .home-hero__stat {
    text-align: center;
}

.home-hero.chinese-hero .home-hero__stat-number {
    font-family: var(--font-display-modern);
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.home-hero.chinese-hero .home-hero__stat-number.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero.chinese-hero .home-hero__stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.home-hero.chinese-hero .home-hero__image {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    min-width: 320px;
}

.hero-card__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    writing-mode: horizontal-tb;
    text-orientation: mixed;
}

.hero-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E8D5E2 0%, #D5E5E8 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card__icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.hero-card__title {
    font-family: var(--font-display-cn);
    font-size: var(--text-xl);
    font-weight: 600;
    color: #1a1a1a;
    writing-mode: horizontal-tb;
    white-space: nowrap;
}

.hero-card__subtitle {
    font-size: var(--text-sm);
    color: #666;
    writing-mode: horizontal-tb;
}

.hero-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-card__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: #f8f8f8;
    border-radius: var(--radius-md);
}

.hero-card__feature i {
    color: #FFD700;
    font-size: 1rem;
}

.hero-card__feature span {
    font-size: var(--text-sm);
    color: #333;
    writing-mode: horizontal-tb;
    white-space: nowrap;
}

/* Chinese Features Strip */
.features-strip.chinese-features {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--space-xl) 0;
    position: relative;
}

.features-strip.chinese-features .features-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.features-strip.chinese-features .features-strip__item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    color: #fff;
}

.features-strip.chinese-features .features-strip__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.features-strip.chinese-features .features-strip__icon i {
    font-size: var(--text-xl);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-strip.chinese-features .features-strip__text {
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Chinese About Mike Section */
.about-mike.chinese-about {
    padding: var(--space-5xl) 0;
    background: #fff;
}

.about-mike.chinese-about .about-mike__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-5xl);
    align-items: start;
}

.about-mike.chinese-about .about-mike__image {
    position: relative;
}

.about-mike.chinese-about .about-mike__photo {
    width: 100%;
    aspect-ratio: 3/4;
    background: url('../Image Assets/index3.jpeg') center top/cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-mike.chinese-about .about-mike__name-overlay,
.about-mike.chinese-about .about-mike__name,
.about-mike.chinese-about .about-mike__title {
    display: none;
}

.about-mike.chinese-about .about-mike__credentials {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: var(--space-lg);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-sm);
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.about-mike.chinese-about .about-mike__content {
    padding-top: var(--space-lg);
}

.about-mike.chinese-about .about-mike__content h2 {
    font-family: var(--font-display-cn);
    font-size: var(--text-3xl);
    color: #1a1a1a;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.about-mike.chinese-about .about-mike__subtitle {
    font-size: var(--text-lg);
    color: #666;
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

.about-mike.chinese-about .about-mike__text {
    font-size: var(--text-base);
    line-height: 1.9;
    color: #555;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.about-mike.chinese-about .about-mike__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin: var(--space-2xl) 0;
}

.about-mike.chinese-about .about-mike__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
}

.about-mike.chinese-about .about-mike__badge:nth-child(1) {
    background: linear-gradient(135deg, #E8D5E2 0%, #F2E6EE 100%);
    color: #6B5B7A;
}

.about-mike.chinese-about .about-mike__badge:nth-child(2) {
    background: linear-gradient(135deg, #D5E5E8 0%, #E6F0F2 100%);
    color: #5B7A6B;
}

.about-mike.chinese-about .about-mike__badge:nth-child(3) {
    background: linear-gradient(135deg, #E8E2D5 0%, #F2EDE6 100%);
    color: #7A6B5B;
}

.about-mike.chinese-about .about-mike__badge:nth-child(4) {
    background: linear-gradient(135deg, #D5E8DE 0%, #E6F2EB 100%);
    color: #5B7A70;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Chinese Services Overview Section */
.services-overview.chinese-services {
    padding: var(--space-5xl) 0;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header h2 {
    font-family: var(--font-display-cn);
    font-size: var(--text-3xl);
    color: #1a1a1a;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.section-header p {
    font-size: var(--text-lg);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.services-overview.chinese-services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.services-overview.chinese-services .service-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.services-overview.chinese-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-overview.chinese-services .service-card__icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-overview.chinese-services .service-card:nth-child(1) .service-card__icon {
    background: linear-gradient(135deg, #E8D5E2 0%, #F2E6EE 100%);
}
.services-overview.chinese-services .service-card:nth-child(2) .service-card__icon {
    background: linear-gradient(135deg, #D5E5E8 0%, #E6F0F2 100%);
}
.services-overview.chinese-services .service-card:nth-child(3) .service-card__icon {
    background: linear-gradient(135deg, #E8E2D5 0%, #F2EDE6 100%);
}
.services-overview.chinese-services .service-card:nth-child(4) .service-card__icon {
    background: linear-gradient(135deg, #D5E8DE 0%, #E6F2EB 100%);
}
.services-overview.chinese-services .service-card:nth-child(5) .service-card__icon {
    background: linear-gradient(135deg, #E2D5E8 0%, #EDE6F2 100%);
}
.services-overview.chinese-services .service-card:nth-child(6) .service-card__icon {
    background: linear-gradient(135deg, #D5DEE8 0%, #E6EBF2 100%);
}

.services-overview.chinese-services .service-card__icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.services-overview.chinese-services .service-card__content {
    padding: var(--space-xl);
}

.services-overview.chinese-services .service-card__title {
    font-family: var(--font-display-cn);
    font-size: var(--text-xl);
    color: #1a1a1a;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.services-overview.chinese-services .service-card__text {
    font-size: var(--text-sm);
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.services-overview.chinese-services .service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: #1a1a1a;
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-overview.chinese-services .service-card__link:hover {
    color: #FFD700;
    gap: var(--space-md);
}

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

/* Chinese Portfolio Section */
.portfolio-section.chinese-portfolio {
    padding: var(--space-5xl) 0;
    background: #fff;
}

.portfolio-section.chinese-portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.portfolio-section.chinese-portfolio .portfolio-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

.portfolio-section.chinese-portfolio .portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-section.chinese-portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-section.chinese-portfolio .portfolio-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
}

.portfolio-section.chinese-portfolio .portfolio-item:hover .portfolio-item__overlay {
    opacity: 1;
}

.portfolio-section.chinese-portfolio .portfolio-item__label {
    color: #fff;
    font-size: var(--text-sm);
    font-weight: 500;
}

/* Chinese Reviews Section */
.reviews-section.chinese-reviews {
    padding: var(--space-5xl) 0;
    background: #fafafa;
}

.reviews-section.chinese-reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.reviews-section.chinese-reviews .review-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.reviews-section.chinese-reviews .review-card::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-family: var(--font-display-modern);
    font-size: 5rem;
    color: #f0f0f0;
    line-height: 1;
}

.reviews-section.chinese-reviews .review-card__stars {
    margin-bottom: var(--space-lg);
}

.reviews-section.chinese-reviews .review-card__stars i {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-right: 2px;
}

.reviews-section.chinese-reviews .review-card__text {
    font-size: var(--text-base);
    line-height: 1.9;
    color: #555;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    font-weight: 300;
    flex-grow: 1;
}

.reviews-section.chinese-reviews .review-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: auto;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-section.chinese-reviews .review-card__avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: var(--text-lg);
}

.reviews-section.chinese-reviews .review-card__name {
    font-weight: 600;
    color: #1a1a1a;
}

.reviews-section.chinese-reviews .review-card__location {
    font-size: var(--text-sm);
    color: #888;
}

.reviews-section.chinese-reviews .review-card__type {
    font-size: var(--text-xs);
    color: #666;
    font-weight: 500;
}

/* Chinese Areas Preview */
.areas-preview.chinese-areas {
    background: #fff;
    padding: var(--space-4xl) 0;
}

.areas-preview.chinese-areas .areas-preview__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-xl);
}

.areas-preview.chinese-areas .areas-preview__header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.areas-preview.chinese-areas .areas-preview__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.areas-preview.chinese-areas .areas-preview__icon i {
    color: #1a1a1a;
    font-size: 1.5rem;
}

.areas-preview.chinese-areas h3 {
    font-family: var(--font-display-cn);
    font-size: var(--text-2xl);
    color: #1a1a1a;
    font-weight: 600;
}

.areas-preview.chinese-areas p {
    font-size: var(--text-base);
    color: #666;
}

.areas-preview__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    max-width: 800px;
}

.areas-preview__tag {
    background: #f5f5f5;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.areas-preview__tag:hover {
    background: #eee;
}

.areas-preview__tag.highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    text-decoration: none;
}

/* Chinese CTA Section */
.home-cta.chinese-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: var(--space-5xl) 0;
    text-align: center;
}

.home-cta.chinese-cta h2 {
    font-family: var(--font-display-cn);
    font-size: var(--text-3xl);
    color: #fff;
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.home-cta.chinese-cta p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-weight: 300;
}

.home-cta.chinese-cta .home-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.home-cta.chinese-cta .home-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-full);
    font-size: var(--text-lg);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-cta.chinese-cta .home-cta__phone:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Chinese Version */
@media (max-width: 992px) {
    .home-hero.chinese-hero .home-hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-hero.chinese-hero .home-hero__image {
        display: none;
    }

    .home-hero.chinese-hero .home-hero__actions {
        justify-content: center;
    }

    .features-strip.chinese-features {
        position: relative;
        z-index: 10;
    }

    .features-strip.chinese-features .features-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mike.chinese-about {
        position: relative;
        z-index: 1;
    }

    .about-mike.chinese-about .about-mike__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-mike.chinese-about .about-mike__image {
        max-width: 280px;
        margin: 0 auto;
        margin-bottom: var(--space-2xl);
        padding-bottom: 50px;
    }

    .about-mike.chinese-about .about-mike__photo {
        overflow: hidden;
        display: block;
        width: 100%;
        aspect-ratio: 3/4;
        min-height: 350px;
        background: url('../Image Assets/index3.jpeg') center top/cover;
        background-size: cover;
        background-position: center top;
    }

    .about-mike.chinese-about .about-mike__credentials {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: var(--space-md);
        z-index: 5;
    }

    .about-mike.chinese-about .about-mike__badges {
        justify-content: center;
    }

    .services-overview.chinese-services .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

    .services-overview.chinese-services .service-card {
        position: relative;
        margin: 0;
        z-index: auto;
    }

    .services-overview.chinese-services .service-card__icon {
        display: flex;
    }

    .services-overview.chinese-services .service-card__content {
        max-height: none;
        overflow: visible;
        opacity: 1;
        padding: var(--space-xl);
    }

    .services-overview.chinese-services .service-card__title {
        display: block;
    }

    .portfolio-section.chinese-portfolio .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-section.chinese-reviews .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero.chinese-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .home-hero.chinese-hero .home-hero__title {
        font-size: var(--text-3xl);
    }

    .home-hero.chinese-hero .home-hero__text {
        font-size: var(--text-base);
    }

    .home-hero.chinese-hero .home-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
        padding: var(--space-lg);
        margin-top: var(--space-xl);
    }

    .home-hero.chinese-hero .home-hero__stat-number {
        font-size: var(--text-2xl);
    }

    .features-strip.chinese-features {
        padding: var(--space-lg) 0;
    }

    .features-strip.chinese-features .features-strip__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .features-strip.chinese-features .features-strip__item {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
        padding: var(--space-lg);
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-lg);
    }

    .features-strip.chinese-features .features-strip__icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 215, 0, 0.2);
    }

    .features-strip.chinese-features .features-strip__text {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .services-overview.chinese-services .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .services-overview.chinese-services .service-card {
        position: relative;
        margin-bottom: 0;
        margin-top: 0;
        z-index: auto;
        border-radius: var(--radius-xl);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        overflow: hidden;
    }

    .services-overview.chinese-services .service-card__icon {
        display: flex;
        height: 100px;
        align-items: center;
        justify-content: center;
    }

    .services-overview.chinese-services .service-card__content {
        max-height: none;
        overflow: visible;
        opacity: 1;
        padding: var(--space-xl);
    }

    .services-overview.chinese-services .service-card__title {
        display: block;
        font-family: var(--font-display-cn);
        font-size: var(--text-lg);
        color: #1a1a1a;
        margin-bottom: var(--space-md);
        font-weight: 600;
    }

    .services-overview.chinese-services .service-card__text {
        display: block;
        font-size: var(--text-sm);
        color: #666;
        line-height: 1.8;
        margin-bottom: var(--space-lg);
    }

    .services-overview.chinese-services .service-card__link {
        display: inline-flex;
    }

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

    .section-header h2 {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .home-hero.chinese-hero {
        padding: 100px 0 50px;
    }

    .home-hero.chinese-hero .home-hero__badge {
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-md);
    }

    .home-hero.chinese-hero .home-hero__title {
        font-size: var(--text-2xl);
    }

    .home-hero.chinese-hero .home-hero__text {
        font-size: var(--text-sm);
        line-height: 1.8;
    }

    .home-hero.chinese-hero .home-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .home-hero.chinese-hero .home-hero__actions a {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .home-hero.chinese-hero .home-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .home-hero.chinese-hero .home-hero__stat-number {
        font-size: var(--text-xl);
        margin-bottom: 0;
    }

    .home-hero.chinese-hero .home-hero__stat-label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .features-strip.chinese-features .features-strip__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .features-strip.chinese-features .features-strip__item {
        padding: var(--space-md);
    }

    .features-strip.chinese-features .features-strip__icon {
        width: 45px;
        height: 45px;
    }

    .features-strip.chinese-features .features-strip__icon i {
        font-size: var(--text-lg);
    }

    .features-strip.chinese-features .features-strip__text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .about-mike.chinese-about .about-mike__content h2 {
        font-size: var(--text-2xl);
    }
}

