/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-purple: #187878;
    --primary-purple-hover: #12484a;
    --accent-yellow: #facc15;
    --accent-yellow-hover: #eab308;
    --highlight-green: #74c3c3;
    --text-dark: #0b1d20;
    --text-muted: #475569;
    --topbar-bg: #187878;
    --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) #f1f5f9;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-purple);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-purple-hover);
}

/* Fixed Demo Announcement Bar at Top */
.demo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: #0f172a;
    color: #facc15;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(250, 204, 21, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.demo-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.demo-bar strong {
    color: #ffffff;
}

/* MR-FIX Demo Bar Button */
.mrfix-btn {
    background-color: #facc15;
    color: #0b1d20;
    border: none;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.3);
}

.mrfix-btn:hover {
    background-color: #ffffff;
    color: var(--primary-purple);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.4);
}

/* MR-FIX Modal Overlay & Card */
.mrfix-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 29, 32, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mrfix-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mrfix-modal-overlay.active .mrfix-modal-card {
    transform: scale(1) translateY(0);
}

.mrfix-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 22px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mrfix-modal-close:hover {
    background: #e2e8f0;
    color: #0b1d20;
    transform: rotate(90deg);
}

.mrfix-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.mrfix-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px auto;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
    border: 3px solid #facc15;
    background-color: #0f172a;
}

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

.mrfix-modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0b1d20;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.mrfix-modal-header p {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.mrfix-modal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mrfix-contact-item {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mrfix-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.mrfix-contact-item.whatsapp:hover {
    border-color: #25D366;
    background-color: rgba(37, 211, 102, 0.05);
}

.mrfix-contact-item.instagram:hover {
    border-color: #E1306C;
    background-color: rgba(225, 48, 108, 0.05);
}

.mrfix-contact-item.gmail:hover {
    border-color: #EA4335;
    background-color: rgba(234, 67, 53, 0.05);
}

.icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 14px;
}

.mrfix-contact-item.whatsapp .icon-box {
    background-color: #25D366;
    color: #ffffff;
}

.mrfix-contact-item.instagram .icon-box {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.mrfix-contact-item.gmail .icon-box {
    background-color: #EA4335;
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.contact-info .label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.contact-info .value {
    font-size: 14px;
    font-weight: 700;
    color: #0b1d20;
}

.arrow-icon {
    font-size: 13px;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mrfix-contact-item:hover .arrow-icon {
    transform: translate(2px, -2px);
    color: #0b1d20;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: #f8fafc;
    overflow-x: hidden;
    padding-top: 36px;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--topbar-bg);
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

.top-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 700;
}

/* Header & Navigation */
.header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 76px;
    left: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.header.scrolled {
    top: 36px;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background-color: var(--primary-purple);
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

/* Mobile Toggle & Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: color 0.2s ease;
}

.mobile-toggle:hover {
    color: var(--primary-purple);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 24px 30px;
    box-shadow: 0 15px 30px rgba(11, 29, 32, 0.1);
    border-top: 1px solid #e2e8f0;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-purple);
}

.mobile-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-purple {
    background-color: var(--primary-purple);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(24, 120, 120, 0.25);
}

.btn-purple:hover {
    background-color: var(--primary-purple-hover);
    transform: translateY(-1px);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3);
}

.btn-yellow:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: 100px;
    background-image: url('images/bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 680px;
    padding: 40px 0;
}

.badge-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #1e293b;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.12;
    color: var(--text-dark);
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.5;
}

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::before {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: 8px;
    height: 44%;
    background-color: var(--highlight-green);
    border-radius: 6px 16px 8px 18px;
    z-index: -1;
    opacity: 0.95;
    transform: rotate(-1.5deg);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-social-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.hero-social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.15);
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.3s ease;
}

.hero-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-social-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.hero-social-link.facebook i {
    color: #1877f2;
    font-size: 16px;
}

.hero-social-link.instagram i {
    color: #e4405f;
    font-size: 16px;
}

.hero-social-link:hover {
    border-color: var(--primary-purple);
}

/* Bottom Left Rating Box */
.rating-card {
    background-color: #ffffff;
    padding: 24px 36px;
    border-top-right-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    align-self: flex-start;
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: #0f172a;
}

.trustpilot-icon {
    color: #00b67a;
    font-size: 20px;
}

.capterra-icon {
    color: #0096d6;
    font-size: 18px;
    transform: rotate(-30deg);
}

.stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 14px;
}

.score {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

/* Intro / About Section */
.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary-purple);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.intro-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.65;
    color: #475569;
    font-weight: 500;
}

/* Services Features Section */
.services-features {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 40px;
    text-decoration: none;
    border-right: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background-color: #f8fafc;
}

.feature-card:hover .feature-link i {
    transform: translateX(4px);
}

.feature-icon {
    margin-bottom: 28px;
    height: 52px;
    display: flex;
    align-items: center;
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    font-weight: 700;
    color: #1e1b4b;
    margin-top: auto;
    transition: gap 0.3s ease;
}

.feature-link .link-text {
    opacity: 0;
    max-width: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.feature-card:hover .feature-link {
    gap: 8px;
}

.feature-card:hover .feature-link .link-text {
    opacity: 1;
    max-width: 130px;
}

.feature-link i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

/* Who We Are / Comfort Section */
.about-comfort {
    padding: 120px 0;
    background-color: #ffffff;
}

.comfort-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Overlapping Images Layout */
.comfort-images {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.main-img {
    width: 82%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sub-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 62%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 6px solid #ffffff;
}

.sub-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Right Content */
.comfort-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.comfort-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-top: 24px;
    margin-bottom: 32px;
    max-width: 500px;
    font-weight: 500;
}

.comfort-action {
    margin-top: 8px;
}

/* What We Do Section */
.what-we-do {
    padding: 100px 0;
    background-color: #ffffff;
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 580px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #f8fafc;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.what-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 40px;
}

.what-top {
    padding-right: 20px;
    margin-bottom: 40px;
}

.what-header-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 16px;
}

.what-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    font-weight: 500;
}

.what-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 320px;
}

.what-img-card {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.what-info-card {
    background-color: var(--primary-purple);
    color: #ffffff;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.info-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.info-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.what-right {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-color: #0b1d20;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-banner iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

/* Stats & Client Logos Section */
.stats-clients {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.stats-clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center !important;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.client-logos-row {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Google Reviews Section */
.google-reviews {
    padding: 100px 0;
    background-color: #f8fafc;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.reviews-google-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    padding: 16px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.google-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rating-score-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.big-score {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.stars-gold {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 16px;
}

.verified-count {
    font-size: 13px;
    color: var(--text-muted);
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-avatar-letter {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.reviewer-avatar-letter.orange-bg {
    background-color: #e65100;
}

.reviewer-avatar-letter.brown-bg {
    background-color: #6d4c41;
}

.reviewer-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.reviewer-badge {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.reviewer-badge i {
    color: #f59e0b;
    font-size: 11px;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-stars-row .stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 15px;
}

.review-time {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.review-text {
    font-size: 15px;
    line-height: 1.65;
    color: #334155;
    font-weight: 500;
    margin-bottom: 24px;
}

.more-text.hidden {
    display: none;
}

.dots {
    display: inline;
}

.read-more-btn {
    color: #1a73e8;
    font-weight: 700;
    cursor: pointer;
    margin-left: 2px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

.verified-tag {
    font-size: 13px;
    font-weight: 700;
    color: #4285f4;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

/* Blog / Recent Posts Section */
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    justify-items: center;
}

.fb-embed-card {
    width: 100%;
    max-width: 380px;
    min-height: 590px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 29, 32, 0.06);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fb-embed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 29, 32, 0.1);
}

.fb-embed-card iframe {
    width: 100%;
    height: 100%;
    min-height: 570px;
    border: none;
    border-radius: 12px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    width: 100%;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    display: block;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
}

.blog-category {
    font-weight: 700;
    color: var(--primary-purple);
}

.blog-dot {
    color: #cbd5e1;
}

.blog-date {
    color: #64748b;
    font-weight: 500;
}

.blog-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.4px;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-title a:hover {
    color: var(--primary-purple);
}

/* Contact CTA Banner Section */
.contact-cta {
    background-color: var(--primary-purple);
    color: #ffffff;
    padding: 80px 0 0 0;
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    padding-bottom: 80px;
}

.cta-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.highlight-yellow {
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    z-index: 1;
    padding: 0 8px;
}

.highlight-yellow::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 10%;
    bottom: 10%;
    background-color: var(--accent-yellow);
    border-radius: 6px 14px 8px 16px;
    z-index: -1;
    transform: rotate(-1deg);
}

.cta-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--primary-purple);
    border-color: #ffffff;
}

.cta-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
}

/* Footer Section */
.footer {
    background-color: #0b1d20;
    color: #ffffff;
    padding: 100px 0 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    background-color: var(--primary-purple);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(24, 120, 120, 0.4);
}

.text-white {
    color: #ffffff !important;
}

.footer-copyright {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.footer-tagline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    letter-spacing: -0.8px;
    margin-bottom: 50px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

/* ============================
   RESPONSIVE — TABLET (≤992px)
   ============================ */
@media (max-width: 992px) {
    /* Nav */
    .nav-links,
    .nav-btn-wrapper {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .mobile-menu {
        display: flex;
    }

    /* Top Bar */
    .top-bar {
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 0;
    }
    .hero-container {
        padding: 0 28px;
    }
    .hero-content {
        max-width: 100%;
        padding: 32px 0 20px 0;
    }
    .hero-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }
    .badge-subtitle {
        font-size: 13px;
        letter-spacing: 1.2px;
        margin-bottom: 16px;
    }

    /* Intro */
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .intro-section {
        padding: 70px 0;
    }
    .section-title {
        font-size: 36px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card {
        border-bottom: 1px solid #e2e8f0;
    }
    .feature-card:nth-child(2n) {
        border-right: none;
    }
    .feature-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* About / Comfort */
    .comfort-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .comfort-images {
        max-width: 500px;
        margin: 0 auto;
    }
    .about-comfort {
        padding: 80px 0;
    }

    /* What We Do */
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    .what-left {
        padding: 48px 36px 0 36px;
    }
    .what-header-flex {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .what-top {
        padding-right: 0;
    }
    .video-banner {
        min-height: 360px;
    }
    .video-banner iframe {
        min-height: 360px;
    }

    /* Stats */
    .stats-clients-row {
        justify-content: center;
        gap: 32px;
    }
    .stat-number {
        font-size: 48px;
    }
    .client-logos-row {
        justify-content: center;
        gap: 28px;
    }

    /* Reviews */
    .google-reviews {
        padding: 80px 0;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 36px;
    }

    /* Blog */
    .blog-section {
        padding: 80px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .cta-content {
        padding-bottom: 0;
        text-align: center;
    }
    .cta-title {
        font-size: 40px;
    }
    .cta-desc {
        max-width: 100%;
    }
    .cta-actions {
        justify-content: center;
    }
    .cta-image {
        justify-content: center;
    }
    .cta-image img {
        max-height: 360px;
    }

    /* Footer */
    .footer {
        padding: 80px 0 50px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-left {
        min-height: auto;
        gap: 24px;
    }
    .footer-tagline {
        font-size: 26px;
    }
}

/* ============================
   RESPONSIVE — MOBILE (≤640px)
   ============================ */
@media (max-width: 640px) {
    /* Container */
    .container {
        padding: 0 16px;
    }

    /* Top Bar */
    .top-bar {
        font-size: 12px;
        padding: 8px 12px;
    }
    .top-bar-flex {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .top-bar p {
        gap: 5px;
        flex-wrap: wrap;
    }

    /* Top Demo Bar Mobile */
    .demo-bar {
        font-size: 11px;
        height: 34px;
        padding: 0 8px;
    }

    /* Header */
    .header {
        top: 68px;
        padding: 14px 0;
    }
    .header.scrolled {
        top: 34px;
        padding: 10px 0;
    }
    .logo-img {
        height: 36px;
    }
    .logo-text {
        font-size: 18px;
    }
    .mobile-toggle {
        font-size: 22px;
        padding: 10px;
    }
    .mobile-menu {
        padding: 20px 16px;
        gap: 16px;
    }
    .mobile-nav-links {
        gap: 14px;
    }
    .mobile-nav-links a {
        font-size: 16px;
        padding: 6px 0;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 100px;
        padding-bottom: 40px;
        background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('images/bg.png');
        background-position: 75% center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-container {
        padding: 0 20px;
        display: flex;
        align-items: center;
        flex: 1;
    }
    .hero-content {
        max-width: 100%;
        padding: 20px 0;
    }
    .badge-subtitle {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 14px;
    }
    .hero-title {
        font-size: 30px;
        letter-spacing: -1px;
        margin-bottom: 12px;
        line-height: 1.18;
    }
    .hero-tagline {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.45;
    }
    .highlight::before {
        bottom: 4px;
        height: 38%;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hero-social {
        margin-top: 20px;
        justify-content: flex-start;
        gap: 10px;
    }
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        border-radius: 50px;
    }

    /* Rating Card */
    .rating-card {
        flex-direction: column;
        gap: 16px;
        align-self: stretch;
        border-radius: 16px;
        padding: 20px 24px;
        margin-top: 24px;
    }
    .rating-brand {
        font-size: 16px;
    }
    .stat-number {
        font-size: 40px;
    }

    /* Intro Section */
    .intro-section {
        padding: 48px 0;
        text-align: center;
    }
    .intro-left,
    .intro-right {
        text-align: center;
    }
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .section-title {
        font-size: 26px;
        letter-spacing: -0.8px;
    }
    .intro-text {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Features Grid — 2 per row, centered */
    .services-features {
        padding: 10px 0;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card {
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        padding: 20px 12px;
        align-items: center;
        text-align: center;
    }
    .feature-card:nth-child(2n) {
        border-right: none;
    }
    .feature-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
    .feature-icon {
        margin-bottom: 16px;
    }
    .feature-icon svg {
        width: 38px;
        height: 38px;
    }
    .feature-title {
        font-size: 16px;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
    }
    .feature-link {
        justify-content: center;
        font-size: 12px;
    }
    .feature-link .link-text {
        display: none;
    }

    /* About / Comfort Section */
    .about-comfort {
        padding: 48px 0;
        text-align: center;
    }
    .comfort-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .comfort-content {
        display: contents;
    }
    .comfort-content .section-subtitle {
        order: 1;
    }
    .comfort-content .section-title {
        order: 2;
        text-align: center;
    }
    .comfort-images {
        order: 3;
        padding-bottom: 36px;
        padding-right: 16px;
        max-width: 100%;
        margin: 10px auto;
    }
    .main-img {
        width: 85%;
        border-radius: 16px;
    }
    .main-img img {
        height: 240px;
    }
    .sub-img {
        width: 65%;
        border-radius: 16px;
        border-width: 4px;
    }
    .sub-img img {
        height: 170px;
    }
    .comfort-description {
        order: 4;
        font-size: 15px;
        margin-top: 0;
        margin-bottom: 20px;
        max-width: 100%;
        text-align: center;
    }
    .comfort-action {
        order: 5;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .comfort-action .btn {
        width: 100%;
        max-width: 320px;
    }

    /* What We Do — Full Mobile Redesign */
    .what-we-do {
        padding: 48px 0;
    }
    .what-we-do-grid {
        display: flex;
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    .what-left {
        display: contents;
    }
    .what-top {
        order: 1;
        margin-bottom: 24px;
        padding-right: 0;
        text-align: center;
    }
    .what-header-flex {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
    }
    .what-desc {
        font-size: 14px;
        line-height: 1.55;
        text-align: center;
    }
    .what-img-card {
        display: none !important;
    }
    /* Combined Single Card on Mobile */
    .what-right {
        order: 2;
        padding: 0;
        border-radius: 18px 18px 0 0;
        overflow: hidden;
    }
    .video-banner {
        min-height: 320px;
        border-radius: 18px 18px 0 0;
        overflow: hidden;
    }
    .video-banner iframe {
        min-height: 320px;
        border-radius: 18px 18px 0 0;
    }
    .what-bottom-grid {
        order: 3;
        grid-template-columns: 1fr;
        height: auto;
        border-radius: 0 0 18px 18px;
        overflow: hidden;
        margin-top: 0;
        box-shadow: 0 10px 30px rgba(11, 29, 32, 0.08);
    }
    .what-info-card {
        padding: 28px 20px;
        gap: 20px;
        border-radius: 0 0 18px 18px;
    }
    .info-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .info-text {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Stats & Client Logos */
    .stats-clients {
        padding: 40px 0;
    }
    .stats-clients-row {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
    .stat-block {
        align-items: center;
    }
    .stat-number {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .stat-label {
        font-size: 14px;
    }
    .client-logos-row {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .client-logo svg {
        width: 120px;
        height: 28px;
    }

    /* Google Reviews */
    .google-reviews {
        padding: 48px 0;
    }
    .reviews-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 28px;
    }
    .reviews-header-left {
        text-align: center;
    }
    .reviews-google-badge {
        padding: 12px 20px;
        border-radius: 14px;
        gap: 12px;
    }
    .big-score {
        font-size: 20px;
    }
    .stars-gold {
        font-size: 14px;
    }
    .review-card {
        padding: 24px 20px;
        border-radius: 16px;
    }
    .reviewer-avatar {
        width: 44px;
        height: 44px;
    }
    .reviewer-name {
        font-size: 15px;
    }
    .reviewer-badge {
        font-size: 11px;
    }
    .review-stars-row .stars {
        font-size: 13px;
    }
    .review-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
    .verified-tag {
        font-size: 12px;
    }

    /* Blog Section */
    .blog-section {
        padding: 48px 0;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .blog-img-wrapper {
        height: 200px;
        border-radius: 14px;
        margin-bottom: 14px;
    }
    .blog-meta {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .blog-title {
        font-size: 17px;
    }

    /* Contact CTA Banner */
    .contact-cta {
        padding: 48px 0 0 0;
    }
    .cta-grid {
        gap: 24px;
    }
    .cta-content {
        text-align: center;
        padding-bottom: 0;
    }
    .cta-subtitle {
        font-size: 12px;
    }
    .cta-title {
        font-size: 28px;
        letter-spacing: -0.8px;
        line-height: 1.2;
    }
    .cta-desc {
        font-size: 15px;
        margin-bottom: 28px;
        max-width: 100%;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .cta-image img {
        max-height: 280px;
    }

    /* Footer */
    .footer {
        padding: 48px 0 32px 0;
    }
    .footer-grid {
        gap: 36px;
    }
    .footer-left {
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    .footer-logo {
        justify-content: center;
    }
    .footer-copyright {
        font-size: 13px;
    }
    .footer-right {
        text-align: center;
    }
    .footer-tagline {
        font-size: 22px;
        margin-bottom: 32px;
    }
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        text-align: center;
    }
    .footer-col-title {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .footer-nav {
        align-items: center;
        gap: 10px;
    }
    .footer-nav a {
        font-size: 13px;
    }
}

/* ============================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ============================ */
@media (max-width: 400px) {
    .hero-title {
        font-size: 26px;
    }
    .section-title {
        font-size: 23px;
    }
    .feature-card {
        padding: 16px 8px;
    }
    .feature-title {
        font-size: 14px;
    }
    .feature-icon svg {
        width: 32px;
        height: 32px;
    }
    .cta-title {
        font-size: 24px;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-grid {
        gap: 20px;
    }
    .stat-number {
        font-size: 30px;
    }
}