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

:root {
    --primary-color: #0ea5e9;
    --secondary-color: #0284c7;
    --accent-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8f9fb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
    --navy: #ffffff;
    --navy-light: #f0f9ff;
    --navy-mid: #e0f2fe;
    --teal: #0ea5e9;
    --purple: #7c3aed;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.875rem 0;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 8px rgba(14,165,233,0.06);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-item a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    transition: all 0.2s;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-item a:hover {
    color: var(--teal);
    background: rgba(14,165,233,0.06);
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 60%;
}

.nav-item a.active {
    color: var(--teal);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    transition: color 0.2s;
}

.phone-link:hover {
    color: var(--teal);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(14,165,233,0.3);
    white-space: nowrap;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(14,165,233,0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #4b5563;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, #f0f9ff 0%, #faf5ff 55%, #f0fdf4 100%);
    position: relative;
    padding: 5rem 0 0;
    overflow: hidden;
}

/* Dot grid background */
.hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(14,165,233,0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Ambient glow blobs */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.18);
    top: -150px;
    left: -100px;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(124, 58, 237, 0.1);
    bottom: 0;
    right: -50px;
}

/* Layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left content */
.hero-left {
    padding: 2rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14,165,233,0.1);
    border: 1px solid rgba(14,165,233,0.35);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(14,165,233,0.6); }
    50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(14,165,233,0); }
}

.hero-left h1 {
    font-size: 3.4rem;
    line-height: 1.18;
    color: #0f172a;
    margin-bottom: 1.25rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-highlight {
    display: block;
    background: linear-gradient(90deg, var(--teal) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-left p {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(14,165,233,0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(14,165,233,0.5);
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.btn-hero-ghost:hover {
    background: #f8fafc;
    border-color: var(--teal);
    color: var(--teal);
}

.play-icon {
    width: 28px;
    height: 28px;
    background: rgba(14,165,233,0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal);
}

/* Trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: -8px;
}

.trust-avatars .avatar-circle:first-child {
    margin-left: 0;
}

.trust-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.trust-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.trust-info span {
    font-size: 0.8rem;
    color: #64748b;
}

.trust-info strong {
    color: #0f172a;
}

/* Right side - circular image + floating cards */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0 4rem;
}

.hero-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-svg-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(14,165,233,0.15));
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 32px rgba(14,165,233,0.12), 0 2px 8px rgba(0,0,0,0.06);
    animation: float-card 3s ease-in-out infinite;
    white-space: nowrap;
    z-index: 2;
}

.float-card-icon {
    font-size: 1.4rem;
}

.float-card-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.float-card-info strong {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
}

.float-card-info span {
    color: #94a3b8;
    font-size: 0.75rem;
}

.float-card-top {
    top: 5%;
    left: -10px;
    animation-delay: 0s;
}

.float-card-bottom {
    bottom: 8%;
    left: -10px;
    animation-delay: 1s;
}

.float-card-side {
    top: 42%;
    right: -10px;
    animation-delay: 0.5s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero illustration */
.hero-illustration {
    width: 100%;
    height: 100%;
    display: block;
}

/* Scattered background decorations */
.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hdeco {
    position: absolute;
}

.hdeco-1 { width: 44px; top: 8%; left: 6%; animation: hdeco-float 5s ease-in-out infinite; }
.hdeco-2 { width: 28px; top: 14%; left: 32%; animation: hdeco-float 4s ease-in-out infinite 0.8s; }
.hdeco-3 { width: 56px; top: 22%; right: 8%; animation: hdeco-float 6s ease-in-out infinite 0.3s; }
.hdeco-4 { width: 36px; top: 55%; right: 4%; animation: hdeco-float 4.5s ease-in-out infinite 1.2s; }
.hdeco-5 { width: 48px; bottom: 20%; left: 4%; animation: hdeco-float 5.5s ease-in-out infinite 0.6s; }
.hdeco-6 { width: 32px; top: 40%; left: 14%; animation: hdeco-spin 12s linear infinite; }
.hdeco-7 { width: 22px; bottom: 30%; right: 12%; animation: hdeco-float 3.8s ease-in-out infinite 1.5s; }
.hdeco-8 { width: 64px; bottom: 12%; right: 30%; animation: hdeco-spin 18s linear infinite reverse; }
.hdeco-9 { width: 26px; top: 72%; left: 25%; animation: hdeco-spin 10s linear infinite 0.4s; }

@keyframes hdeco-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes hdeco-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Wave divider */
.hero-wave {
    position: relative;
    bottom: -1px;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.hero-wave path {
    fill: #ffffff;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-link {
    background-color: transparent;
    color: var(--text-color);
    padding: 0.875rem 0;
    font-weight: 500;
}

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

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 120px;
    height: 120px;
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* No Comparison Section */
.no-comparison {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.comparison-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.comparison-header p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.video-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 16px;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    opacity: 0.9;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 8px 24px rgba(14, 165, 233, 0.3));
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Professional Services Section */
.professional-services {
    padding: 5rem 2rem;
    background: #ffffff;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    max-width: 500px;
}

.explore-link {
    font-size: 0.95rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.explore-link:hover {
    color: #0ea5e9;
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.professional-card {
    text-align: center;
    padding: 1.5rem;
}

.professional-img-wrap {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.professional-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.professional-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.professional-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Coverage Areas Section */
.coverage-areas {
    padding: 5rem 2rem;
    background: #f8fafc;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.house-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.coverage-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.coverage-right > p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.area-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.area-item span {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 500;
}

/* Quote Request Section */
.quote-request {
    padding: 5rem 2rem;
    background: #ffffff;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.quote-left > p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.call-box svg {
    flex-shrink: 0;
}

.call-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.call-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
}

.not-convinced h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.not-convinced p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.browse-link {
    font-size: 0.95rem;
    color: #0ea5e9;
    text-decoration: underline;
}

.quote-form {
    background: #ffffff;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Pre-Footer Section */
.pre-footer {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.pre-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #dbeafe;
}

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

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
    line-height: 1.5;
}

.contact-item a:hover {
    color: #0ea5e9;
}

.hours-item {
    margin-bottom: 1rem;
}

.hours-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.hours-item span {
    font-size: 0.9rem;
    color: #64748b;
}

.estimate-phone {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0ea5e9;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.estimate-phone:hover {
    color: #0284c7;
}

.services-preview,
.why-choose-us,
.services-detail,
.about-content,
.contact-section {
    padding: 4rem 2rem;
}

.services-preview h2,
.why-choose-us h2,
.about-content h2,
.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cta {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-detail-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-detail-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: left;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-intro h2 {
    margin-bottom: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.about-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-box ul {
    list-style: none;
    padding-left: 0;
}

.about-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.company-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-info h2 {
    text-align: left;
    margin-bottom: 2rem;
}

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

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li,
.footer-hours li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-links a,
.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links li {
    transition: transform 0.2s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #0ea5e9;
}

.footer-contact li:hover svg {
    color: #0ea5e9;
}

.footer-contact span {
    color: rgba(255,255,255,0.7);
}

.footer-hours li {
    color: rgba(255,255,255,0.7);
}

.footer-hours strong {
    color: white;
    font-weight: 600;
}

.company-uen {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-left {
        padding-bottom: 2rem;
        text-align: center;
    }

    .hero-left p {
        max-width: 100%;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-right {
        justify-content: center;
        padding: 2rem 0 0;
    }

    .hero-left h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: relative;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.875rem);
        left: 0;
        right: 0;
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        flex-direction: column;
        padding: 0.5rem;
        border-radius: 12px;
        display: none;
        gap: 0;
        box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item a {
        padding: 0.65rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }

    .nav-item a::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .hero-img-wrap {
        max-width: 380px;
    }

    .float-card-top { left: 0; top: 2%; }
    .float-card-bottom { left: 0; bottom: 4%; }
    .float-card-side { right: 0; }

    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .service-detail-content h2 {
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 0;
    }

    .hero-left h1 {
        font-size: 1.9rem;
    }

    .hero-img-wrap {
        max-width: 300px;
    }

    .float-card {
        display: none;
    }

    .services-preview,
    .why-choose-us,
    .services-detail,
    .about-content,
    .contact-section {
        padding: 3rem 1rem;
    }

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