/* Manrope Font Face Declarations */
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.woff2') format('woff2'),
         url('../fonts/Manrope-Light.woff') format('woff'),
         url('../fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2'),
         url('../fonts/Manrope-Regular.woff') format('woff'),
         url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.woff2') format('woff2'),
         url('../fonts/Manrope-Medium.woff') format('woff'),
         url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.woff2') format('woff2'),
         url('../fonts/Manrope-SemiBold.woff') format('woff'),
         url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
         url('../fonts/Manrope-Bold.woff') format('woff'),
         url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-ExtraBold.woff2') format('woff2'),
         url('../fonts/Manrope-ExtraBold.woff') format('woff'),
         url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: fallback;
}

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

:root {
    --header-height: 60px;
    --sticky-offset: 0px;
}

html {
    background-color: #ffffff;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    position: relative;
    height: auto;
    /* Prevent layout shift from sticky header */
    padding-top: 0;
}

/* Base H1 styles - Fixes H1UserAgentFontSizeInSection Lighthouse warning */
/* Explicit font-size ensures consistent rendering across browsers */
h1 {
    margin-block: 0.67em;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    padding: 0 0 40px;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

@media (min-width: 1921px) {
    .container {
        padding: 0 0 40px;
    }
}

/* Header Styles - Sticky header outside container */
header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
    box-shadow: none;
    box-sizing: border-box;
    /* Prevent layout shift - stable height prevents jumping */
    min-height: 80px;
}

/* Sticky header layout */
body.sticky-header-enabled {
    padding-top: calc(var(--header-height, 0px) + var(--sticky-offset, 0px));
}

body.sticky-header-enabled header.sticky-enabled {
    position: fixed;
    top: var(--sticky-offset, 0px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

/* Non-sticky header option - only apply when explicitly disabled */
body.header-not-sticky header,
header.sticky-disabled {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

header .header-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 80px;
    gap: 20px;
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    transition: padding 0.3s ease;
    min-height: 60px;
}

@media (min-width: 1921px) {
    header .header-wrapper {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

/* Header shadow on scroll - will be enhanced with JS */
header.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

header.scrolled .header-wrapper {
    padding-top: 12px;
    padding-bottom: 12px;
    min-height: 60px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    align-items: center;
    height: auto;
}

/* SVG Logo Styling */
.logo-svg {
    display: flex;
    align-items: center;
    height: auto;
    max-height: 60px;
}

.logo-svg svg {
    width: auto;
    height: 40px;
    max-width: 200px;
    display: block;
}

.logo-svg img.custom-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo img.custom-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-svg a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo-svg svg.logo-svg-inline {
    display: block;
}

nav {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    background-color: #f0ffff;
    padding: 2px;
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Remove nav background on service single page */
.service-single-page header nav {
    background-color: transparent;
}

/* Hide WordPress's ul/li wrapper - make them invisible using display: contents */
nav ul,
nav ul.main-menu,
nav ul#primary-menu,
nav > ul {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li,
nav > ul > li {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* All direct children of nav (or children of li) should be inline */
nav > *,
nav ul > li > *,
nav > ul > li > * {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

nav a {
    text-decoration: none;
    color: #2d2d2d;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    position: relative;
    /* Stacking context so ::before (z-index: -1) stays above nav/header paint — avoids “invisible” white hover text */
    z-index: 0;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #01737b 0%, #00A4A3 100%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    z-index: -1;
}

nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

nav a:hover {
    color: #ffffff;
    transform: translateY(-1px);
    /* Solid fallback if gradient pseudo is clipped in some browsers */
    background-color: #01737b;
}

nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}

nav a:hover::after {
    width: 200px;
    height: 200px;
}

nav a.active,
nav a.dropdown-toggle.active,
nav a.submenu-toggle.active {
    background-color: #01737b;
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 115, 122, 0.3);
}

nav a.active::before,
nav a.dropdown-toggle.active::before,
nav a.submenu-toggle.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Active state for dropdown / flyout items — full-width band, solid brand color (matches nav pills) */
nav .dropdown-menu a.active,
nav .submenu a.active {
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: #01737b !important;
    color: #ffffff !important;
    font-weight: 600;
    border-left: none;
    padding-left: 20px;
    transform: none;
}

/* Remove top-nav pill gradient + ripple from dropdown active links */
nav .dropdown-menu a.active::before,
nav .dropdown-menu a.active::after,
nav .submenu a.active::before,
nav .submenu a.active::after {
    display: none !important;
}

nav .dropdown-menu a.active:hover,
nav .submenu a.active:hover {
    background-color: #015a62 !important;
    color: #ffffff !important;
    padding-left: 20px !important;
}

/* Active state for parent items when child is active */
.nav-dropdown.current-menu-item .dropdown-toggle,
.nav-dropdown.current-menu-ancestor .dropdown-toggle,
.nav-dropdown.current-menu-parent .dropdown-toggle,
.dropdown-item-with-submenu.current-menu-item .submenu-toggle,
.dropdown-item-with-submenu.current-menu-ancestor .submenu-toggle,
.dropdown-item-with-submenu.current-menu-parent .submenu-toggle {
    background-color: #01737b;
    color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 115, 122, 0.3);
}

.nav-dropdown {
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.dropdown-arrow svg {
    width: 12px;
    height: 12px;
    display: block;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: visible;
    display: block;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 14px;
    border-radius: 0;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
}

/* Ensure dropdown menu items with submenus are positioned correctly */
.dropdown-menu .dropdown-item-with-submenu {
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #01737b;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

/* Hover: same brand hue as pills/active row (not the old pale #f0ffff) */
.dropdown-menu a:not(.active):hover {
    background-color: rgba(1, 115, 123, 0.22);
    color: #01737b;
    padding-left: 24px;
}

.dropdown-menu a:not(.active):hover::before {
    transform: scaleY(1);
}

.dropdown-item-with-submenu {
    position: relative;
    overflow: visible;
}

.submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    gap: 8px;
    text-align: left;
}

.submenu-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.submenu-arrow svg {
    width: 10px;
    height: 10px;
    display: block;
}

.dropdown-item-with-submenu:hover .submenu-arrow {
    transform: rotate(-90deg);
}

/* Submenu (third level) - matches original index.html structure */
.submenu {
    position: absolute;
    top: 0;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    min-width: 220px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

/* Position submenu to the right by default */
.submenu.submenu-right {
    left: 100%;
    margin-left: 12px;
    transform: translateX(-10px);
}

/* Position submenu to the left */
.submenu.submenu-left {
    right: 100%;
    left: auto;
    margin-right: 12px;
    margin-left: 0;
    transform: translateX(10px);
}

.dropdown-item-with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-item-with-submenu:hover .submenu.submenu-left {
    transform: translateX(0);
}

/* Arrow rotation for right-positioned submenu */
.dropdown-item-with-submenu:hover .submenu-arrow {
    transform: rotate(-90deg);
}

/* Arrow rotation for left-positioned submenu */
.dropdown-item-with-submenu.submenu-position-left:hover .submenu-arrow {
    transform: rotate(90deg);
}

/* Submenu links */
.dropdown-menu .sub-menu a,
.submenu a {
    display: block;
    padding: 12px 20px;
    color: #2d2d2d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

/* Third level and deeper submenu links */
.dropdown-item-with-submenu > .sub-menu a {
    padding: 12px 24px;
}

/* Support for nested submenu items */
.dropdown-item-with-submenu .dropdown-item-with-submenu {
    position: relative;
    overflow: visible;
}

/* Nested submenu positioning */
.dropdown-item-with-submenu > .sub-menu .dropdown-item-with-submenu > .sub-menu {
    margin-top: -12px;
}

/* Ensure dropdown menu maintains structure with nested items */
.dropdown-menu > .dropdown-item-with-submenu > .submenu-toggle {
    width: 100%;
}

/* Prevent layout collapse - ensure proper display */
.nav-dropdown,
.dropdown-menu,
.submenu {
    box-sizing: border-box;
}

/* Reset WordPress default list styles */
nav ul,
nav li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu ul,
.dropdown-menu li,
.submenu ul,
.submenu li,
.submenu-list ul,
.submenu-list li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.dropdown-item-with-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

/* Dropdown menu structure - matches original index.html */
/* All items inside dropdown-menu are direct children (a tags or dropdown-item-with-submenu divs) */

/* Submenu link hover effects - matches original */
.submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #01737b;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.submenu a:not(.active):hover {
    background-color: rgba(1, 115, 123, 0.22);
    color: #01737b;
    padding-left: 28px;
}

.submenu a:not(.active):hover::before {
    transform: scaleY(1);
}

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

/* Modern button styles - same height for both buttons */
.phone-btn,
.book-btn {
    height: 44px;
    padding: 0 20px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: none;
    position: relative;
    overflow: hidden;
}

.phone-btn {
    background-color: #ffffff;
    color: #2d2d2d;
    border: 1.5px solid #e5e5e5;
}

.phone-btn svg,
.phone-btn .phone-icon-btn {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #2d2d2d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-btn:hover {
    background-color: #f8f9fa;
    border-color: #01737b;
    color: #01737b;
    box-shadow: 0 4px 12px rgba(0, 115, 122, 0.15);
    transform: translateY(-1px);
}

.phone-btn:hover svg,
.phone-btn:hover .phone-icon-btn {
    transform: scale(1.1);
    color: #01737b;
}

.phone-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 115, 122, 0.2);
}

.book-btn {
    background: linear-gradient(135deg, #01737b 0%, #00A4A3 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 115, 122, 0.25);
}

.book-btn svg,
.book-btn .book-icon-btn {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.book-btn span {
    position: relative;
    z-index: 1;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00A4A3 0%, #01737b 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.book-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 115, 122, 0.35);
    transform: translateY(-2px);
}

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

.book-btn:hover svg,
.book-btn:hover .book-icon-btn {
    transform: scale(1.1) rotate(5deg);
}

.book-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 115, 122, 0.3);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: #01737b;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 115, 122, 0.2);
}

.mobile-menu-toggle:hover {
    background-color: #006F77;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 115, 122, 0.3);
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2.5px;
    background-color: #ffffff;
    display: block;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

.mobile-menu {
    display: none;
}

@media (max-width: 600px) {
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #f0ffff;
        z-index: 1000;
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        background: #f0ffff;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-logo {
        font-size: 20px;
        font-weight: 700;
        color: #2d2d2d;
        letter-spacing: 0.5px;
    }

    .mobile-menu-close {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-close:active {
        opacity: 0.7;
    }

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

    .mobile-menu-close svg path {
        stroke: #2d2d2d;
        stroke-width: 2;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
        align-items: center;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #2d2d2d;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.2s ease;
        background-color: #ffffff;
        border-radius: 10px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 320px;
        -webkit-tap-highlight-color: transparent;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .mobile-nav a:active {
        transform: scale(0.98);
    }

    .mobile-nav a.active {
        color: #ffffff;
        font-weight: 600;
        background: #01737b;
    }

    .mobile-nav a.mobile-book-link {
        color: #ffffff;
        font-weight: 500;
        background-color: #01737b;
        justify-content: center;
        border-radius: 10px;
        border: 2px solid transparent;
        margin-top: 8px;
        padding: 12px 20px;
        font-size: 15px;
        transition: all 0.2s ease;
        position: relative;
        overflow: hidden;
    }

    .mobile-nav a.mobile-book-link::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        border-radius: 12px;
        background: conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 350deg,
            #84CFD5 352deg,
            #01737b 354deg,
            #84CFD5 356deg,
            transparent 360deg
        );
        animation: rotateBorderLine 3s linear infinite;
        z-index: -1;
    }

    .mobile-nav a.mobile-book-link::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        bottom: 2px;
        background: #01737b;
        border-radius: 8px;
        z-index: -1;
    }

    .mobile-nav a.mobile-book-link:active {
        background-color: #00A4A3;
    }

    .mobile-nav a.mobile-book-link:active::after {
        background: #00A4A3;
    }

    .mobile-nav-dropdown {
        position: relative;
        width: 100%;
        max-width: 320px;
    }

    .mobile-dropdown-toggle {
        cursor: pointer;
    }

    .mobile-dropdown-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .mobile-dropdown-arrow svg {
        width: 14px;
        height: 14px;
        display: block;
    }

    .mobile-dropdown-arrow svg path {
        stroke: #2d2d2d;
        stroke-width: 2;
        fill: none;
    }

    .mobile-nav-dropdown.active .mobile-dropdown-arrow {
        transform: rotate(90deg);
    }

    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-top: 0;
        padding-left: 0;
    }

    .mobile-nav-dropdown.active .mobile-dropdown-menu {
        max-height: 1000px;
        padding-top: 8px;
        padding-left: 20px;
    }

    .mobile-dropdown-menu a {
        font-size: 14px;
        padding: 12px 20px;
        color: #2d2d2d;
        transition: all 0.2s ease;
        background: #ffffff;
        border-radius: 10px;
        font-weight: 500;
        width: 100%;
        max-width: 320px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .mobile-dropdown-menu a:active {
        transform: scale(0.98);
    }

    .mobile-dropdown-item-with-submenu {
        position: relative;
        width: 100%;
        max-width: 320px;
    }

    .mobile-submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }

    .mobile-submenu-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }

    .mobile-submenu-arrow svg {
        width: 10px;
        height: 10px;
        display: block;
    }

    .mobile-submenu-arrow svg path {
        stroke: #2d2d2d;
        stroke-width: 2;
        fill: none;
    }

    .mobile-dropdown-item-with-submenu.active .mobile-submenu-arrow {
        transform: rotate(90deg);
    }

    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-top: 0;
        padding-left: 0;
    }

    .mobile-dropdown-item-with-submenu.active .mobile-submenu {
        max-height: 500px;
        padding-top: 8px;
        padding-left: 20px;
    }

    .mobile-submenu a {
        font-size: 13px;
        padding: 10px 20px;
        color: #2d2d2d;
        transition: all 0.2s ease;
        position: relative;
        background: #ffffff;
        border-radius: 10px;
        font-weight: 500;
        width: 100%;
        max-width: 320px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .mobile-submenu a:active {
        transform: scale(0.98);
    }
}

/* New Hero Section - Renamed classes to avoid conflicts */
:root {
    --nh-brand-color: #073f3f;
    --nh-teal-light: #06b6a4;
    --nh-teal-dark: #0e7f78;
    --nh-teal-bg: #06b6a4;
    --nh-teal-card: #0e7f78;
    --nh-radius: 24px;
    --nh-max-w: 1280px;
}

/* Top text - part of hero section */
.nh-top-text {
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--nh-teal-light);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
}

.nh-top-text-right {
    display: flex;
    gap: 24px;
}

/* Hero section - Full width */
.nh-wrap {
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    width: 100%;
    overflow: visible;
    background: #fff;
}


/* White background for top section */
.nh-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: calc(100vh - 450px);
    max-height: 300px;
    min-height: 250px;
    z-index: 2;
}

/* Teal background block with gradient for lower section */
.nh-bg {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: linear-gradient(to right, #02717a 0%, #02b9b6 100%);
    border-radius: var(--nh-radius);
    height: calc(100vh - 350px);
    max-height: 400px;
    min-height: 350px;
    width: calc(100% - 48px);
    z-index: 1;
    overflow: visible;
    will-change: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Brand name positioned in white top section - full width */
.nh-brand-overlay {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    font-size: 11rem;
    font-weight: 700;
    color: var(--nh-brand-color);
    letter-spacing: 0.15em;
    line-height: 0.9;
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
}

/* Left copy text - positioned at bottom of background with padding */
.nh-copy {
    position: absolute;
    left: 30px;
    bottom: 54px;
    max-width: 300px;
    width: calc(25% - 20px);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    z-index: 4;
    margin-left: 30px;
}

/* Hero image centered, bottom starting from background color section */
.nh-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    width: 650px;
    max-width: 50%;
    max-height: calc(100vh - 100px);
    z-index: 5;
    pointer-events: none;
}

.nh-image img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 100px);
    object-fit: contain;
    display: block;
    object-position: bottom center;
}

/* Rating card wrapper - positioned at bottom of background with padding */
.nh-rating-wrapper {
    position: absolute;
    right: 30px;
    bottom: 54px;
    z-index: 6;
    max-width: calc(25% - 20px);
    margin-right: 30px;
}

/* Rating card - light cyan background */
.nh-rating-card {
    position: relative;
    background: #dbffff;
    border-radius: var(--nh-radius);
    padding: 20px 24px;
    width: 320px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nh-rating-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.nh-avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.nh-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.nh-avatars img:first-child {
    margin-left: 0;
}

.nh-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.nh-avatar:first-child {
    margin-left: 0;
}

.nh-avatar--one {
    background: linear-gradient(135deg, #84CFD5 0%, #00A4A3 100%);
}

.nh-avatar--two {
    background: linear-gradient(135deg, #FFA07A 0%, #FF6B6B 100%);
}

.nh-avatar--three {
    background: linear-gradient(135deg, #A388EB 0%, #6458F5 100%);
}

.nh-g-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 2px;
}

.nh-g-circle svg {
    width: 100%;
    height: 100%;
}

.nh-trustpilot-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 4px;
}

.nh-trustpilot-circle svg {
    width: 100%;
    height: 100%;
}

.nh-arrow-circle {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 7;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.nh-arrow-circle:hover {
    transform: scale(1.05);
}

.nh-arrow-circle svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.nh-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--nh-brand-color);
    margin-bottom: 8px;
    line-height: 1;
}

.nh-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--nh-brand-color);
}

/* SEO heading - hidden on desktop, visible on mobile */
.nh-seo-heading {
    display: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* New Hero Responsive Styles */
@media (min-width: 1400px) {
    .nh-wrap {
        min-height: 100vh;
    }
    .nh-brand-overlay {
        font-size: 14rem;
        letter-spacing: 0.15em;
        top: 50px;
    }
    .nh-bg {
        height: calc(100vh - 380px);
        max-height: 480px;
        min-height: 420px;
        left: 40px;
        right: 40px;
        bottom: 40px;
        width: calc(100% - 80px);
        overflow: visible;
    }
    .nh-top {
        height: calc(100vh - 520px);
        max-height: 340px;
        min-height: 300px;
    }
    .nh-image {
        width: 800px;
        max-width: 50%;
        bottom: 75px;
        top: auto;
    }
    .nh-image img {
        max-height: 100%;
        object-position: bottom center;
    }
    .nh-copy {
        left: 40px;
        max-width: 300px;
        width: calc(25% - 20px);
        font-size: 1.15rem;
        bottom: 70px;
        margin-left: 40px;
    }
    .nh-rating-wrapper {
        right: 40px;
        bottom: 70px;
        max-width: calc(25% - 20px);
        margin-right: 40px;
    }
    .nh-rating-card {
        width: 100%;
        max-width: 360px;
        padding: 26px 30px;
    }
    .nh-score {
        font-size: 3rem;
    }
    .nh-desc {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .nh-wrap {
        min-height: 100vh;
    }
    .nh-brand-overlay {
        font-size: 13rem;
        letter-spacing: 0.15em;
        top: 50px;
    }
    .nh-bg {
        height: calc(100vh - 380px);
        max-height: 450px;
        min-height: 400px;
        left: 30px;
        right: 30px;
        bottom: 30px;
        width: calc(100% - 60px);
        overflow: visible;
    }
    .nh-top {
        height: calc(100vh - 500px);
        max-height: 320px;
        min-height: 280px;
    }
    .nh-image {
        width: 750px;
        max-width: 50%;
        bottom: 30px;
        top: auto;
    }
    .nh-image img {
        max-height: 100%;
        object-position: bottom center;
    }
    .nh-image img {
        object-position: bottom center;
    }
    .nh-copy {
        left: 30px;
        max-width: 320px;
        width: calc(25% - 20px);
        font-size: 1.1rem;
        bottom: 60px;
        margin-left: 30px;
    }
    .nh-rating-wrapper {
        right: 30px;
        bottom: 60px;
        max-width: calc(25% - 20px);
        margin-right: 30px;
    }
    .nh-rating-card {
        width: 100%;
        max-width: 340px;
        padding: 24px 28px;
    }
    .nh-score {
        font-size: 2.8rem;
    }
    .nh-desc {
        font-size: 0.85rem;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .nh-wrap {
        min-height: 100vh;
    }
    .nh-brand-overlay {
        font-size: 10rem;
        letter-spacing: 0.12em;
        top: 40px;
    }
    .nh-bg {
        height: calc(100vh - 350px);
        max-height: 400px;
        min-height: 350px;
        left: 24px;
        right: 24px;
        bottom: 24px;
        width: calc(100% - 48px);
        overflow: visible;
    }
    .nh-top {
        height: calc(100vh - 450px);
        max-height: 300px;
        min-height: 250px;
    }
    .nh-image {
        width: 600px;
        max-width: 48%;
        bottom: 24px;
        top: auto;
    }
    .nh-image img {
        max-height: 100%;
        object-position: bottom center;
    }
    .nh-image img {
        object-position: bottom center;
    }
    .nh-copy {
        left: 24px;
        max-width: 300px;
        width: calc(28% - 20px);
        font-size: 1rem;
        bottom: 54px;
        margin-left: 24px;
    }
    .nh-rating-wrapper {
        right: 24px;
        bottom: 54px;
        max-width: calc(28% - 20px);
        margin-right: 24px;
    }
    .nh-rating-card {
        width: 100%;
        max-width: 300px;
        padding: 20px 24px;
    }
    .nh-score {
        font-size: 2.4rem;
    }
    .nh-desc {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    .services {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 60px;
        width: calc(100% - 40px);
    }
    
    .nh-wrap {
        min-height: 100vh;
    }
    .nh-brand-overlay {
        font-size: 8rem;
        letter-spacing: 0.1em;
        top: 35px;
    }
    .nh-bg {
        height: calc(100vh - 320px);
        max-height: 380px;
        min-height: 340px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        overflow: visible;
    }
    .nh-top {
        height: calc(100vh - 400px);
        max-height: 240px;
        min-height: 200px;
    }
    .nh-image {
        width: 450px;
        max-width: 52%;
        bottom: 20px;
        top: auto;
    }
    .nh-copy {
        left: 20px;
        max-width: 280px;
        width: calc(32% - 20px);
        font-size: 0.95rem;
        bottom: 50px;
        margin-left: 20px;
    }
    .nh-rating-wrapper {
        right: 20px;
        bottom: 50px;
        max-width: calc(32% - 20px);
        margin-right: 20px;
    }
    .nh-rating-card {
        width: 100%;
        max-width: 280px;
        padding: 18px 22px;
    }
    .nh-score {
        font-size: 2.2rem;
    }
    .nh-desc {
        font-size: 0.75rem;
    }
    .nh-avatars img,
    .nh-g-circle,
    .nh-trustpilot-circle {
        width: 36px;
        height: 36px;
    }
    .nh-arrow-circle {
        right: 18px;
        top: 18px;
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .services {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 60px;
        width: calc(100% - 32px);
    }
    
    .nh-wrap {
        min-height: 100vh;
    }
    .nh-brand-overlay {
        font-size: 6.5rem;
        letter-spacing: 0.08em;
        top: 30px;
        white-space: normal;
        word-break: break-word;
    }
    .nh-bg {
        height: calc(100vh - 280px);
        max-height: 360px;
        min-height: 320px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        overflow: visible;
    }
    .nh-top {
        height: calc(100vh - 380px);
        max-height: 220px;
        min-height: 180px;
    }
    .nh-image {
        width: 380px;
        max-width: 55%;
        bottom: 16px;
        top: auto;
    }
    .nh-copy {
        left: 16px;
        max-width: 260px;
        width: calc(35% - 20px);
        font-size: 0.9rem;
        bottom: 46px;
        margin-left: 16px;
    }
    .nh-rating-wrapper {
        right: 16px;
        bottom: 46px;
        max-width: calc(35% - 20px);
        margin-right: 16px;
    }
    .nh-rating-card {
        width: 100%;
        max-width: 260px;
        padding: 16px 20px;
    }
    .nh-score {
        font-size: 2rem;
    }
    .nh-desc {
        font-size: 0.7rem;
    }
    .nh-avatars img,
    .nh-g-circle,
    .nh-trustpilot-circle {
        width: 32px;
        height: 32px;
    }
    .nh-arrow-circle {
        right: 16px;
        top: 16px;
        width: 40px;
        height: 40px;
    }
    .nh-arrow-circle svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 599px) {
    .services {
        margin-left: 24px;
        margin-right: 24px;
        margin-bottom: 60px;
        width: calc(100% - 48px);
    }
    
    .nh-wrap {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        overflow-y: auto;
    }
    .nh-top-text {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px 24px 16px;
        font-size: 0.85rem;
        justify-content: space-between;
        font-weight: 600;
        letter-spacing: 0.08em;
        opacity: 0.95;
        color: #ffffff;
        flex-shrink: 0;
    }
    .nh-top-text-right {
        gap: 20px;
    }
    .nh-top {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 0;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        flex-shrink: 0;
    }
    .nh-brand-overlay {
        display: none;
    }
    .nh-bg {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        border-radius: 0;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        box-shadow: none;
        overflow: visible;
        flex: 1;
        min-height: 0;
        text-align: center;
    }
    .nh-seo-heading {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        text-align: center;
        margin: 0;
        line-height: 1.4;
        opacity: 1;
        order: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 0;
        position: relative;
        z-index: 10;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        visibility: visible;
        width: 100%;
    }
    .nh-image {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 380px;
    margin: 0 auto;
        order: 1;
        z-index: 1;
        animation: fadeInUp 0.8s ease-out 0.2s both;
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
        flex-shrink: 0;
    }
    .nh-image img {
        max-height: 420px;
        object-fit: contain;
        object-position: center;
        border-radius: 16px;
    }
    .nh-copy {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        width: calc(100% - 48px);
        max-width: calc(100% - 48px);
        margin: 0 auto;
        padding: 28px 24px;
        text-align: center;
        order: 2;
        z-index: 2;
        font-size: 1.15rem;
        line-height: 1.8;
        color: #ffffff;
        font-weight: 500;
        animation: fadeInUp 0.8s ease-out 0.3s both;
        opacity: 1;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        display: block;
        visibility: visible;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.01em;
    }
    .nh-seo-heading {
        z-index: 2;
    }
    .nh-rating-wrapper {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
        order: 3;
        z-index: 6;
        animation: fadeInUp 0.8s ease-out 0.4s both;
        padding: 0 24px 20px;
        flex-shrink: 0;
    }
    .nh-rating-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 28px 24px;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
    }
    .nh-rating-card:active {
        transform: scale(0.98);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    }
    .nh-score {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--nh-brand-color);
        text-align: center;
        line-height: 1;
    }
    .nh-desc {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.7;
        color: var(--nh-brand-color);
        opacity: 0.9;
        font-weight: 400;
        margin-top: 8px;
    }
    .nh-rating-top {
        justify-content: center;
        margin-bottom: 18px;
        align-items: center;
    }
    .nh-avatars {
        justify-content: center;
    }
    .nh-avatars img,
    .nh-g-circle,
    .nh-trustpilot-circle {
        width: 48px;
        height: 48px;
        transition: all 0.3s ease;
        border: 3px solid #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
    .nh-avatars img:hover,
    .nh-g-circle:hover,
    .nh-trustpilot-circle:hover {
        transform: scale(1.08) translateY(-2px);
        z-index: 1;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
    }
    .nh-arrow-circle {
        right: 24px;
        top: 24px;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #02717a, #02b9b6);
        box-shadow: 0 4px 16px rgba(2, 113, 122, 0.25), 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        touch-action: manipulation;
        color: #fff;
    }
    .nh-arrow-circle:active {
        transform: scale(0.94);
        box-shadow: 0 3px 10px rgba(2, 113, 122, 0.2);
    }
    .nh-arrow-circle svg {
        width: 28px;
        height: 28px;
        transition: transform 0.3s ease;
        stroke: #fff;
        stroke-width: 2.5;
    }
    .nh-arrow-circle:active svg {
        transform: translateX(2px);
    }
}

@media (max-width: 400px) {
    .services {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 60px;
        width: calc(100% - 40px);
    }
    
    .nh-top-text {
        padding: 18px 20px 14px;
        font-size: 0.8rem;
        color: #ffffff;
    }
    .nh-top {
        padding: 0;
        min-height: auto;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    }
    .nh-brand-overlay {
        display: none;
    }
    .nh-bg {
        padding: 28px 20px;
        gap: 20px;
        border-radius: 0;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .nh-seo-heading {
        font-size: 1rem;
        margin: 0 auto;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        z-index: 10;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
        width: 100%;
        opacity: 1;
        visibility: visible;
    }
    .nh-image {
        max-width: 340px;
    }
    .nh-image img {
        max-height: 380px;
    }
    .nh-copy {
        font-size: 1.1rem;
        line-height: 1.75;
        padding: 24px 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        font-weight: 500;
        letter-spacing: 0.01em;
        margin: 0 auto;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        text-align: center;
    }
    .nh-rating-wrapper {
        margin: 18px 0 0;
        padding: 0 20px 18px;
    }
    .nh-rating-card {
        padding: 24px 20px;
        border-radius: 22px;
        background: #ffffff;
    }
    .nh-score {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    .nh-desc {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    .nh-rating-top {
        margin-bottom: 16px;
    }
    .nh-avatars img,
    .nh-g-circle,
    .nh-trustpilot-circle {
        width: 46px;
        height: 46px;
    }
    .nh-arrow-circle {
        right: 20px;
        top: 20px;
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #02717a, #02b9b6);
        color: #fff;
    }
    .nh-arrow-circle svg {
        width: 26px;
        height: 26px;
        stroke: #fff;
        stroke-width: 2.5;
    }
}

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

/* Services Heading Section - Modern Design */
.services-heading {
    padding: 40px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1921px) {
    .services-heading {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

.services-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-heading-content {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.services-heading-button {
    flex-shrink: 0;
}

.services-view-all-mobile {
    display: none;
    text-align: center;
    padding: 0 0 20px;
    margin: 0 16px;
}

.before-after-view-all-mobile {
    display: none;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.services-heading-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.services-heading-content h3 .accent {
    color: #01737b;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-heading-content h3 .accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
    opacity: 0.25;
    transform: translateY(2px);
}

.services-heading-content p {
    font-size: 19px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .services-heading {
        padding: 32px 0 50px;
        max-width: 100%;
    }

    .services-heading-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    .services-heading-content {
        text-align: center;
        width: 100%;
    }
    
    .services-heading-button-desktop {
        display: none;
    }
    
    .services-view-all-mobile {
        display: block;
    }

    .services-heading-content h3 {
        font-size: 38px;
        letter-spacing: -0.025em;
    }

    .services-heading-content p {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .services-heading {
        padding: 32px 16px 40px;
    }
    
    .services-heading-row {
        gap: 20px;
        align-items: center;
    }
    
    .services-heading-content {
        text-align: center;
    }
    
    .services-heading-button-desktop {
        display: none;
    }
    
    .services-view-all-mobile {
        display: block;
    }

    .services-heading-content h3 {
        font-size: 32px;
        letter-spacing: -0.02em;
        margin-bottom: 14px;
    }

    .services-heading-content h3 .accent::after {
        height: 3px;
        bottom: 4px;
    }

    .services-heading-content p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* SEO intro — below hero, home (matches services / why-choose rhythm) */
.page-template-page-home .seo-content {
    position: relative;
    padding: 48px 0 56px;
    max-width: 1300px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid rgba(2, 113, 122, 0.1);
}

@media (min-width: 1921px) {
    .page-template-page-home .seo-content {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

.page-template-page-home .seo-content__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 36px 40px 40px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    border: 1px solid rgba(2, 113, 122, 0.12);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 40px -12px rgba(2, 113, 122, 0.12),
        0 4px 16px -4px rgba(26, 26, 26, 0.06);
    backdrop-filter: blur(8px);
}

.page-template-page-home .seo-content__title {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.35em;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.page-template-page-home .seo-content__title-line {
    flex: 0 1 auto;
    min-width: 0;
}

.page-template-page-home .seo-content__title .accent {
    color: #01737b;
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-template-page-home .seo-content__title .accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
    opacity: 0.22;
    transform: translateY(2px);
}

.page-template-page-home .seo-content__body {
    position: relative;
    padding-left: 22px;
}

.page-template-page-home .seo-content__body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #02717a 0%, #02b9b6 100%);
}

.page-template-page-home .seo-content__body p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
    color: #555;
    margin: 0 0 1.15em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.01em;
    opacity: 0.92;
}

.page-template-page-home .seo-content__body p:last-child {
    margin-bottom: 0;
}

.page-template-page-home .seo-content__lead {
    font-size: 19px;
    opacity: 1;
    color: #3d3d3d;
}

@media (max-width: 900px) {
    .page-template-page-home .seo-content {
        padding: 36px 0 44px;
        max-width: 100%;
    }

    .page-template-page-home .seo-content__inner {
        margin: 0 16px;
        padding: 28px 22px 32px;
        border-radius: 16px;
    }

    .page-template-page-home .seo-content__title {
        justify-content: center;
        text-align: center;
        margin-bottom: 22px;
    }

    .page-template-page-home .seo-content__title .accent::after {
        left: 50%;
        transform: translate(-50%, 2px);
        width: 100%;
        max-width: 280px;
    }

    .page-template-page-home .seo-content__body {
        padding-left: 0;
        padding-top: 18px;
        border-top: 2px solid rgba(2, 113, 122, 0.15);
        text-align: center;
    }

    .page-template-page-home .seo-content__body::before {
        display: none;
    }

    .page-template-page-home .seo-content__body p {
        font-size: 17px;
    }

    .page-template-page-home .seo-content__lead {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .page-template-page-home .seo-content__inner {
        margin: 0 12px;
        padding: 24px 18px 28px;
    }

    .page-template-page-home .seo-content__title {
        flex-wrap: wrap;
        font-size: clamp(20px, 5.2vw, 28px);
        letter-spacing: -0.025em;
    }

    .page-template-page-home .seo-content__title .accent::after {
        height: 3px;
        bottom: 4px;
    }

    .page-template-page-home .seo-content__body p {
        font-size: 16px;
        line-height: 1.68;
    }

    .page-template-page-home .seo-content__lead {
        font-size: 17px;
    }
}

/* Why Choose Us Section - Home Page */
.why-choose-section {
    padding: 40px 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1921px) {
    .why-choose-section {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

.why-choose-heading {
    margin-bottom: 50px;
}

.why-choose-heading-content {
    text-align: left;
}

.why-choose-heading-content h3 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.03em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.why-choose-heading-content h3 .accent {
    color: #01737b;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-heading-content h3 .accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
    opacity: 0.25;
    transform: translateY(2px);
}

.why-choose-heading-content p {
    font-size: 19px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 16px 0 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

.why-choose-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1921px) {
    .why-choose-grid-wrapper {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

@media (max-width: 900px) {
    .why-choose-section {
        padding: 32px 0 50px;
        max-width: 100%;
    }

    .why-choose-heading-content {
        text-align: center;
    }

    .why-choose-heading-content h3 {
        font-size: 38px;
        letter-spacing: -0.025em;
    }

    .why-choose-heading-content p {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .why-choose-section {
        padding: 32px 16px 40px;
    }

    .why-choose-heading-content {
        text-align: center;
    }

    .why-choose-heading-content h3 {
        font-size: 32px;
        letter-spacing: -0.02em;
    }

    .why-choose-heading-content h3 .accent::after {
        height: 3px;
        bottom: 4px;
    }

    .why-choose-heading-content p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* Home Template - Exact Design from whiteloom_exact.html */
.page-template-page-home {
    --brand-color: #073f3f;
    --teal-light: #06b6a4;
    --teal-dark: #0e7f78;
    --teal-bg: #06b6a4;
    --teal-card: #0e7f78;
    --radius: 24px;
    --max-w: 1280px;
}

body.page-template-page-home {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: #053036;
    background: transparent;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-template-page-home .container {
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* Top text - part of hero section */
.page-template-page-home .top-text {
    position: absolute;
    top: 20px;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--teal-light);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10;
    pointer-events: none;
}

.page-template-page-home .top-text-right {
    display: flex;
    gap: 24px;
}

/* Hero section - Full width */
.page-template-page-home .hero-wrap {
    position: relative;
    padding: 0;
    margin: 0;
    min-height: 600px;
    width: 100%;
    overflow: visible;
    background: #fff;
}

/* Responsive min-height for hero-wrap */
@media (min-width: 768px) {
    .page-template-page-home .hero-wrap {
        min-height: 700px;
    }
}

@media (min-width: 1024px) {
    .page-template-page-home .hero-wrap {
        min-height: 850px;
    }
}

@media (min-width: 1400px) {
    .page-template-page-home .hero-wrap {
        min-height: 950px;
    }
}

@media (min-width: 1600px) {
    .page-template-page-home .hero-wrap {
        min-height: 1000px;
    }
}

/* White background for top section */
.page-template-page-home .hero-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 250px;
    max-height: 300px;
    min-height: 200px;
    z-index: 2;
}

/* Responsive height for hero-top */
@media (min-width: 768px) {
    .page-template-page-home .hero-top {
        height: 280px;
        min-height: 250px;
    }
}

@media (min-width: 1024px) {
    .page-template-page-home .hero-top {
        height: 300px;
        min-height: 280px;
    }
}

@media (min-width: 1400px) {
    .page-template-page-home .hero-top {
        height: 320px;
        min-height: 300px;
    }
}

/* Teal background block with gradient for lower section */
.page-template-page-home .hero-bg {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: linear-gradient(to right, #02717a 0%, #02b9b6 100%);
    border-radius: var(--radius);
    height: 400px;
    max-height: 500px;
    min-height: 350px;
    width: calc(100% - 48px);
    z-index: 1;
    overflow: hidden;
    will-change: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Responsive height for hero-bg */
@media (min-width: 768px) {
    .page-template-page-home .hero-bg {
        height: 450px;
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .page-template-page-home .hero-bg {
        height: 500px;
        min-height: 450px;
    }
}

@media (min-width: 1400px) {
    .page-template-page-home .hero-bg {
        height: 550px;
        min-height: 500px;
    }
}

/* Modern SVG Background - Dent Icon for Hero (Half Visible Design) */
.page-template-page-home .hero-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -160px;
    width: 400px;
    height: 400px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, right 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.page-template-page-home .hero-bg::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 450px;
    height: 450px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, top 0.4s ease, left 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.page-template-page-home .hero-bg:hover::before {
    opacity: 0.28;
    right: -140px;
    transform: scale(1.05) rotate(-5deg);
}

.page-template-page-home .hero-bg:hover::after {
    opacity: 0.22;
    top: -180px;
    left: -180px;
    transform: scale(1.05) rotate(5deg);
}

.page-template-page-home .hero-bg > * {
    position: relative;
    z-index: 1;
}

/* Brand name positioned in white top section - full width */
.page-template-page-home .brand-overlay {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 11rem;
    font-weight: 700;
    color: var(--brand-color, #073f3f);
    letter-spacing: 0.15em;
    line-height: 0.9;
    z-index: 3;
    pointer-events: none;
    white-space: nowrap;
    text-align: center;
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Left copy text - positioned at bottom of background with padding */
.page-template-page-home .copy {
    position: absolute;
    left: 30px;
    bottom: 54px;
    max-width: 320px;
    width: calc(25% - 20px);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    z-index: 4;
    margin-left: 30px;
}

/* Desktop/Mobile text visibility */
.page-template-page-home .copy-desktop {
    display: block;
}

.page-template-page-home .copy-mobile {
    display: none;
}

.page-template-page-home .desc-desktop {
    display: block;
}

.page-template-page-home .desc-mobile {
    display: none;
}

/* Hero image centered, bottom starting from background color section */
.page-template-page-home .hero-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
    width: 650px;
    max-width: 50%;
    max-height: calc(100vh - 100px);
    z-index: 5;
    pointer-events: none;
}

.page-template-page-home .hero-image img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 100px);
    object-fit: contain;
    display: block;
    object-position: bottom center;
}

/* Rating card wrapper - positioned at bottom of background with padding */
.page-template-page-home .rating-card-wrapper {
    position: absolute;
    right: 30px;
    bottom: 54px;
    z-index: 6;
    max-width: calc(25% - 20px);
    margin-right: 30px;
}

/* Rating card - light cyan background */
.page-template-page-home .rating-card {
    position: relative;
    background: #dbffff;
    border-radius: var(--radius);
    padding: 20px 24px;
    width: 320px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-template-page-home .rating-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.page-template-page-home .avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.page-template-page-home .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.page-template-page-home .avatars img:first-child {
    margin-left: 0;
}

.page-template-page-home .g-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 2px;
}

.page-template-page-home .g-circle svg {
    width: 100%;
    height: 100%;
}

.page-template-page-home .trustpilot-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 4px;
}

.page-template-page-home .trustpilot-circle svg {
    width: 100%;
    height: 100%;
}

.page-template-page-home .arrow-circle {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 7;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.page-template-page-home .arrow-circle:hover {
    transform: scale(1.05);
}

.page-template-page-home .arrow-circle svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.page-template-page-home .score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 8px;
    line-height: 1;
}

.page-template-page-home .desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--brand-color);
}

/* SEO heading - hidden on desktop, visible on mobile */
.page-template-page-home .seo-heading {
    display: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Desktop: Show brand overlay, hide SEO heading */
@media (min-width: 600px) {
    .page-template-page-home .brand-overlay {
        display: block;
    }
    .page-template-page-home .seo-heading {
        display: none !important;
    }
    .page-template-page-home .copy-desktop {
        display: block;
    }
    .page-template-page-home .copy-mobile {
        display: none;
    }
    .page-template-page-home .desc-desktop {
        display: block;
    }
    .page-template-page-home .desc-mobile {
        display: none;
    }
}

/* Services margin to match nh-bg spacing */
@media (min-width: 1400px) {
    .services {
        margin-left: 40px;
        margin-right: 40px;
        margin-bottom: 80px;
        width: calc(100% - 80px);
    }
}

/* Home Template Responsive Styles */
@media (min-width: 1400px) {
    .page-template-page-home .hero-wrap {
        min-height: 100vh;
    }
    .page-template-page-home .brand-overlay {
        font-size: 14rem;
        letter-spacing: 0.15em;
        top: 50px;
    }
    .page-template-page-home .hero-bg {
        height: calc(100vh - 380px);
        max-height: 480px;
        min-height: 420px;
        left: 40px;
        right: 40px;
        bottom: 40px;
        width: calc(100% - 80px);
        overflow: visible;
    }
    .page-template-page-home .hero-top {
        height: calc(100vh - 520px);
        max-height: 340px;
        min-height: 300px;
    }
    .page-template-page-home .hero-image {
        width: 800px;
        max-width: 50%;
        bottom: 40px;
        top: auto;
    }
    .page-template-page-home .copy {
        left: 40px;
        max-width: 340px;
        width: calc(25% - 20px);
        font-size: 1.15rem;
        bottom: 70px;
        margin-left: 40px;
    }
    .page-template-page-home .rating-card-wrapper {
        right: 40px;
        bottom: 70px;
        max-width: calc(25% - 20px);
        margin-right: 40px;
    }
    .page-template-page-home .rating-card {
        width: 100%;
        max-width: 360px;
        padding: 26px 30px;
    }
    .page-template-page-home .score {
        font-size: 3rem;
    }
    .page-template-page-home .desc {
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .page-template-page-home .hero-wrap {
        min-height: 100vh;
    }
    .page-template-page-home .brand-overlay {
        font-size: 13rem;
        letter-spacing: 0.15em;
        top: 50px;
    }
    .page-template-page-home .hero-bg {
        height: calc(100vh - 380px);
        max-height: 450px;
        min-height: 400px;
        left: 30px;
        right: 30px;
        bottom: 30px;
        width: calc(100% - 60px);
        overflow: visible;
    }
    .page-template-page-home .hero-top {
        height: calc(100vh - 500px);
        max-height: 320px;
        min-height: 280px;
    }
    .page-template-page-home .hero-image {
        width: 750px;
        max-width: 50%;
        bottom: 30px;
        top: auto;
    }
    .page-template-page-home .copy {
        left: 30px;
        max-width: 320px;
        width: calc(25% - 20px);
        font-size: 1.1rem;
        bottom: 60px;
        margin-left: 30px;
    }
    .page-template-page-home .rating-card-wrapper {
        right: 30px;
        bottom: 60px;
        max-width: calc(25% - 20px);
        margin-right: 30px;
    }
    .page-template-page-home .rating-card {
        width: 100%;
        max-width: 340px;
        padding: 24px 28px;
    }
    .page-template-page-home .score {
        font-size: 2.8rem;
    }
    .page-template-page-home .desc {
        font-size: 0.85rem;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .page-template-page-home .hero-wrap {
        min-height: 100vh;
    }
    .page-template-page-home .brand-overlay {
        font-size: 10rem;
        letter-spacing: 0.12em;
        top: 40px;
    }
    .page-template-page-home .hero-bg {
        height: calc(100vh - 350px);
        max-height: 400px;
        min-height: 350px;
        left: 24px;
        right: 24px;
        bottom: 24px;
        width: calc(100% - 48px);
        overflow: visible;
    }
    .page-template-page-home .hero-top {
        height: calc(100vh - 450px);
        max-height: 300px;
        min-height: 250px;
    }
    .page-template-page-home .hero-image {
        width: 600px;
        max-width: 48%;
        bottom: 24px;
        top: auto;
    }
    .page-template-page-home .copy {
        left: 24px;
        max-width: 300px;
        width: calc(28% - 20px);
        font-size: 1rem;
        bottom: 54px;
        margin-left: 24px;
    }
    .page-template-page-home .rating-card-wrapper {
        right: 24px;
        bottom: 54px;
        max-width: calc(28% - 20px);
        margin-right: 24px;
    }
    .page-template-page-home .rating-card {
        width: 100%;
        max-width: 300px;
        padding: 20px 24px;
    }
    .page-template-page-home .score {
        font-size: 2.4rem;
    }
    .page-template-page-home .desc {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    .page-template-page-home .hero-wrap {
        min-height: 100vh;
    }
    .page-template-page-home .brand-overlay {
        font-size: 8rem;
        letter-spacing: 0.1em;
        top: 35px;
    }
    .page-template-page-home .hero-bg {
        height: calc(100vh - 320px);
        max-height: 380px;
        min-height: 340px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        overflow: visible;
    }
    .page-template-page-home .hero-top {
        height: calc(100vh - 400px);
        max-height: 240px;
        min-height: 200px;
    }
    .page-template-page-home .hero-image {
        width: 450px;
        max-width: 52%;
        bottom: 20px;
        top: auto;
    }
    .page-template-page-home .copy {
        left: 20px;
        max-width: 280px;
        width: calc(32% - 20px);
        font-size: 0.95rem;
        bottom: 50px;
        margin-left: 20px;
    }
    .page-template-page-home .rating-card-wrapper {
        right: 20px;
        bottom: 50px;
        max-width: calc(32% - 20px);
        margin-right: 20px;
    }
    .page-template-page-home .rating-card {
        width: 100%;
        max-width: 280px;
        padding: 18px 22px;
    }
    .page-template-page-home .score {
        font-size: 2.2rem;
    }
    .page-template-page-home .desc {
        font-size: 0.75rem;
    }
    .page-template-page-home .avatars img,
    .page-template-page-home .g-circle,
    .page-template-page-home .trustpilot-circle {
        width: 36px;
        height: 36px;
    }
    .page-template-page-home .arrow-circle {
        right: 18px;
        top: 18px;
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .page-template-page-home .hero-wrap {
        min-height: 100vh;
    }
    .page-template-page-home .brand-overlay {
        font-size: 6.5rem;
        letter-spacing: 0.08em;
        top: 30px;
        white-space: normal;
        word-break: break-word;
    }
    .page-template-page-home .hero-bg {
        height: calc(100vh - 280px);
        max-height: 360px;
        min-height: 320px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        overflow: visible;
    }
    .page-template-page-home .hero-top {
        height: calc(100vh - 380px);
        max-height: 220px;
        min-height: 180px;
    }
    .page-template-page-home .hero-image {
        width: 380px;
        max-width: 55%;
        bottom: 16px;
        top: auto;
    }
    .page-template-page-home .copy {
        left: 16px;
        max-width: 260px;
        width: calc(35% - 20px);
        font-size: 0.9rem;
        bottom: 46px;
        margin-left: 16px;
    }
    .page-template-page-home .rating-card-wrapper {
        right: 16px;
        bottom: 46px;
        max-width: calc(35% - 20px);
        margin-right: 16px;
    }
    .page-template-page-home .rating-card {
        width: 100%;
        max-width: 260px;
        padding: 16px 20px;
    }
    .page-template-page-home .score {
        font-size: 2rem;
    }
    .page-template-page-home .desc {
        font-size: 0.7rem;
    }
    .page-template-page-home .avatars img,
    .page-template-page-home .g-circle,
    .page-template-page-home .trustpilot-circle {
        width: 32px;
        height: 32px;
    }
    .page-template-page-home .arrow-circle {
        right: 16px;
        top: 16px;
        width: 40px;
        height: 40px;
    }
    .page-template-page-home .arrow-circle svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 599px) {
    .page-template-page-home .hero-wrap {
        min-height: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        overflow-x: hidden;
        overflow-y: visible;
    }

    /* Decorative SVGs sit off-canvas on desktop and can widen the mobile hero */
    .page-template-page-home .hero-bg::before,
    .page-template-page-home .hero-bg::after {
        display: none;
    }
    .page-template-page-home .top-text {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        padding: 20px 24px 16px;
        font-size: 0.85rem;
        justify-content: space-between;
        font-weight: 600;
        letter-spacing: 0.08em;
        opacity: 0.95;
        color: #ffffff;
        flex-shrink: 0;
    }
    .page-template-page-home .top-text-right {
        gap: 20px;
    }
    .page-template-page-home .hero-top {
        position: relative;
        height: auto;
        min-height: auto;
        padding: 0;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        flex-shrink: 0;
    }
    .page-template-page-home .brand-overlay {
        display: none;
    }
    .page-template-page-home .hero-bg {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        border-radius: 0;
        padding: 32px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        box-shadow: none;
        overflow: visible;
        flex: 1;
        min-height: 0;
        text-align: center;
    }
    /* Mobile: Show SEO heading, hide brand overlay */
    .page-template-page-home .brand-overlay {
        display: none !important;
    }
    .page-template-page-home .seo-heading {
        display: block !important;
        font-size: 1.1rem;
        font-weight: 600;
        color: #ffffff;
        text-align: center;
        margin: 0;
        line-height: 1.4;
        opacity: 1;
        order: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 0;
        position: relative;
        z-index: 10;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        visibility: visible;
        width: 100%;
    }
    .page-template-page-home .hero-image {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        order: 1;
        z-index: 1;
        animation: fadeInUp 0.8s ease-out 0.2s both;
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
        flex-shrink: 0;
    }
    .page-template-page-home .hero-image img {
        max-height: 420px;
        object-fit: contain;
        object-position: center;
        border-radius: 16px;
    }
    .page-template-page-home .copy {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        width: calc(100% - 48px);
        max-width: calc(100% - 48px);
        margin: 0 auto;
        padding: 28px 24px;
        text-align: center;
        order: 2;
        z-index: 2;
        font-size: 1.15rem;
        line-height: 1.8;
        color: #ffffff;
        font-weight: 500;
        animation: fadeInUp 0.8s ease-out 0.3s both;
        opacity: 1;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        display: block;
        visibility: visible;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.01em;
    }
    
    /* Mobile: Show mobile text, hide desktop text */
    .page-template-page-home .copy-desktop {
        display: none !important;
    }
    
    .page-template-page-home .copy-mobile {
        display: block !important;
    }
    
    .page-template-page-home .desc-desktop {
        display: none !important;
    }
    
    .page-template-page-home .desc-mobile {
        display: block !important;
    }
    .page-template-page-home .seo-heading {
        z-index: 2;
    }
    .page-template-page-home .rating-card-wrapper {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0;
        order: 3;
        z-index: 6;
        animation: fadeInUp 0.8s ease-out 0.4s both;
        padding: 0 24px 20px;
        flex-shrink: 0;
    }
    .page-template-page-home .rating-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 28px 24px;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: none;
    }
    .page-template-page-home .rating-card:active {
        transform: scale(0.98);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    }
    .page-template-page-home .score {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--brand-color);
        text-align: center;
        line-height: 1;
    }
    .page-template-page-home .desc {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.7;
        color: var(--brand-color);
        opacity: 0.9;
        font-weight: 400;
        margin-top: 8px;
    }
    .page-template-page-home .rating-top {
        justify-content: center;
        margin-bottom: 18px;
        align-items: center;
    }
    .page-template-page-home .avatars {
        justify-content: center;
    }
    .page-template-page-home .avatars img,
    .page-template-page-home .g-circle,
    .page-template-page-home .trustpilot-circle {
        width: 48px;
        height: 48px;
        transition: all 0.3s ease;
        border: 3px solid #fff;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
    .page-template-page-home .avatars img:hover,
    .page-template-page-home .g-circle:hover,
    .page-template-page-home .trustpilot-circle:hover {
        transform: scale(1.08) translateY(-2px);
        z-index: 1;
        box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
    }
    .page-template-page-home .arrow-circle {
        right: 24px;
        top: 24px;
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #02717a, #02b9b6);
        box-shadow: 0 4px 16px rgba(2, 113, 122, 0.25), 0 2px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        touch-action: manipulation;
        color: #fff;
    }
    .page-template-page-home .arrow-circle:active {
        transform: scale(0.94);
        box-shadow: 0 3px 10px rgba(2, 113, 122, 0.2);
    }
    .page-template-page-home .arrow-circle svg {
        width: 28px;
        height: 28px;
        transition: transform 0.3s ease;
        stroke: #fff;
        stroke-width: 2.5;
    }
    .page-template-page-home .arrow-circle:active svg {
        transform: translateX(2px);
    }
}

@media (max-width: 400px) {
    /* Mobile: Ensure correct visibility */
    .page-template-page-home .brand-overlay {
        display: none !important;
    }
    .page-template-page-home .seo-heading {
        display: block !important;
    }
    .page-template-page-home .copy-desktop {
        display: none !important;
    }
    .page-template-page-home .copy-mobile {
        display: block !important;
    }
    .page-template-page-home .desc-desktop {
        display: none !important;
    }
    .page-template-page-home .desc-mobile {
        display: block !important;
    }
    
    .page-template-page-home .top-text {
        padding: 18px 20px 14px;
        font-size: 0.8rem;
        color: #ffffff;
    }
    .page-template-page-home .hero-top {
        padding: 0;
        min-height: auto;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    }
    .page-template-page-home .hero-bg {
        padding: 28px 20px;
        gap: 20px;
        border-radius: 0;
        background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .page-template-page-home .seo-heading {
        font-size: 1rem;
        margin: 0 auto;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        position: relative;
        z-index: 10;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        line-height: 1.4;
        text-align: center;
        width: 100%;
        opacity: 1;
        visibility: visible;
    }
    .page-template-page-home .hero-image {
        max-width: 340px;
    }
    .page-template-page-home .hero-image img {
        max-height: 380px;
    }
    .page-template-page-home .copy {
        font-size: 1.1rem;
        line-height: 1.75;
        padding: 24px 20px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        font-weight: 500;
        letter-spacing: 0.01em;
        margin: 0 auto;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        text-align: center;
    }
    .page-template-page-home .rating-card-wrapper {
        margin: 18px 0 0;
        padding: 0 20px 18px;
    }
    .page-template-page-home .rating-card {
        padding: 24px 20px;
        border-radius: 22px;
        background: #ffffff;
    }
    .page-template-page-home .score {
        font-size: 2.8rem;
        margin-bottom: 10px;
    }
    .page-template-page-home .desc {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    .page-template-page-home .rating-top {
        margin-bottom: 16px;
    }
    .page-template-page-home .avatars img,
    .page-template-page-home .g-circle,
    .page-template-page-home .trustpilot-circle {
        width: 46px;
        height: 46px;
    }
    .page-template-page-home .arrow-circle {
        right: 20px;
        top: 20px;
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #02717a, #02b9b6);
        color: #fff;
    }
    .page-template-page-home .arrow-circle svg {
        width: 26px;
        height: 26px;
        stroke: #fff;
        stroke-width: 2.5;
    }
}

/* Services Grid */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
    margin-bottom: 60px;
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
    box-sizing: border-box;
}

/* View All Services Button */
.services-view-all-wrapper {
    margin: 0 40px 50px;
    padding-top: 16px;
}

.services-view-all {
    text-align: center;
    padding-bottom: 20px;
}

.services-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

.services-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
}

.view-all-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #02717a;
    background: transparent;
    border: 2px solid #02717a;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.01em;
    box-shadow: none;
    cursor: pointer;
}

.view-all-services-btn .view-all-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.view-all-services-btn:hover {
    transform: translateY(-1px);
    background: #02717a;
    color: #ffffff;
    border-color: #02717a;
    box-shadow: 0 2px 8px rgba(2, 113, 122, 0.2);
}

.view-all-services-btn:hover .view-all-icon {
    transform: translateX(3px);
}

.view-all-services-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(2, 113, 122, 0.15);
}

.service-card {
    background-color: #f0ffff;
    border-radius: 12px;
    padding: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #01737b;
    color: #ffffff;
}

.service-card:hover h3,
.service-card:hover p {
    color: #ffffff;
}

.service-card:hover .service-card-toggle {
    background-color: #ffffff;
    color: #01737b;
}

.service-card.active {
    background-color: #01737b;
    color: #ffffff;
}

.service-card.active h3,
.service-card.active p {
    color: #ffffff;
}

.service-card.active .service-card-toggle {
    background-color: #ffffff;
    color: #01737b;
}

.service-card.active:hover {
    background-color: #01737b;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0;
    flex: 1;
    line-height: 1.3;
    text-align: left;
}

/* Full-card link overlay (toggle stays above via z-index) */
.service-card-stretched-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
}

.service-card-stretched-link:focus {
    outline: none;
}

.service-card-stretched-link:focus-visible {
    outline: 2px solid #01737b;
    outline-offset: 3px;
}

.service-card--has-link .service-card-toggle {
    position: relative;
    z-index: 2;
}

.service-card-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background-color: #01737b;
    border: none;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
    padding: 0;
    line-height: 1;
}


.service-card-toggle:hover {
    background-color: #00A4A3;
}

.service-card:hover .service-card-toggle:hover {
    background-color: #f0f0f0;
}


.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}


/* Responsive Design */
@media (min-width: 1200px) and (max-width: 1399px) {
    .services {
        margin-left: 30px;
        margin-right: 30px;
        margin-bottom: 80px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 1200px) {
    .services {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 50px;
    }
    
    .services-view-all-wrapper {
        margin: 0 30px 50px;
        padding-top: 12px;
    }
    
    .services-view-all {
        padding-bottom: 16px;
    }
    
    .view-all-services-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services-view-all {
        padding-bottom: 28px;
    }
    
    .view-all-services-btn .view-all-icon {
        width: 18px;
        height: 18px;
    }

    nav {
        gap: 2px;
    }

    nav a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .phone-btn,
    .book-btn {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
        gap: 6px;
    }

    .phone-btn svg,
    .phone-btn .phone-icon-btn,
    .book-btn svg,
    .book-btn .book-icon-btn {
        width: 16px;
        height: 16px;
    }
    
    header .header-wrapper {
        padding: 15px 60px;
        min-height: 60px;
    }
    
    header.scrolled .header-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 60px;
    }
}


@media (max-width: 900px) {
    .container {
        padding: 0 0 40px;
    }

    .hero--whiterbloom {
        padding: 60px 0 50px;
    }
    
    .hero__inner {
        padding: 0 40px;
    }
    
    .hero__keyword {
        font-size: 12px;
    }
    
    .hero__keyword--left {
        left: 40px;
    }
    
    .hero__keyword--center {
        margin-left: 80px;
    }
    
    .hero__keyword--right {
        right: 40px;
    }
    
    .hero__brand {
        font-size: clamp(48px, 10vw, 120px);
        margin-top: 40px;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .hero__brand {
        font-size: clamp(48px, 10vw, 120px);
    }
    
    .hero__brand-right {
        margin-left: 40px;
    }
    
    .hero__description {
        margin-top: 20px;
    }
    
    .hero__description p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero__right {
        order: -1; /* Show card first on mobile */
    }
    
    .hero__card {
        margin-top: 0;
        padding: 40px 30px;
        border-radius: 24px;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        min-height: auto;
    }
    
    .hero__image-wrapper {
        width: 100%;
    }
    
    .hero__image {
        width: 100%;
    }
    
    .hero__rating-card {
        position: absolute;
        right: 20px;
        bottom: 20px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 50px;
    }

    header .header-wrapper {
        grid-template-columns: 1fr auto;
        gap: 15px;
        padding: 15px 40px;
        min-height: 60px;
    }
    
    header.scrolled .header-wrapper {
        padding-top: 12px;
        padding-bottom: 12px;
        min-height: 60px;
    }
    
    /* Hide right logo on tablet - show only left logo */
    .logo-right {
        display: none;
    }
    
    .logo-left .logo-svg svg,
    .logo-left .logo img,
    .logo-left .logo-svg img {
        clip-path: none;
        transform: none;
    }

    .logo {
        justify-self: start;
    }

    nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }

    .header-actions {
        justify-self: end;
    }

}

@media (max-width: 600px) {
    .container {
        padding: 0 0 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    main#main,
    .site-main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    header .header-wrapper {
        grid-template-columns: 1fr auto;
        padding: 15px 20px;
        min-height: 60px;
    }
    
    header.scrolled .header-wrapper {
        padding-top: 12px;
        padding-bottom: 12px;
        min-height: 60px;
    }

    .logo {
        justify-self: start;
    }

    nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        justify-self: end;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 40px;
        width: calc(100% - 32px);
    }
    
    .services-view-all-wrapper {
        margin: 0 16px 40px;
        padding-top: 12px;
    }
    
    .services-view-all {
        padding-bottom: 20px;
    }
    
    .services-separator::after {
        width: 40px;
    }
    
    .view-all-services-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: auto;
        max-width: none;
        gap: 6px;
    }
    
    .services-view-all {
        padding-bottom: 12px;
    }
    
    .view-all-services-btn .view-all-icon {
        width: 18px;
        height: 18px;
    }

    .service-card-header {
        margin-bottom: 0;
        position: relative;
    }

    .service-card h3 {
        color: #ffffff;
        font-size: 16px;
        margin: 12px;
        line-height: 1.3;
        text-align: left;
        padding-right: 50px;
    }

    .service-card p {
        color: #ffffff;
        font-size: 13px;
        margin: 0;
        line-height: 1.4;
        display: none;
    }

    .service-card {
        background: linear-gradient(to right, #006F77, #003D42);
        display: grid;
        grid-template-columns: 1fr;
        padding: 16px;
        min-height: 80px;
        gap: 12px;
        position: relative;
        cursor: pointer;
    }

    .service-card:hover {
        background: linear-gradient(to right, #006F77, #003D42);
        transform: none;
        box-shadow: none;
    }

    .service-card:hover h3,
    .service-card:hover p {
        color: #ffffff;
    }

    .service-card:hover .service-card-toggle {
        background: linear-gradient(135deg, #01737b 0%, #00A4A3 100%);
        color: #ffffff;
    }

    .service-card-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #01737b 0%, #00A4A3 100%);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #ffffff;
        font-size: 20px;
        font-weight: 300;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0, 115, 122, 0.3);
        overflow: hidden;
    }

    .service-card-toggle::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transform: translate(-50%, -50%);
        transition: width 0.4s ease, height 0.4s ease;
    }

    .service-card-toggle:hover::before {
        width: 100%;
        height: 100%;
    }

    .service-card-toggle:hover {
        background: linear-gradient(135deg, #00A4A3 0%, #01737b 100%);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 115, 122, 0.4);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .service-card-toggle:active {
        transform: scale(0.95);
    }

    .service-card-toggle.active {
        background: linear-gradient(135deg, #00A4A3 0%, #84CFD5 100%);
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 6px 20px rgba(0, 164, 163, 0.5);
    }

    .service-card-toggle span {
        position: relative;
        z-index: 1;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    }

    .service-card-toggle.active span {
        transform: rotate(45deg);
    }
    
    .hero--whiterbloom {
        padding: 60px 0 40px;
    }
    
    .hero__inner {
        padding: 0 20px;
        gap: 36px;
    }
    
    .hero__keywords {
        gap: 12px;
        letter-spacing: 0.22em;
        font-size: 12px;
        justify-content: center;
    }
    
    .hero__brand {
        font-size: clamp(48px, 16vw, 78px);
    }
    
    .hero__description p {
        font-size: 16px;
    }
    
    .hero__image-card {
        width: 100%;
        padding: 20px;
        border-radius: 36px;
    }
    
    .hero__rating-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 18px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero__rating-content {
        max-width: none;
        align-items: flex-start;
    }
    
    .hero__rating-link {
        align-self: flex-end;
    }
}

/* Doctors Section */

/* Doctors Page Header - Matching other pages */
.doctors-page-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

/* Modern SVG Background - Dent Icon for Page Headers (Half Visible Design) */
.doctors-page-header::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -120px;
    width: 380px;
    height: 380px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, right 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.doctors-page-header::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, top 0.4s ease, left 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.doctors-page-header:hover::before {
    opacity: 0.28;
    right: -100px;
    transform: scale(1.05) rotate(-5deg);
}

.doctors-page-header:hover::after {
    opacity: 0.22;
    top: -80px;
    left: -80px;
    transform: scale(1.05) rotate(5deg);
}

.doctors-page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.doctors-page-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.doctors-page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.doctors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

/* Modern SVG Background - Dent Icon for All Page Headers (Half Visible Design) */
.services-page-header::before,
.contact-hero::before,
.about-header::before,
.career-header::before,
.articles-header::before,
.reviews-header::before,
.page-header-section::before,
.appointment-header::before,
.before-after-page-header::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -120px;
    width: 380px;
    height: 380px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, right 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.doctors-page-header::after,
.appointment-header::after,
.before-after-page-header::after,
.services-page-header::after,
.contact-hero::after,
.about-header::after,
.career-header::after,
.articles-header::after,
.reviews-header::after,
.page-header-section::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, top 0.4s ease, left 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.doctors-page-header:hover::before,
.appointment-header:hover::before,
.before-after-page-header:hover::before,
.services-page-header:hover::before,
.contact-hero:hover::before,
.about-header:hover::before,
.career-header:hover::before,
.articles-header:hover::before,
.reviews-header:hover::before,
.page-header-section:hover::before {
    opacity: 0.28;
    right: -100px;
    transform: scale(1.05) rotate(-5deg);
}

.doctors-page-header:hover::after,
.appointment-header:hover::after,
.before-after-page-header:hover::after,
.services-page-header:hover::after,
.contact-hero:hover::after,
.about-header:hover::after,
.career-header:hover::after,
.articles-header:hover::after,
.reviews-header:hover::after,
.page-header-section:hover::after {
    opacity: 0.22;
    top: -80px;
    left: -80px;
    transform: scale(1.05) rotate(5deg);
}

/* Ensure inner content is above SVG backgrounds */
.doctors-page-header-inner,
.appointment-header-inner,
.before-after-page-header-inner,
.services-page-header-inner,
.contact-hero-inner,
.contact-hero-content,
.about-header-inner,
.career-header-inner,
.articles-header-inner,
.reviews-header-inner,
.page-header-inner {
    position: relative;
    z-index: 1;
}

/* Doctors Intro Section - Modern Design */
.doctors-intro-section {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    padding-top: 20px;
}

.doctors-intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.doctors-intro-text:last-child {
    margin-bottom: 0;
}

/* Doctors Grid */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

.doctor-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    border-color: rgba(2, 113, 122, 0.2);
}

/* Photo Container */
.doctor-photo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex-shrink: 0;
}

.doctor-photo-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.doctor-card:hover .doctor-photo-container img {
    transform: scale(1.05);
}

.doctor-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0;
}

/* Experience Tag */
.doctor-experience-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    color: #02717a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-experience-tag {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content Section */
.doctor-content {
    padding: 28px 24px 3px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    position: relative;
}

.doctor-info-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doctor-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    position: relative;
    padding-bottom: 12px;
}

.doctor-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.doctor-card:hover .doctor-name {
    color: #02717a;
    transition: color 0.3s ease;
}

.doctor-card:hover .doctor-name::after {
    width: 60px;
}

.doctor-role {
    font-size: 15px;
    font-weight: 600;
    color: #02717a;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-role::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #02b9b6;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}

.doctor-card:hover .doctor-role {
    color: #02b9b6;
}

.doctor-badge-wrapper {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.doctor-badge svg {
    width: 13px;
    height: 13px;
    color: #02b9b6;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.doctor-badge span {
    font-size: 11px;
    font-weight: 600;
    color: #02717a;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.doctor-card:hover .doctor-badge {
    background: transparent;
    border: none;
    transform: none;
    box-shadow: none;
}

.doctor-card:hover .doctor-badge span {
    color: #02b9b6;
}

.doctor-card:hover .doctor-badge svg {
    transform: scale(1.1);
}

/* Responsive Doctors Section */
@media (max-width: 1200px) {
    .doctors-page-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .doctors-page-header-inner {
        padding: 0 30px;
    }
    
    .doctors-page-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .doctors-page-subtitle {
        font-size: 17px;
    }
    
    .doctors-container {
        padding: 0 30px 60px;
    }
    
    .doctors-intro-section {
        margin-bottom: 60px;
        padding-top: 16px;
    }
    
    .doctors-intro-text {
        font-size: 17px;
        line-height: 1.7;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .doctor-content {
        padding: 26px 22px 3px;
        gap: 14px;
    }
    
    .doctor-info-header {
        gap: 6px;
    }
    
    .doctor-name {
        font-size: 20px;
        padding-bottom: 10px;
    }
    
    .doctor-name::after {
        width: 35px;
        height: 2.5px;
    }
    
    .doctor-card:hover .doctor-name::after {
        width: 50px;
    }
    
    .doctor-role {
        font-size: 14px;
        gap: 6px;
    }
    
    .doctor-role::before {
        width: 5px;
        height: 5px;
    }
    
    .doctor-experience-tag {
        bottom: 14px;
        right: 14px;
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .doctor-badge-wrapper {
        padding-top: 18px;
        border-top: 1px solid #f0f0f0;
    }
    
    .doctor-badge {
        padding: 0;
        gap: 5px;
        background: transparent;
        border: none;
    }
    
    .doctor-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .doctor-badge span {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .doctors-page-header {
        padding: 40px 0 32px;
        margin-bottom: 40px;
    }
    
    .doctors-page-header-inner {
        padding: 0 20px;
    }
    
    .doctors-page-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .doctors-page-subtitle {
        font-size: 16px;
    }
    
    .doctors-container {
        padding: 0 20px 40px;
    }
    
    .doctors-intro-section {
        margin-bottom: 40px;
        padding-top: 12px;
    }
    
    .doctors-intro-text {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .doctor-card {
        border-radius: 16px;
    }
    
    .doctor-content {
        padding: 20px 18px 3px;
        gap: 10px;
    }
    
    .doctor-info-header {
        gap: 6px;
    }
    
    .doctor-name {
        font-size: 18px;
        padding-bottom: 8px;
        line-height: 1.35;
    }
    
    .doctor-name::after {
        width: 30px;
        height: 2px;
    }
    
    .doctor-card:hover .doctor-name::after {
        width: 40px;
    }
    
    .doctor-role {
        font-size: 12px;
        gap: 5px;
    }
    
    .doctor-role::before {
        width: 4px;
        height: 4px;
    }
    
    .doctor-experience-tag {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 10px;
        border-radius: 12px;
    }
    
    .doctor-badge-wrapper {
        padding-top: 14px;
        border-top: 1px solid #f0f0f0;
    }
    
    .doctor-badge {
        padding: 0;
        gap: 5px;
        background: transparent;
        border: none;
    }
    
    .doctor-badge svg {
        width: 11px;
        height: 11px;
    }
    
    .doctor-badge span {
        font-size: 10px;
    }
}

@media (max-width: 600px) {
    .doctors-page-header {
        padding: 32px 0 24px;
        margin-bottom: 32px;
    }
    
    .doctors-page-header-inner {
        padding: 0 16px;
    }
    
    .doctors-page-title {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .doctors-page-subtitle {
        font-size: 15px;
    }
    
    .doctors-container {
        padding: 0 16px 40px;
    }
    
    .doctors-intro-section {
        margin-bottom: 32px;
        padding-top: 8px;
    }
    
    .doctors-intro-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }
    
    .doctor-card {
        border-radius: 16px;
        max-width: 100%;
    }
    
    .doctor-photo-container {
        aspect-ratio: 3 / 4;
    }
    
    .doctor-image-placeholder {
        font-size: 56px;
    }
    
    .doctor-content {
        padding: 22px 20px 3px;
        gap: 12px;
    }
    
    .doctor-info-header {
        gap: 6px;
    }
    
    .doctor-name {
        font-size: 20px;
        padding-bottom: 10px;
        line-height: 1.3;
    }
    
    .doctor-name::after {
        width: 35px;
        height: 2.5px;
    }
    
    .doctor-card:hover .doctor-name::after {
        width: 50px;
    }
    
    .doctor-role {
        font-size: 13px;
        gap: 6px;
    }
    
    .doctor-role::before {
        width: 5px;
        height: 5px;
    }
    
    .doctor-experience-tag {
        bottom: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 11px;
        border-radius: 14px;
    }
    
    .doctor-badge-wrapper {
        padding-top: 16px;
        border-top: 1px solid #f0f0f0;
    }
    
    .doctor-badge {
        padding: 0;
        gap: 6px;
        background: transparent;
        border: none;
    }
    
    .doctor-badge svg {
        width: 12px;
        height: 12px;
    }
    
    .doctor-badge span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .doctors-page-header {
        padding: 28px 0 20px;
        margin-bottom: 28px;
    }
    
    .doctors-page-title {
        font-size: 28px;
    }
    
    .doctors-page-subtitle {
        font-size: 14px;
    }
    
    .doctors-container {
        padding: 0 12px 32px;
    }
    
    .doctors-intro-section {
        margin-bottom: 28px;
    }
    
    .doctors-intro-text {
        font-size: 13px;
    }
    
    .doctors-grid {
        gap: 20px;
    }
    
    .doctor-content {
        padding: 20px 16px 3px;
        gap: 10px;
    }
    
    .doctor-name {
        font-size: 18px;
        padding-bottom: 8px;
    }
    
    .doctor-name::after {
        width: 30px;
        height: 2px;
    }
    
    .doctor-role {
        font-size: 12px;
    }
    
    .doctor-experience-tag {
        bottom: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .doctor-badge-wrapper {
        padding-top: 14px;
    }
    
    .doctor-badge svg {
        width: 11px;
        height: 11px;
    }
    
    .doctor-badge span {
        font-size: 9px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #03373B 0%, #006F77 100%);
    color: #ffffff;
    padding: 30px 100px 24px;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
}

@media (min-width: 1921px) {
    footer {
        padding-left: calc((100vw - 1920px) / 2 + 100px);
        padding-right: calc((100vw - 1920px) / 2 + 100px);
    }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

/* Ensure WordPress menu structure works with footer nav design */
.footer-nav ul,
.footer-nav ul#footer-menu {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li a {
    display: inline-flex;
    align-items: center;
}

.footer-nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #84CFD5, transparent);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #84CFD5;
    transition: width 0.3s ease;
}

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

.footer-nav a:hover::after {
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    position: relative;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #84CFD5, transparent);
}

.footer-column p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-column p:hover {
    color: #ffffff;
}

/* Address Modern Design */
.address .address-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    gap: 10px;
    transition: all 0.3s ease;
}

.address .address-icon {
    flex-shrink: 0;
    color: #84CFD5;
    transition: color 0.3s ease, transform 0.3s ease;
    margin-top: 2px;
}

.address .address-item:hover .address-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.address .address-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address .address-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}

.address .address-item:hover .address-content p {
    color: #ffffff;
}

.address .view-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #84CFD5;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    width: fit-content;
}

.address .view-map-link .map-icon {
    flex-shrink: 0;
    color: #84CFD5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.address .view-map-link:hover {
    color: #ffffff;
}

.address .view-map-link:hover .map-icon {
    color: #ffffff;
    transform: scale(1.1);
}

/* Opening Hours Modern Design */
.opening-hours .hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 10px;
}

.opening-hours .hours-icon {
    flex-shrink: 0;
    color: #84CFD5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.opening-hours .hours-item:hover .hours-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.opening-hours .hours-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.opening-hours .hours-item:hover {
    padding-left: 8px;
    border-bottom-color: rgba(132, 207, 213, 0.3);
}

.opening-hours .hours-day {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.opening-hours .hours-time {
    font-size: 15px;
    font-weight: 600;
    color: #84CFD5;
    text-align: right;
    padding-left: 16px;
}

.opening-hours .hours-item.closed .hours-time {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.opening-hours .hours-item:hover .hours-day {
    color: #ffffff;
}

.opening-hours .hours-item:hover .hours-time {
    color: #ffffff;
}

.opening-hours .hours-item.closed:hover .hours-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Telephones Modern Design */
.telephones .phone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 10px;
}

.telephones .phone-icon {
    flex-shrink: 0;
    color: #84CFD5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.telephones .phone-item:hover .phone-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.telephones .phone-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.telephones .phone-item:hover {
    padding-left: 8px;
    border-bottom-color: rgba(132, 207, 213, 0.3);
}

.telephones .phone-label {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.telephones .phone-number {
    font-size: 15px;
    font-weight: 600;
    color: #84CFD5;
    text-align: right;
    padding-left: 16px;
}

.telephones .phone-item:hover .phone-label {
    color: #ffffff;
}

.telephones .phone-item:hover .phone-number {
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 12px;
    background: rgba(132, 207, 213, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

.social-icon:hover {
    background: rgba(132, 207, 213, 0.2);
    border-color: #84CFD5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(132, 207, 213, 0.3);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-icon:hover svg {
    transform: scale(1.1);
}

.social-icon svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.social-icon:hover svg path {
    fill: #84CFD5;
}

.ida-register {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.ida-register span {
    color: #84CFD5;
    font-weight: 600;
}

/* Footer CTA Section - Modern Design */
.footer-cta {
    margin: 0;
    padding: 60px 80px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* Modern SVG Background - Dent Icon for Footer CTA */
.footer-cta::before {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 280px;
    height: 280px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.footer-cta::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 240px;
    height: 240px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    opacity: 0.1;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0;
    filter: brightness(0) invert(1);
}

.footer-cta:hover::before {
    opacity: 0.2;
    transform: scale(1.08) rotate(-8deg);
}

.footer-cta:hover::after {
    opacity: 0.15;
    transform: scale(1.08) rotate(8deg);
}

@media (min-width: 1921px) {
    .footer-cta {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

.footer-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-cta-text {
    flex: 1;
}

.footer-cta-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.footer-cta-description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.footer-cta-button {
    flex-shrink: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: #ffffff;
    color: #02717a;
    border: 2px solid #ffffff;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.footer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #015d65 0%, #019d99 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.footer-cta-btn svg,
.footer-cta-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
    border-color: #ffffff;
}

.footer-cta-btn:hover::before {
    left: 0;
}

.footer-cta-btn:hover svg,
.footer-cta-btn:hover span {
    color: #ffffff;
}

.footer-cta-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 1;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(132, 207, 213, 0.5), transparent);
}

.footer-copyright {
    flex: 1;
    min-width: 200px;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.footer-policies {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.footer-policies a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #84CFD5;
    transition: width 0.3s ease;
}

.footer-policies a:hover {
    color: #84CFD5;
}

.footer-policies a:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    footer {
        padding: 28px 48px 20px;
    }

    .footer-nav {
        gap: 16px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 20px;
    }

    .footer-column h4 {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .footer-cta {
        padding: 60px 48px;
    }

    .footer-cta::after {
        width: 300px;
        height: 300px;
        bottom: -30px;
        right: -30px;
    }

    .footer-cta-content {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }

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

    .footer-cta-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .footer-cta-description {
        font-size: 18px;
        line-height: 1.6;
    }

    .footer-cta-btn {
        width: auto;
        min-width: 240px;
        justify-content: center;
        padding: 20px 40px;
        font-size: 17px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 20px;
    }

    .footer-policies {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 20px 20px 16px;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .footer-nav {
        gap: 16px;
        margin-bottom: 16px;
        padding-bottom: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
        padding-left: 0;
        max-width: 100%;
        padding-right: 0;
        justify-content: flex-start;
    }

    .footer-nav::-webkit-scrollbar {
        height: 4px;
    }

    .footer-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .footer-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }

    .footer-nav::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .footer-nav a {
        font-size: 13px;
        padding: 4px 0;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        margin-bottom: 16px;
    }

    .footer-cta {
        padding: 50px 20px;
    }

    .footer-cta::after {
        width: 250px;
        height: 250px;
        bottom: -20px;
        right: -20px;
        opacity: 0.1;
    }

    .footer-cta-content {
        gap: 28px;
        align-items: center;
        text-align: center;
    }
    
    .footer-cta-text {
        text-align: center;
    }
    
    .footer-cta-button {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-cta-title {
        font-size: 32px;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .footer-cta-description {
        font-size: 17px;
        line-height: 1.6;
    }

    .footer-cta-btn {
        padding: 20px 36px;
        font-size: 17px;
        width: 100%;
        max-width: 100%;
        border-radius: 50px;
    }

    .footer-cta-btn:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .footer-cta-btn svg {
        width: 20px;
        height: 20px;
    }

    .footer-column {
        text-align: left;
        min-width: 0;
    }

    .opening-hours,
    .telephones {
        width: 100%;
    }

    .footer-column h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-column h4::after {
        left: 0;
        transform: none;
    }

    .footer-column p {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.5;
    }

    .address .address-item {
        padding: 8px 0;
    }

    .address .address-icon {
        width: 16px;
        height: 16px;
    }

    .address .address-content p {
        font-size: 13px;
    }

    .address .view-map-link {
        font-size: 12px;
        gap: 4px;
    }

    .address .view-map-link .map-icon {
        width: 12px;
        height: 12px;
    }

    .opening-hours .hours-item {
        padding: 8px 0;
        margin-bottom: 6px;
        gap: 8px;
    }

    .opening-hours .hours-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .opening-hours .hours-day {
        font-size: 13px;
        flex: 1;
    }

    .opening-hours .hours-time {
        font-size: 13px;
        padding-left: 8px;
        text-align: right;
        white-space: nowrap;
    }

    .telephones .phone-item {
        padding: 8px 0;
        margin-bottom: 6px;
        gap: 8px;
    }

    .telephones .phone-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .telephones .phone-label {
        display: none;
    }

    .telephones .phone-number {
        font-size: 13px;
        padding-left: 0;
        text-align: left;
        white-space: nowrap;
        flex: 1;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .social-icon-twitter,
    .social-icon[aria-label="X"],
    .social-icon[aria-label="Twitter"],
    .social-icon[aria-label="twitter"] {
        display: none !important;
    }
    
    /* Hide Twitter by matching the platform value or URL */
    .social-icon[href*="twitter.com"],
    .social-icon[href*="x.com"] {
        display: none !important;
    }

    .ida-register {
        font-size: 12px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 12px;
        padding-top: 16px;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-copyright p {
        font-size: 12px;
    }

    .footer-policies {
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-policies a {
        font-size: 12px;
    }
}

/* Before/After Section */
.before-after-section {
    width: 100%;
    padding: 40px 0 80px;
    padding-left: 0;
    padding-right: 0;
    background: #fff;
    display: block;
    visibility: visible;
    box-sizing: border-box;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1921px) {
    .before-after-section {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

.before-after-section-title {
    padding: 0 0 50px;
    max-width: 1400px;
    margin: 0 auto 0;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 1921px) {
    .before-after-section-title {
        padding-left: calc((100vw - 1920px) / 2 + 80px);
        padding-right: calc((100vw - 1920px) / 2 + 80px);
    }
}

.before-after-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.before-after-heading-content {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.before-after-heading-button {
    flex-shrink: 0;
}

.before-after-section-title h3 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.before-after-section-title h3 .accent {
    color: #01737b;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.before-after-section-title h3 .accent::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
    opacity: 0.25;
    transform: translateY(2px);
}

.before-after-heading-content p {
    font-size: 19px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    margin: 16px 0 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: 0.01em;
    opacity: 0.85;
}

.before-after-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    display: block;
    visibility: visible;
    box-sizing: border-box;
}

@media (min-width: 1921px) {
    .before-after-container {
        padding-left: calc((100vw - 1920px) / 2);
        padding-right: calc((100vw - 1920px) / 2);
    }
}

.slider-disclaimer-wrapper {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    max-width: 100%;
    position: relative;
    z-index: 10;
    text-align: left;
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.before-after-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

.before-after-left {
    flex: 0 0 calc(50% - 30px);
    width: calc(50% - 30px);
    padding: 0;
    box-sizing: border-box;
}

.before-after-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #073f3f;
    line-height: 1.1;
    margin: 0 0 32px;
    letter-spacing: -0.02em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.before-after-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 24px;
    font-weight: 400;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.before-after-text-secondary {
    font-size: 1rem;
    line-height: 1.65;
    color: #666;
    margin: 0 0 48px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    }
}

.stat-box {
    background: #ffffff;
    border: 1px solid #e8f4f5;
    border-radius: 20px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(2, 113, 122, 0.08);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.15);
    border-color: #02b9b6;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 8px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.stat-label {
    font-size: 0.85rem;
    color: #073f3f;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: 100%;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.stat-box:hover .stat-label {
    opacity: 1;
}

.before-after-right {
    flex: 0 0 calc(50% - 30px);
    width: calc(50% - 30px);
    box-sizing: border-box;
}

.slider-disclaimer {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    background: #e8f4f5 !important;
    border-left: 4px solid #02717a !important;
    border-radius: 6px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #073f3f !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    min-height: auto;
    box-shadow: 0 2px 4px rgba(2, 113, 122, 0.1);
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    font-weight: 400 !important;
}

.slider-disclaimer-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #02717a;
    margin-top: 2px;
}

.slider-disclaimer-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.slider-disclaimer p {
    margin: 0 !important;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif !important;
    font-weight: 400 !important;
    color: #073f3f !important;
    display: block !important;
    visibility: visible !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    flex: 1;
}

.slider-disclaimer p strong {
    color: #02717a !important;
    font-weight: 600 !important;
}

.slider-container {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-image {
    clip-path: inset(0 50% 0 0);
    z-index: 1;
}

.after-image {
    z-index: 0;
}

.slider-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #fff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: 3px solid #02717a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: grab;
    transition: transform 0.1s ease;
}

.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-handle svg {
    width: 20px;
    height: 20px;
    color: #02717a;
}

.slider-label {
    position: absolute;
    top: 16px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #073f3f;
    z-index: 11;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.before-label {
    left: 16px;
}

.after-label {
    right: 16px;
}

.thumbnails-label {
    display: none;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px;
    text-align: center;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.before-images-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.before-image-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.before-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.before-image-item.active {
    border-color: #02717a;
    box-shadow: 0 4px 16px rgba(2, 113, 122, 0.3);
    transform: translateY(-4px);
}

.before-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Styles for Before/After Section */
@media (max-width: 1024px) {
    .slider-disclaimer-wrapper {
        padding: 0;
    }
    
    .before-after-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .before-after-left {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .before-after-right {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .before-after-headline {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .before-after-section {
        padding: 32px 16px 60px;
        max-width: 100%;
    }
    
    .before-after-section-title {
        padding: 0 0 45px;
        max-width: 100%;
        margin: 0 auto 0;
    }
    
    .before-after-heading-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
        text-align: center;
    }
    
    .before-after-heading-content {
        text-align: center;
        width: 100%;
    }
    
    .before-after-heading-button-desktop {
        display: none;
    }
    
    .before-after-view-all-mobile {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .before-after-view-all-mobile .view-all-services-btn {
        width: auto;
        min-width: 220px;
    }
    
    .before-after-section-title h3 {
        font-size: 38px;
        letter-spacing: -0.025em;
        text-align: center;
        margin-bottom: 14px;
    }
    
    .before-after-section-title h3 .accent::after {
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
    }
    
    .before-after-heading-content p {
        font-size: 17px;
        margin-top: 8px;
        padding: 0 12px;
    }
    
    .slider-disclaimer-wrapper {
        padding: 0;
    }
    
    .before-after-content {
        padding: 0;
        gap: 36px;
    }
    
    .before-after-left {
        padding: 0 4px;
    }
    
    .before-after-headline {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .before-after-text {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 24px;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .before-after-text-secondary {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-box {
        padding: 20px 18px;
        min-height: 110px;
        border-radius: 16px;
    }
    
    .stat-box:hover {
        transform: translateY(-2px);
    }
    
    .stat-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .slider-handle {
        width: 40px;
        height: 40px;
    }
    
    .slider-handle svg {
        width: 18px;
        height: 18px;
    }
    
    .slider-disclaimer {
        margin: 0 !important;
        padding: 10px 14px !important;
        font-size: 11px !important;
        gap: 10px !important;
    }
    
    .slider-disclaimer-icon {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }
    
    .thumbnails-label {
        display: block;
    }
    
    .before-images-grid {
        display: flex;
        flex-direction: row;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 0 16px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(2, 113, 122, 0.3) transparent;
    }
    
    .before-images-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .before-images-grid::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .before-images-grid::-webkit-scrollbar-thumb {
        background: rgba(2, 113, 122, 0.3);
        border-radius: 3px;
    }
    
    .before-images-grid::-webkit-scrollbar-thumb:hover {
        background: rgba(2, 113, 122, 0.5);
    }
    
    .before-image-item {
        width: 100px;
        min-width: 100px;
        border-width: 2px;
        border-radius: 10px;
        scroll-snap-align: start;
    }
    
    .before-image-item.active {
        border-color: #02717a;
        border-width: 3px;
        box-shadow: 0 6px 20px rgba(2, 113, 122, 0.4);
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .before-after-section {
        padding: 32px 16px 30px;
        max-width: 100%;
    }
    
    .before-after-section-title {
        padding: 0 12px 35px;
        margin: 0 auto 0;
    }
    
    .before-after-heading-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .before-after-heading-content {
        text-align: center;
        width: 100%;
    }
    
    .before-after-heading-button-desktop {
        display: none;
    }
    
    .before-after-view-all-mobile {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .before-after-view-all-mobile .view-all-services-btn {
        width: auto;
        min-width: 180px;
        padding: 12px 24px;
        font-size: 14px;
    }

    .before-after-section-title h3 {
        font-size: 32px;
        letter-spacing: -0.02em;
        margin-bottom: 10px;
        text-align: center;
    }

    .before-after-section-title h3 .accent {
        display: block;
    }

    .before-after-section-title h3 .accent::after {
        height: 3px;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 75%;
    }
    
    .before-after-heading-content p {
        font-size: 15px;
        line-height: 1.55;
        margin-top: 6px;
        max-width: 100%;
        padding: 0 4px;
    }
    
    .slider-disclaimer-wrapper {
        padding: 0;
        padding-top: 8px;
        padding-bottom: 30px;
    }
    
    .before-after-content {
        padding: 0;
        gap: 32px;
    }
    
    .before-after-left {
        padding: 0 2px;
    }
    
    .stats-grid {
        gap: 16px;
    }
    
    .stat-box {
        padding: 20px 16px;
        min-height: 100px;
        border-radius: 16px;
    }
    
    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .before-after-headline {
        font-size: 1.75rem;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 18px;
        letter-spacing: -0.01em;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .before-after-text {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 20px;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .before-after-text-secondary {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }
    
    .slider-disclaimer {
        margin: 0 !important;
        padding: 10px 12px !important;
        font-size: 10px !important;
        border-left-width: 3px !important;
        gap: 8px !important;
    }
    
    .slider-disclaimer-icon {
        width: 16px;
        height: 16px;
        margin-top: 1px;
    }
}

/* Appointment Booking Page Styles */
/* Appointment Page Header - Matching other pages */
.appointment-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.appointment-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.appointment-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.appointment-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Signals Section */
.appointment-trust-section {
    margin-top: 13px;
    margin-bottom: 80px;
    padding: 0 10px;
    width: 100%;
}

.appointment-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.appointment-trust-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.appointment-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.appointment-trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(2, 113, 122, 0.15);
    border-color: #02717a;
}

.appointment-trust-card:hover::before {
    transform: scaleX(1);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.4s ease;
}

.appointment-trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-number {
    font-size: 42px;
    font-weight: 800;
    color: #02717a;
    margin-bottom: 8px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.trust-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Main Content Layout */
.appointment-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}


.appointment-benefits-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    text-align: center;
}

.appointment-benefits-subtitle {
    font-size: 19px;
    color: #666;
    margin: 0 auto 50px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    max-width: 700px;
    text-align: center;
}

.appointment-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.appointment-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 20px;
    border: 2px solid #e8f4f5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.appointment-benefit-item:hover {
    border-color: #02717a;
    box-shadow: 0 8px 32px rgba(2, 113, 122, 0.15);
    transform: translateY(-8px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.appointment-benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content {
    width: 100%;
}

.benefit-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.benefit-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Testimonials Carousel Section */
.appointment-testimonials-carousel {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-carousel-wrapper::before,
.testimonials-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-carousel-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    will-change: transform;
    padding: 0 220px;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 0;
}

.testimonial-content {
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 24px;
    padding: 40px 35px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-quote {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-style: italic;
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.testimonial-author span {
    font-size: 14px;
    opacity: 0.9;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.333% - 30px));
    }
}

/* Responsive adjustments for testimonials carousel */
@media (max-width: 1200px) {
    .testimonials-carousel-wrapper::before,
    .testimonials-carousel-wrapper::after {
        width: 150px;
    }
    
    .testimonials-carousel-track {
        padding: 0 170px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper::before,
    .testimonials-carousel-wrapper::after {
        width: 80px;
    }
    
    .testimonials-carousel-track {
        padding: 0 90px;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

/* Form Focused Section */
.appointment-form-focused {
    max-width: 900px;
    margin: 0 auto 80px;
}

.appointment-form-hero {
    text-align: left;
}

.form-hero-content {
    margin-bottom: 50px;
}

.appointment-form-card-large {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px 50px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.appointment-form-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
}

.appointment-form-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
}

.appointment-form-subtitle {
    font-size: 20px;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    max-width: 700px;
}

.appointment-form-content {
    width: 100%;
    margin-bottom: 30px;
}

/* WPForms Submit Button Styling */
#wpforms-form-188 .wpforms-submit,
.wpforms-form .wpforms-submit {
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 22px 48px;
    font-size: 19px;
    font-weight: 800;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(2, 113, 122, 0.25);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-height: 64px;
}

#wpforms-form-188 .wpforms-submit::after,
.wpforms-form .wpforms-submit::after {
    content: '→';
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 4px;
    position: relative;
    vertical-align: middle;
}

#wpforms-form-188 .wpforms-submit[type="submit"]::after,
.wpforms-form .wpforms-submit[type="submit"]::after,
#wpforms-form-188 .wpforms-submit.submitting::after,
.wpforms-form .wpforms-submit.submitting::after {
    transform: translateX(4px);
}

#wpforms-form-188 .wpforms-submit::before,
.wpforms-form .wpforms-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

#wpforms-form-188 .wpforms-submit:hover::before,
.wpforms-form .wpforms-submit:hover::before {
    left: 100%;
}

#wpforms-form-188 .wpforms-submit:hover,
.wpforms-form .wpforms-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.35);
    background: linear-gradient(135deg, #025a61 0%, #019a97 100%);
}

#wpforms-form-188 .wpforms-submit:hover::after,
.wpforms-form .wpforms-submit:hover::after,
#wpforms-form-188 .wpforms-submit:active::after,
.wpforms-form .wpforms-submit:active::after,
#wpforms-form-188 .wpforms-submit:focus::after,
.wpforms-form .wpforms-submit:focus::after,
#wpforms-form-188 .wpforms-submit.submitting::after,
.wpforms-form .wpforms-submit.submitting::after {
    transform: translateX(4px);
}

#wpforms-form-188 .wpforms-submit:active,
.wpforms-form .wpforms-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 113, 122, 0.25);
}

#wpforms-form-188 .wpforms-submit:focus,
.wpforms-form .wpforms-submit:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 113, 122, 0.25), 0 6px 20px rgba(2, 113, 122, 0.25);
}

#wpforms-form-188 .wpforms-submit-container,
.wpforms-form .wpforms-submit-container {
    text-align: left;
    margin-top: 35px;
    width: 100%;
}

@media (max-width: 600px) {
    #wpforms-form-188 .wpforms-submit,
    .wpforms-form .wpforms-submit {
        padding: 20px 32px;
        font-size: 17px;
        border-radius: 14px;
        min-height: 60px;
        gap: 10px;
    }
    
    #wpforms-form-188 .wpforms-submit::after,
    .wpforms-form .wpforms-submit::after {
        width: 18px;
        height: 18px;
    }
    
    #wpforms-form-188 .wpforms-submit-container,
    .wpforms-form .wpforms-submit-container {
        text-align: center;
    }
}

.form-footer {
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
}

.form-guarantee svg {
    color: #02717a;
    flex-shrink: 0;
}

.appointment-page {
    padding: 0;
}

.appointment-page .container {
    padding: 0 80px 100px;
}


/* Responsive Styles for Appointment Page */
@media (max-width: 1024px) {
    .appointment-trust-section {
        padding: 0 10px;
    }
    
    .appointment-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .appointment-container {
        padding: 0;
    }
    
    .appointment-form-focused {
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .appointment-form-card-large {
        padding: 50px 40px;
    }
    
    .appointment-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .appointment-trust-section {
        padding: 0 10px;
        margin-bottom: 60px;
    }
    
    .appointment-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .appointment-trust-card {
        padding: 30px 24px;
    }
    
    .trust-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .trust-number {
        font-size: 36px;
    }
    
    .trust-label {
        font-size: 14px;
    }
    
    .appointment-container {
        padding: 0;
    }
    
    .appointment-form-focused {
        margin-bottom: 50px;
    }
    
    .form-hero-content {
        margin-bottom: 40px;
    }
    
    .appointment-form-title {
        font-size: 36px;
    }
    
    .appointment-form-subtitle {
        font-size: 18px;
    }
    
    .appointment-form-card-large {
        padding: 40px 35px;
    }
    
    .appointment-benefits-title {
        font-size: 36px;
    }
    
    .appointment-benefits-subtitle {
        font-size: 17px;
    }
    
    .appointment-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .appointment-trust-section {
        padding: 0 10px;
        margin-bottom: 50px;
    }
    
    .appointment-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .appointment-trust-card {
        padding: 25px 20px;
    }
    
    .trust-icon {
        width: 48px;
        height: 48px;
    }
    
    .trust-number {
        font-size: 32px;
    }
    
    .trust-label {
        font-size: 13px;
    }
    
    .appointment-container {
        padding: 0;
    }
    
    .appointment-form-focused {
        margin-bottom: 40px;
    }
    
    .form-hero-content {
        margin-bottom: 30px;
    }
    
    .appointment-form-title {
        font-size: 32px;
    }
    
    .appointment-form-subtitle {
        font-size: 17px;
    }
    
    .appointment-form-card-large {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .appointment-benefits-title {
        font-size: 28px;
    }
    
    .appointment-benefits-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .appointment-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .appointment-benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .benefit-content h3 {
        font-size: 20px;
    }
    
    .benefit-content p {
        font-size: 15px;
    }
    
    .appointment-testimonials-carousel {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    
    .testimonials-carousel-wrapper::before,
    .testimonials-carousel-wrapper::after {
        width: 80px;
    }
    
    .testimonials-carousel-track {
        padding: 0 80px;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .testimonial-content {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper::before,
    .testimonials-carousel-wrapper::after {
        width: 50px;
    }
    
    .testimonials-carousel-track {
        padding: 0 50px;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(100% - 0px);
    }
}

/* Articles/Blog Page Styles */
.articles-page {
    padding: 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

.articles-page .container {
    padding-top: 0;
}

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

/* Articles Header */
.articles-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-month-year {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.calendar-nav {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #02717a;
    color: #ffffff;
    border-color: #02717a;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-date {
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    position: relative;
}

.calendar-date-available {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #333;
}

.calendar-date-available:hover {
    border-color: #02717a;
    background: #f0ffff;
}

.calendar-date-occupied {
    background: #e8f4f5;
    border: 2px solid #02717a;
    color: #666;
    cursor: not-allowed;
}

.calendar-date-allocated {
    background: #02717a;
    border: none;
    color: #ffffff;
}

.calendar-date.selected {
    border: 3px solid #02b9b6;
    box-shadow: 0 0 0 3px rgba(2, 185, 182, 0.2);
}

/* Doctors Section */
.appointment-doctors-wrapper {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.appointment-doctors-wrapper::-webkit-scrollbar {
    width: 6px;
}

.appointment-doctors-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.appointment-doctors-wrapper::-webkit-scrollbar-thumb {
    background: #02717a;
    border-radius: 3px;
}

.selected-date-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.doctors-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.doctor-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #02717a;
}

.doctor-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0;
}

.doctor-card:hover .doctor-remove {
    opacity: 1;
}

.doctor-remove:hover {
    background: #fee;
    color: #f44;
}

.doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 3px solid #e8f4f5;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doctor-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.doctor-experience,
.doctor-specialization {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.doctor-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.slot-btn {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.slot-available {
    border-color: #e0e0e0;
    color: #333;
}

.slot-available:hover {
    border-color: #02717a;
    background: #f0ffff;
    color: #02717a;
}

.slot-selected {
    background: #02717a;
    border-color: #02717a;
    color: #ffffff;
}

.slot-unavailable {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.no-doctors {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Summary Section */
.appointment-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    gap: 20px;
}

.summary-content {
    flex: 1;
}

.summary-text {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.appointment-continue-btn {
    background: #02717a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    white-space: nowrap;
}

.appointment-continue-btn:hover {
    background: #02b9b6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.3);
}

.appointment-continue-btn:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .appointment-doctors-wrapper {
        max-height: none;
    }
}

@media (max-width: 1024px) {
    .appointment-page .container {
        padding: 0 60px 80px;
    }
}

@media (max-width: 900px) {
    .appointment-page .container {
        padding: 0 40px 60px;
    }
}

@media (max-width: 600px) {
    .appointment-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .appointment-header-inner {
        padding: 0 30px;
    }
    
    .appointment-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .appointment-subtitle {
        font-size: 17px;
    }
    
    .appointment-page .container {
        padding: 0 30px 50px;
    }
    
    .appointment-container {
        padding: 0;
    }
    
    .appointment-form-title {
        font-size: 32px;
    }
    
    .appointment-form-subtitle {
        font-size: 17px;
    }
    
    .appointment-page {
        padding: 0;
    }
    
    .appointment-content {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .appointment-calendar-wrapper {
        padding: 16px;
    }
    
    .calendar-month-year {
        font-size: 18px;
    }
    
    .calendar-nav {
        width: 32px;
        height: 32px;
    }
    
    .calendar-date {
        font-size: 13px;
    }
    
    .selected-date-title {
        font-size: 18px;
    }
    
    .doctor-card {
        padding: 16px;
    }
    
    .doctor-image {
        width: 60px;
        height: 60px;
    }
    
    .doctor-name {
        font-size: 16px;
    }
    
    .doctor-experience,
    .doctor-specialization {
        font-size: 13px;
    }
    
    .appointment-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .appointment-continue-btn {
        width: 100%;
        padding: 16px 24px;
    }
}

/* Articles/Blog Page Styles */
.articles-page {
    padding: 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

.articles-page .container {
    padding-top: 0;
}

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

/* Articles Header */
.articles-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
}

.articles-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.articles-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.articles-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 0;
}

.article-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(2, 113, 122, 0.18);
    border-color: #e8f4f5;
}

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

.article-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: visible;
}

.article-image {
    width: 100%;
    height: 240px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    flex-shrink: 0;
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 113, 122, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.article-card:hover .article-image::after {
    opacity: 1;
}

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

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.article-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    min-height: 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    flex-wrap: wrap;
}

.article-blog-name {
    font-size: 13px;
    color: #02717a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(2, 113, 122, 0.1) 0%, rgba(2, 185, 182, 0.1) 100%);
    border-radius: 12px;
    border: 1px solid rgba(2, 113, 122, 0.15);
}

.article-date {
    font-size: 13px;
    color: #666;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    opacity: 0.8;
}

.article-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    transition: color 0.3s ease;
    display: block !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    width: 100%;
}

.article-title a:hover {
    color: #02717a;
}

.article-read-more {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #02717a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    width: fit-content;
}

.article-read-more:hover {
    color: #02b9b6;
    gap: 10px;
}

.article-read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.article-read-more:hover::after {
    transform: translateX(4px);
}

/* Pagination */
.articles-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding-top: 40px;
}

.articles-pagination .page-numbers,
.articles-pagination ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.articles-pagination .page-numbers li,
.articles-pagination li {
    margin: 0;
    list-style: none;
}

.articles-pagination .page-number {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #02717a;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
}

.articles-pagination .page-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.articles-pagination .page-number span,
.articles-pagination .page-number {
    position: relative;
    z-index: 1;
}

.articles-pagination .page-number:hover {
    border-color: #02717a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.25);
}

.articles-pagination .page-number:hover::before {
    width: 100%;
    height: 100%;
}

.articles-pagination .page-number.current {
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    border-color: #02717a;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.3);
}

.articles-pagination .page-number.current::before {
    width: 100%;
    height: 100%;
}

.articles-pagination .page-number.dots {
    border: none;
    background: transparent;
    color: #999;
    cursor: default;
    width: auto;
    min-width: auto;
    height: auto;
    padding: 0 8px;
    font-weight: 400;
}

.articles-pagination .page-number.dots:hover {
    background: transparent;
    color: #999;
    transform: none;
    border: none;
    box-shadow: none;
}

.articles-pagination .page-number.dots::before {
    display: none;
}

/* Responsive Styles for Articles */
@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .articles-container {
        padding: 0 30px;
    }
}

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

@media (max-width: 900px) {
    .articles-page {
        padding: 50px 0 0;
    }
    
    .articles-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .articles-header-inner {
        padding: 0 30px;
    }
    
    .articles-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .articles-subtitle {
        font-size: 17px;
    }
    
    .appointment-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .appointment-header-inner {
        padding: 0 30px;
    }
    
    .appointment-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .appointment-subtitle {
        font-size: 17px;
    }
    
    .appointment-container {
        padding: 0;
    }
    
    .appointment-form-title {
        font-size: 32px;
    }
    
    .appointment-form-subtitle {
        font-size: 17px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 0;
    }
    
    .articles-container {
        padding: 0 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-meta {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .article-blog-name {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .article-date {
        font-size: 12px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .articles-pagination {
        margin-top: 60px;
        padding-top: 30px;
    }
}

@media (max-width: 600px) {
    .articles-page {
        padding: 40px 0 0;
    }
    
    .articles-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .articles-header-inner {
        padding: 0 20px;
    }
    
    .articles-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .articles-subtitle {
        font-size: 17px;
    }
    
    .appointment-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .appointment-header-inner {
        padding: 0 20px;
    }
    
    .appointment-title {
        font-size: 36px;
    }
    
    .appointment-subtitle {
        font-size: 16px;
    }
    
    .appointment-page .container {
        padding: 0 20px 50px;
    }
    
    .appointment-container {
        padding: 0;
    }
    
    .appointment-form-title {
        font-size: 26px;
    }
    
    .appointment-form-subtitle {
        font-size: 15px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 0;
    }
    
    .articles-container {
        padding: 0 16px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-meta {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .article-blog-name {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .article-date {
        font-size: 11px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .articles-pagination {
        margin-top: 50px;
        padding-top: 30px;
    }
    
    .articles-pagination .page-number {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .articles-pagination .page-numbers,
    .articles-pagination ul {
        gap: 8px;
    }
}

/* ========================================
   Single Post Page - Modern Design
   ======================================== */

.single-post-page {
    padding: 0;
    margin: 0;
}

/* Hero Section */
.single-post-hero {
    width: 100%;
    max-width: 1400px;
    height: 500px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f5 100%);
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
}

.single-post-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.single-post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Post Wrapper */
.single-post-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #ffffff;
}

.single-post-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0;
}

/* Post Header */
.single-post-header {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8f4f5;
    position: relative;
    z-index: 1;
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.single-post-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.3);
    color: #ffffff;
}

.single-post-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 30px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.02em;
}

.single-post-author-meta {
    margin-top: 30px;
}

.single-post-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.single-post-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8f4f5;
}

.single-post-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.single-post-author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-reading-time {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Post Content */
.single-post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-content p {
    margin: 0 0 24px;
}

.single-post-content h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 50px 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.01em;
}

.single-post-content h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 40px 0 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-content h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 30px 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-content ul,
.single-post-content ol {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.single-post-content ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-post-content ol {
    counter-reset: list-counter;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.single-post-content li {
    position: relative;
    padding-left: 40px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.single-post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(2, 113, 122, 0.1);
}

.single-post-content ol li {
    counter-increment: list-counter;
    padding-left: 50px;
}

.single-post-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    box-shadow: 0 2px 8px rgba(2, 113, 122, 0.2);
}

.single-post-content ul li ul,
.single-post-content ol li ol {
    margin-top: 16px;
    margin-bottom: 0;
    padding-left: 20px;
}

.single-post-content ul li ul li::before {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #02b9b6 0%, #02717a 100%);
    box-shadow: 0 0 0 3px rgba(2, 185, 182, 0.1);
}

.single-post-content ol li ol li::before {
    width: 28px;
    height: 28px;
    font-size: 13px;
    background: linear-gradient(135deg, #02b9b6 0%, #02717a 100%);
}

.single-post-content li p {
    margin: 0;
    display: inline;
}

.single-post-content a {
    color: #02717a;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.single-post-content a:hover {
    color: #02b9b6;
    border-bottom-color: #02b9b6;
}

.single-post-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.single-post-content blockquote {
    border-left: 4px solid #02717a;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8fbfb;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}

.single-post-content code {
    background: #f5f7fa;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    color: #02717a;
}

.single-post-content pre {
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 30px 0;
}

.single-post-content pre code {
    background: transparent;
    color: #ffffff;
    padding: 0;
}

.single-post-pages {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8f4f5;
}

.page-links-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.single-post-pages .page-numbers {
    display: inline-flex;
    gap: 8px;
    margin-top: 12px;
}

.single-post-pages .page-numbers a,
.single-post-pages .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #f5f7fa;
    color: #02717a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.single-post-pages .page-numbers a:hover {
    background: #02717a;
    color: #ffffff;
}

.single-post-pages .page-numbers .current {
    background: #02717a;
    color: #ffffff;
}

/* Post Footer - Hidden */
.single-post-footer {
    display: none;
}

.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 32px 32px;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 24px rgba(2, 113, 122, 0.06);
    position: relative;
    overflow: hidden;
}

.single-post-tags::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
}

.tags-label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 8px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tags-label::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    display: block;
}

.single-post-tags a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8fbfb 0%, #ffffff 100%);
    color: #02717a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 26px;
    border: 1.5px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.single-post-tags a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.single-post-tags a span,
.single-post-tags a {
    position: relative;
    z-index: 1;
}

.single-post-tags a:hover {
    color: #ffffff;
    border-color: #02717a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.3);
}

.single-post-tags a:hover::before {
    opacity: 1;
}

/* Author Bio */
.single-post-author-bio {
    display: flex;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, #f8fbfb 0%, #ffffff 100%);
    border-radius: 20px;
    margin: 60px 0;
    border: 1px solid #e8f4f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.single-post-author-bio-avatar {
    flex-shrink: 0;
}

.single-post-author-bio-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.single-post-author-bio-content {
    flex: 1;
}

.single-post-author-bio-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-author-bio-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Related Posts */
.single-post-related {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e8f4f5;
}

.single-post-related-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-align: center;
    letter-spacing: -0.01em;
}

.single-post-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single-post-related-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.single-post-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    border-color: #e8f4f5;
}

.single-post-related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: block;
    position: relative;
}

.single-post-related-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 113, 122, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.single-post-related-card:hover .single-post-related-image::after {
    opacity: 1;
}

.single-post-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.single-post-related-card:hover .single-post-related-image img {
    transform: scale(1.1);
}

.single-post-related-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.single-post-related-date {
    font-size: 12px;
    color: #666;
    margin: 0 0 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.single-post-related-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex: 1;
}

.single-post-related-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-post-related-card-title a:hover {
    color: #02717a;
}

/* Responsive Design for Single Post */
@media (max-width: 1024px) {
    .single-post-hero {
        max-width: 100%;
        border-radius: 0;
    }
    
    .single-post-wrapper {
        max-width: 100%;
        padding: 60px 30px;
    }
    
    .single-post-container {
        max-width: 80%;
        padding: 0;
    }
    
    .single-post-title {
        font-size: 42px;
    }
    
    .single-post-content {
        font-size: 17px;
    }
    
    .single-post-related-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .single-post-hero {
        max-width: 100%;
        height: 350px;
        border-radius: 0;
    }
    
    .single-post-wrapper {
        max-width: 100%;
        padding: 50px 20px;
    }
    
    .single-post-container {
        padding: 0;
    }
    
    .single-post-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .single-post-title {
        font-size: 32px;
    }
    
    .single-post-content {
        font-size: 16px;
        margin-bottom: 50px;
    }
    
    .single-post-content h2 {
        font-size: 26px;
        margin: 40px 0 20px;
    }
    
    .single-post-content h3 {
        font-size: 22px;
        margin: 30px 0 16px;
    }
    
    .single-post-author-bio {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .single-post-related {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .single-post-related-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .single-post-related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .single-post-hero {
        max-width: 100%;
        height: 280px;
        border-radius: 0;
    }
    
    .single-post-wrapper {
        max-width: 100%;
        padding: 40px 16px;
    }
    
    .single-post-title {
        font-size: 28px;
    }
    
    .single-post-content h2 {
        font-size: 22px;
    }
    
    .single-post-content h3 {
        font-size: 20px;
    }
    
    .single-post-author-bio-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .single-post-author-bio-title {
        font-size: 20px;
    }
    
    .single-post-related-title {
        font-size: 22px;
    }
}

/* ========================================
/* About Us Page Styles */
.about-page {
    padding: 0;
    background: #ffffff;
}

.about-page .container {
    padding: 0 80px 100px;
}

/* About Header */
.about-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.about-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Container */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Section Titles */
.about-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    text-align: center;
}

/* Mission & Vision Section */
.about-mission-vision {
    margin-bottom: 100px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.mission-vision-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent 0%, #02717a 50%, transparent 100%);
    z-index: 0;
    opacity: 0.3;
}

.mission-vision-card {
    padding: 0;
    background: #ffffff;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(2, 113, 122, 0.15);
    border-color: #e8f4f5;
}

.mission-vision-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfb 100%);
}

.mission-vision-card:hover .mission-vision-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f9 100%);
}

.mission-vision-icon-wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 18px;
    color: #02717a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.mission-vision-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mission-vision-card:hover .mission-vision-icon {
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.mission-vision-card:hover .mission-vision-icon::before {
    opacity: 1;
}

.mission-vision-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}

.mission-vision-card:hover .mission-vision-icon svg {
    transform: scale(1.1);
}

.mission-vision-text-wrapper {
    flex: 1;
}

.mission-vision-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.mission-vision-card:hover .mission-vision-title {
    color: #02717a;
}

.mission-vision-text {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    transition: color 0.3s ease;
}

.mission-vision-card:hover .mission-vision-text {
    color: #555;
}

/* Our Story Section */
.about-story {
    margin-bottom: 100px;
    position: relative;
}

.about-story-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e8f4f5 20%, #e8f4f5 80%, transparent 100%);
}

.about-story-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding-top: 40px;
}

.about-story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
}

.about-story-text p {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.about-story-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #02717a 0%, #02b9b6 100%);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-story-text p:hover {
    border-color: #e8f4f5;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.08);
    transform: translateY(-4px);
    color: #333;
}

.about-story-text p:hover::before {
    opacity: 1;
}

.about-story-text p:first-child {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
}

.about-story-text p:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f9 100%);
}

.about-story-text p:last-child {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
}

/* Why Choose Us Section */
.about-why-choose {
    margin-bottom: 100px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-card {
    padding: 40px 30px;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    border-color: #02717a;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.1);
    transform: translateY(-4px);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f9f9;
    border-radius: 16px;
    color: #02717a;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
}

.why-choose-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.why-choose-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Statistics Section */
.about-stats {
    margin-bottom: 100px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stat-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.25);
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.about-stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Values Section */
.about-values {
    margin-bottom: 100px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-value-card {
    padding: 40px 35px;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: #02717a;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.1);
    transform: translateY(-4px);
}

.about-value-title {
    font-size: 26px;
    font-weight: 700;
    color: #02717a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.about-value-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-page .container {
        padding: 0 60px 80px;
    }
    
    .about-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .about-header-inner {
        padding: 0 30px;
    }
    
    .about-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .about-subtitle {
        font-size: 17px;
    }
    
    .about-section-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .mission-vision-grid {
        gap: 30px;
    }
    
    .mission-vision-grid::before {
        display: none;
    }
    
    .mission-vision-content {
        padding: 45px 35px;
    }
    
    .mission-vision-icon {
        width: 65px;
        height: 65px;
    }
    
    .mission-vision-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .mission-vision-title {
        font-size: 32px;
    }
    
    .mission-vision-text {
        font-size: 16px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page .container {
        padding: 0 40px 60px;
    }
    
    .about-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .about-header-inner {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .about-subtitle {
        font-size: 17px;
    }
    
    .about-section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .about-mission-vision,
    .about-story,
    .about-why-choose,
    .about-stats,
    .about-values {
        margin-bottom: 60px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision-grid::before {
        display: none;
    }
    
    .mission-vision-content {
        padding: 40px 30px;
    }
    
    .mission-vision-icon-wrapper {
        margin-bottom: 25px;
    }
    
    .mission-vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-vision-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .mission-vision-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .mission-vision-text {
        font-size: 16px;
    }
    
    .about-story-text {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 30px;
    }
    
    .about-story-text::before {
        width: 60px;
        height: 3px;
    }
    
    .about-story-text p {
        padding: 25px;
        font-size: 16px;
    }
    
    .about-story-text p:first-child,
    .about-story-text p:nth-child(2),
    .about-story-text p:last-child {
        background: #ffffff;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-card {
        padding: 35px 25px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat-card {
        padding: 30px 20px;
    }
    
    .about-stat-number {
        font-size: 40px;
    }
    
    .about-stat-label {
        font-size: 14px;
    }
    
    .about-value-card {
        padding: 30px 25px;
    }
    
    .about-value-title {
        font-size: 22px;
    }
    
    .about-value-text {
        font-size: 15px;
    }
}

/* Reviews Page Styles */
.reviews-page {
    padding: 0;
    background: #ffffff;
}

.reviews-page .container {
    padding: 0 80px 100px;
}

/* Reviews Header */
.reviews-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.reviews-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.reviews-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.reviews-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Reviews Container */
.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Review Card - Modern Layout */
.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfb 100%);
    border: 1px solid #e8f4f5;
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.review-card:hover {
    border-color: #02717a;
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    transform: translateY(-6px);
    z-index: 2;
}

.review-card:hover::before {
    transform: scaleX(1);
    z-index: 10;
}

.review-header {
    padding: 30px 30px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(2, 113, 122, 0.3);
}

.review-author-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.3;
}

.review-service {
    font-size: 14px;
    color: #02717a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    background: #f0f9f9;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.review-rating {
    display: flex;
    gap: 6px;
    align-items: center;
}

.review-rating .star-filled {
    color: #ffc107;
    fill: #ffc107;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.review-rating .star-empty {
    color: #e0e0e0;
    fill: none;
}

.review-content {
    flex: 1;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fafbfb 0%, #ffffff 100%);
}

.review-comment {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    position: relative;
    padding-left: 24px;
}

.review-comment::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    font-weight: 700;
    color: #02717a;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 30px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.review-date {
    font-size: 13px;
    color: #999;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-date::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #02717a;
    opacity: 0.4;
}

/* Reviews Summary */
.reviews-summary {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
    border: 2px solid #e8f4f5;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.reviews-summary-content {
    max-width: 600px;
    margin: 0 auto;
}

.reviews-summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reviews-average-rating {
    font-size: 64px;
    font-weight: 800;
    color: #02717a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.reviews-average-stars {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews-average-stars .star-filled {
    color: #ffc107;
    fill: #ffc107;
}

.reviews-average-stars .star-half {
    color: #ffc107;
    fill: url(#star-gradient);
}

.reviews-average-stars .star-empty {
    color: #e0e0e0;
    fill: none;
}

.reviews-total {
    font-size: 18px;
    color: #666;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
}

/* Responsive Design for Reviews Page */
@media (max-width: 1024px) {
    .reviews-page .container {
        padding: 0 60px 80px;
    }
    
    .reviews-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .reviews-header-inner {
        padding: 0 30px;
    }
    
    .reviews-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .reviews-subtitle {
        font-size: 17px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .reviews-summary {
        padding: 40px 35px;
    }
    
    .reviews-average-rating {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .reviews-page .container {
        padding: 0 40px 60px;
    }
    
    .reviews-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .reviews-header-inner {
        padding: 0 20px;
    }
    
    .reviews-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .reviews-subtitle {
        font-size: 17px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .review-header {
        padding: 25px 25px 18px;
    }
    
    .review-avatar {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 14px;
    }
    
    .review-name {
        font-size: 18px;
    }
    
    .review-service {
        font-size: 13px;
        padding: 3px 10px;
    }
    
    .review-content {
        padding: 20px 25px;
    }
    
    .review-comment {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .review-comment::before {
        font-size: 40px;
        top: -6px;
    }
    
    .review-footer {
        padding: 18px 25px 25px;
    }
    
    .reviews-summary {
        padding: 35px 25px;
    }
    
    .reviews-average-rating {
        font-size: 48px;
    }
    
    .reviews-average-stars svg {
        width: 20px;
        height: 20px;
    }
    
    .reviews-total {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-page .container {
        padding: 0 20px 50px;
    }
    
    .reviews-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .reviews-title {
        font-size: 36px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
    
    .review-header {
        padding: 20px 20px 16px;
        gap: 14px;
    }
    
    .review-author {
        gap: 14px;
    }
    
    .review-avatar {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 12px;
    }
    
    .review-name {
        font-size: 17px;
    }
    
    .review-service {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .review-content {
        padding: 18px 20px;
    }
    
    .review-comment {
        font-size: 14px;
        padding-left: 18px;
        line-height: 1.7;
    }
    
    .review-comment::before {
        font-size: 36px;
        top: -4px;
    }
    
    .review-footer {
        padding: 16px 20px 20px;
    }
    
    .reviews-summary {
        padding: 30px 20px;
    }
    
    .reviews-average-rating {
        font-size: 42px;
    }
    
    .reviews-average-stars svg {
        width: 18px;
        height: 18px;
    }
    
    .reviews-total {
        font-size: 15px;
    }
}

/* Before/After Page Styles */
.before-after-page {
    padding: 0;
    background: #ffffff;
}

.before-after-page .container {
    padding: 0 80px 100px;
}

/* Before/After Page Header */
.before-after-page-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.before-after-page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.before-after-page-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.before-after-page-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Before/After Page Container */
.before-after-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Intro Section */
.before-after-page-intro-section {
    margin-bottom: 80px;
    text-align: center;
}

.before-after-page-intro-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.before-after-page-headline {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.before-after-page-text {
    font-size: 19px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Stats Grid */
.before-after-page-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-page-stat-card {
    padding: 30px 25px;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.before-after-page-stat-card:hover {
    border-color: #02717a;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.1);
    transform: translateY(-4px);
}

.before-after-page-stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.before-after-page-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.4;
}

/* Cases Grid Section */
.before-after-page-cases {
    margin-bottom: 80px;
}

.before-after-page-cases-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 50px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-align: center;
}

.before-after-page-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.before-after-page-case-card {
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.before-after-page-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.before-after-page-case-card:hover {
    border-color: #02717a;
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    transform: translateY(-6px);
}

.before-after-page-case-card:hover::before {
    transform: scaleX(1);
}

.before-after-page-case-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.before-after-page-case-before,
.before-after-page-case-after {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.before-after-page-case-before {
    border-right: 2px solid #e8f4f5;
}

.before-after-page-case-after {
    border-left: 2px solid #e8f4f5;
}

.before-after-page-case-card:hover .before-after-page-case-before {
    border-right-color: #02717a;
}

.before-after-page-case-card:hover .before-after-page-case-after {
    border-left-color: #02717a;
}

.before-after-page-case-before img,
.before-after-page-case-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.before-after-page-case-card:hover .before-after-page-case-before img,
.before-after-page-case-card:hover .before-after-page-case-after img {
    transform: scale(1.1);
}

.before-after-page-case-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.before-after-page-case-card:hover .before-after-page-case-label {
    background: rgba(2, 113, 122, 0.9);
    transform: translateY(-2px);
}

/* Disclaimer Section */
.before-after-page-disclaimer-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e8f4f5;
}

.before-after-page-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
    border-left: 4px solid #02717a;
    border-radius: 16px;
}

.before-after-page-disclaimer-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #02717a;
    margin-top: 2px;
}

.before-after-page-disclaimer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Responsive Design for Before/After Page */
@media (max-width: 1024px) {
    .before-after-page .container {
        padding: 0 60px 80px;
    }
    
    .before-after-page-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .before-after-page-header-inner {
        padding: 0 30px;
    }
    
    .before-after-page-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .before-after-page-subtitle {
        font-size: 17px;
    }
    
    .before-after-page-intro-section {
        margin-bottom: 60px;
    }
    
    .before-after-page-intro-content {
        margin-bottom: 40px;
    }
    
    .before-after-page-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .before-after-page-cases {
        margin-bottom: 60px;
    }
    
    .before-after-page-cases-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .before-after-page-cases-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .before-after-page .container {
        padding: 0 40px 60px;
    }
    
    .before-after-page-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .before-after-page-header-inner {
        padding: 0 20px;
    }
    
    .before-after-page-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .before-after-page-subtitle {
        font-size: 17px;
    }
    
    .before-after-page-intro-section {
        margin-bottom: 50px;
    }
    
    .before-after-page-intro-content {
        margin-bottom: 35px;
    }
    
    .before-after-page-headline {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .before-after-page-text {
        font-size: 17px;
    }
    
    .before-after-page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .before-after-page-stat-card {
        padding: 25px 20px;
    }
    
    .before-after-page-stat-number {
        font-size: 32px;
    }
    
    .before-after-page-stat-label {
        font-size: 13px;
    }
    
    .before-after-page-cases {
        margin-bottom: 50px;
    }
    
    .before-after-page-cases-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .before-after-page-cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .before-after-page-disclaimer-section {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .before-after-page-disclaimer {
        padding: 25px 30px;
    }
}

@media (max-width: 480px) {
    .before-after-page .container {
        padding: 0 20px 50px;
    }
    
    .before-after-page-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .before-after-page-title {
        font-size: 36px;
    }
    
    .before-after-page-subtitle {
        font-size: 16px;
    }
    
    .before-after-page-intro-section {
        margin-bottom: 40px;
    }
    
    .before-after-page-intro-content {
        margin-bottom: 30px;
    }
    
    .before-after-page-headline {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .before-after-page-text {
        font-size: 16px;
    }
    
    .before-after-page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .before-after-page-cases-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .before-after-page-cases-grid {
        gap: 24px;
    }
    
    .before-after-page-case-label {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .before-after-page-disclaimer-section {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .before-after-page-disclaimer {
        padding: 20px 25px;
        gap: 12px;
    }
    
    .before-after-page-disclaimer-icon {
        width: 24px;
        height: 24px;
    }
    
    .before-after-page-disclaimer p {
        font-size: 14px;
    }
}

/* Reviews Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding-top: 40px;
}

.reviews-pagination .page-numbers,
.reviews-pagination ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.reviews-pagination .page-numbers li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reviews-pagination .page-numbers a,
.reviews-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-decoration: none;
    color: #666;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-pagination .page-numbers a:hover {
    color: #02717a;
    border-color: #02717a;
    background: #f0f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.1);
}

.reviews-pagination .page-numbers .current {
    color: #ffffff;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.2);
}

.reviews-pagination .page-numbers .prev,
.reviews-pagination .page-numbers .next {
    gap: 8px;
    padding: 0 20px;
}

.reviews-pagination .page-numbers .prev svg,
.reviews-pagination .page-numbers .next svg {
    width: 16px;
    height: 16px;
}

.reviews-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    color: #999;
    cursor: default;
}

.reviews-pagination .page-numbers .dots:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
}

@media (max-width: 768px) {
    .reviews-pagination {
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .reviews-pagination .page-numbers {
        gap: 8px;
    }
    
    .reviews-pagination .page-numbers a,
    .reviews-pagination .page-numbers span {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 15px;
    }
    
    .reviews-pagination .page-numbers .prev,
    .reviews-pagination .page-numbers .next {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .reviews-pagination {
        margin-top: 50px;
        padding-top: 25px;
    }
    
    .reviews-pagination .page-numbers {
        gap: 6px;
    }
    
    .reviews-pagination .page-numbers a,
    .reviews-pagination .page-numbers span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    .reviews-pagination .page-numbers .prev,
    .reviews-pagination .page-numbers .next {
        padding: 0 14px;
    }
    
    .reviews-pagination .page-numbers .prev svg,
    .reviews-pagination .page-numbers .next svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .about-page .container {
        padding: 0 20px 50px;
    }
    
    .about-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .about-mission-vision,
    .about-story,
    .about-why-choose,
    .about-stats,
    .about-values {
        margin-bottom: 50px;
    }
    
    .mission-vision-content {
        padding: 35px 25px;
    }
    
    .mission-vision-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .mission-vision-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
    
    .mission-vision-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .mission-vision-title {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .mission-vision-text {
        font-size: 15px;
    }
    
    .why-choose-card {
        padding: 30px 20px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat-number {
        font-size: 36px;
    }
    
    .about-value-card {
        padding: 25px 20px;
    }
}

/* Services Page Styles */
.services-page {
    padding: 0;
}

.services-page-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
}

.services-page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.services-page-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.services-page-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 0;
}

.services-page-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.services-page-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.services-page-card:hover::after {
    opacity: 0.1;
}

.services-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.services-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(2, 113, 122, 0.2);
    border-color: #02717a;
}

.services-page-card:hover::before {
    opacity: 1;
}

.services-page-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7f7 0%, #f0f0f0 100%);
}

.services-page-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: linear-gradient(135deg, #e0f7f7 0%, #f0f0f0 100%);
}

.services-page-card:hover .services-page-card-image img {
    transform: scale(1.1);
}

.services-page-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 113, 122, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-page-card:hover .services-page-card-image-overlay {
    opacity: 1;
}

.services-page-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.services-page-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.services-page-card:hover .services-page-card-title {
    color: #02717a;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-page-card-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.services-page-card:hover .services-page-card-description {
    color: #444;
}

.services-page-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #02717a;
    text-decoration: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.services-page-read-more svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.services-page-read-more:hover {
    color: #02b9b6;
    gap: 12px;
}

.services-page-read-more:hover svg {
    transform: translateX(4px);
}

.services-page-card:hover .services-page-read-more {
    border-top-color: #e0f7f7;
    color: #02717a;
}

/* Responsive Styles for Services Page */
@media (max-width: 1200px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-page-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .services-page-header-inner {
        padding: 0 30px;
    }
    
    .services-page-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .services-page-subtitle {
        font-size: 17px;
    }
    
    .services-page-container {
        padding: 0 30px 60px;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-page-card-image {
        height: 200px;
    }
    
    .services-page-card-content {
        padding: 28px 24px;
    }
    
    .services-page-card-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .services-page-card-description {
        font-size: 15px;
    }
    
    .services-page-read-more {
        font-size: 14px;
        padding-top: 14px;
    }
}

@media (max-width: 480px) {
    .services-page-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .services-page-header-inner {
        padding: 0 20px;
    }
    
    .services-page-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .services-page-subtitle {
        font-size: 16px;
    }
    
    .services-page-container {
        padding: 0 20px 50px;
    }
    
    .services-page-card-image {
        height: 180px;
    }
    
    .services-page-card-content {
        padding: 24px 20px;
    }
    
    .services-page-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .services-page-card-description {
        font-size: 14px;
    }
    
    .services-page-read-more {
        font-size: 13px;
        padding-top: 12px;
    }
    
    .services-page-read-more svg {
        width: 14px;
        height: 14px;
    }
}

/* Service Single Page Styles */
.service-single-page {
    padding: 0;
}

/* Breadcrumb Section */
.service-single-hero .service-single-breadcrumb {
    margin-bottom: 24px;
    padding: 0;
}

.service-single-hero .breadcrumb-list {
    justify-content: center;
}

.breadcrumb-nav {
    display: flex;
}

/* Remove nav background color within breadcrumb sections */
.breadcrumb-nav nav,
.service-single-breadcrumb nav,
.breadcrumb-section nav,
nav.service-single-breadcrumb,
.service-single-breadcrumb {
    background-color: transparent !important;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    font-size: 14px;
    color: #02717a;
    text-decoration: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #02b9b6;
    text-decoration: underline;
}

.service-single-hero .breadcrumb-link {
    color: #ffffff;
    font-weight: 600;
}

.service-single-hero .breadcrumb-link:hover {
    color: #f0ffff;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #666;
    font-size: 14px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
}

.breadcrumb-current span {
    color: #333;
}

.service-single-hero .breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

.service-single-hero .breadcrumb-current span {
    color: #ffffff;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #999;
    margin: 0 4px;
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.service-single-hero .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.service-single-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    margin-top: 0;
}

.service-single-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.service-single-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.service-single-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-single-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0;
}

/* Intro Section */
.service-single-intro {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0ffff 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 4px solid #02717a;
}

.service-single-intro-with-image {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-single-intro-image {
    flex-shrink: 0;
    width: 400px;
    max-width: 100%;
}

.service-single-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-single-intro-content {
    flex: 1;
}

.service-single-intro-text {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

/* Content Wrapper */
.service-single-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Main Content */
.service-single-main {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Titles */
.service-single-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.service-single-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
}

/* Description Section */
.service-single-description {
    margin-bottom: 60px;
}

.service-single-description-content {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-description-content p {
    margin: 0 0 20px;
}

.service-single-description-content p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.service-single-features {
    margin-bottom: 60px;
}

.service-single-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-single-feature-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-single-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.15);
    border-color: #02717a;
}

.service-single-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #02717a;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-feature-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Process Section */
.service-single-process {
    margin-bottom: 60px;
}

.service-single-process-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-single-process-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-single-process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.3);
}

.service-single-process-content {
    flex: 1;
}

.service-single-process-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-process-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* FAQs Section - Modern Design */
.service-single-faqs {
    margin-bottom: 48px;
}

.service-single-faqs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-single-faq-item {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-single-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-single-faq-item:hover:not(.active) {
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.12);
    transform: translateY(-2px);
}

.service-single-faq-item.active {
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
}

.service-single-faq-item.active::before {
    transform: scaleY(1);
}

.service-single-faq-item.active:hover {
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.18);
    transform: translateY(-2px);
}

.service-single-faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: none !important;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    outline: none;
}

.service-single-faq-toggle:focus {
    outline: none;
}

.service-single-faq-toggle:active,
.service-single-faq-item.active .service-single-faq-toggle {
    border-bottom: none !important;
    outline: none;
}

.service-single-faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex: 1;
    transition: color 0.3s ease;
    pointer-events: none;
    user-select: none;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.service-single-faq-item.active .service-single-faq-question {
    color: #02717a;
}

.service-single-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f7f7 0%, #e8f4f5 100%);
    color: #02717a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-single-faq-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-single-faq-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    stroke-width: 2.5;
}

.service-single-faq-item.active .service-single-faq-icon {
    color: #ffffff;
}

.service-single-faq-item.active .service-single-faq-icon::before {
    width: 100%;
    height: 100%;
}

.service-single-faq-item.active .service-single-faq-icon svg {
    transform: rotate(180deg);
}

.service-single-faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.service-single-faq-item.active .service-single-faq-answer {
    max-height: 2000px;
    padding: 14px 28px 52px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.2s;
}

.service-single-faq-answer p {
    margin: 0 0 16px;
    color: #555;
}

.service-single-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Content Blocks Section */
.service-single-content-blocks {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-single-content-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-single-block-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.service-single-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
}

.service-single-block-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-single-block-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.service-single-block-text {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-block-text p {
    margin: 0 0 20px;
}

.service-single-block-text p:last-child {
    margin-bottom: 0;
}

.service-single-block-list {
    margin-top: 8px;
}

.service-single-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-single-list li {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    padding-left: 32px;
    position: relative;
}

.service-single-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
}

.service-single-list-ordered {
    counter-reset: list-counter;
    list-style: none;
}

.service-single-list-ordered li {
    counter-increment: list-counter;
    padding-left: 40px;
}

.service-single-list-ordered li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* ========================================
   Service landing pages (Kids Dentistry, RCT, etc.)
   ======================================== */

.service-landing-page {
    --service-landing-max: 1300px;
    --service-landing-surface: #f0f6f6;
    --service-landing-card: #ffffff;
    --service-landing-border: rgba(2, 113, 122, 0.12);
    --service-landing-teal: #02717a;
    background: var(--service-landing-surface);
}

.service-landing-page .doctors-page-header-inner {
    max-width: var(--service-landing-max);
}

.service-landing-page .doctors-page-header {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.service-landing-page .doctors-page-title {
    letter-spacing: 0.04em;
}

.service-landing-page .doctors-page-subtitle {
    font-weight: 400;
    line-height: 1.65;
    max-width: 42rem;
    opacity: 0.98;
}

.service-landing-page .service-single-container {
    max-width: var(--service-landing-max);
    padding-bottom: clamp(56px, 10vw, 120px);
}

.service-landing-page .service-single-intro {
    margin-bottom: clamp(40px, 5vw, 56px);
    background: var(--service-landing-card);
    border: 1px solid var(--service-landing-border);
    border-left: 4px solid var(--service-landing-teal);
    border-radius: 4px 20px 20px 4px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.85) inset,
        0 12px 40px rgba(2, 61, 66, 0.07);
    padding: clamp(28px, 4vw, 44px);
}

.service-landing-page .service-single-intro-text {
    font-size: clamp(1.0625rem, 1.9vw, 1.125rem);
    line-height: 1.78;
    color: #2a3839;
    font-weight: 500;
}

.service-landing-page .service-single-intro-image img {
    aspect-ratio: 4 / 3;
    max-height: min(360px, 45vh);
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--service-landing-border);
    box-shadow: 0 8px 32px rgba(2, 61, 66, 0.12);
}

.service-landing-page .service-single-content-wrapper {
    margin-bottom: clamp(40px, 6vw, 72px);
}

.service-landing-page .service-single-main {
    max-width: 100%;
    background: var(--service-landing-card);
    border: 1px solid var(--service-landing-border);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 48px) clamp(22px, 4vw, 44px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.045);
}

.service-landing-page .service-single-section-title {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: clamp(20px, 3vw, 32px);
    padding-bottom: 16px;
    color: #141a1a;
}

.service-landing-page .service-single-section-title::after {
    width: 48px;
    height: 3px;
}

.service-landing-page .service-single-description-content {
    font-size: 1.0625rem;
    color: #3d4d4f;
    line-height: 1.82;
}

.service-landing-page .service-single-features-grid {
    gap: 20px;
}

.service-landing-page .service-single-feature-card {
    border-radius: 14px;
    border-color: rgba(2, 113, 122, 0.1);
    padding: clamp(24px, 3vw, 28px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.service-landing-page .service-single-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(2, 61, 66, 0.12);
}

.service-landing-page .service-single-feature-title {
    font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
    letter-spacing: -0.015em;
}

.service-landing-page .service-single-process {
    padding: clamp(24px, 4vw, 36px);
    border-radius: 16px;
    background: linear-gradient(165deg, rgba(2, 113, 122, 0.05) 0%, rgba(255, 255, 255, 0.5) 55%, transparent 100%);
    border: 1px solid rgba(2, 113, 122, 0.1);
}

.service-landing-page .service-single-content-blocks {
    margin-top: clamp(40px, 6vw, 72px);
    gap: clamp(40px, 5vw, 56px);
}

.service-landing-page .service-single-content-block {
    border-radius: 18px;
    border-color: var(--service-landing-border);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.055);
    padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 44px);
}

.service-landing-page .service-single-block-title {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    letter-spacing: -0.02em;
}

@media (max-width: 767px) {
    .service-landing-page .service-single-intro-with-image {
        flex-direction: column;
        gap: 28px;
    }

    .service-landing-page .service-single-intro-image {
        width: 100%;
        order: -1;
    }

    .service-landing-page .service-single-main {
        padding: 24px 18px;
    }
}

/* ========================================
   Contact Page - Modern Redesign
   ======================================== */

/* 
   Contact Page - Modern Redesign
   ======================================== */

.contact-page {
    padding: 0;
    margin: 0;
    background: #ffffff;
}

/* Hero Section */
.contact-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-title {
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    font-weight: 400;
}

/* Quick Contact Bar */
.contact-quick-bar {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 32px 0;
    position: relative;
    z-index: 10;
}

.contact-quick-bar-inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.2);
}

.quick-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-contact-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.quick-contact-value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    transition: color 0.3s ease;
}

.quick-contact-value:hover {
    color: #02717a;
}

.quick-contact-divider {
    width: 1px;
    height: 40px;
    background: #e9ecef;
}

/* Main Container */
.contact-main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 100px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Column */
.contact-form-column {
    position: sticky;
    top: 120px;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-card:hover {
    box-shadow: 0 12px 48px rgba(2, 113, 122, 0.12);
    border-color: #d0f4f5;
}

.contact-form-header {
    padding: 40px 40px 32px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.contact-form-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.contact-form-wrapper {
    padding: 40px;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card-modern {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.12);
    border-color: #d0f4f5;
}

.contact-info-card-modern:hover::before {
    opacity: 1;
}

.contact-info-card-header {
    padding: 24px 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f4f5;
}

.contact-info-icon-modern {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(2, 113, 122, 0.1) 0%, rgba(2, 185, 182, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02717a;
    border: 2px solid rgba(2, 113, 122, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-card-modern:hover .contact-info-icon-modern {
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.05);
}

.contact-info-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    letter-spacing: -0.01em;
}

.contact-info-card-body {
    padding: 24px;
}

.contact-info-text {
    font-size: 15px;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.7;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #02717a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.contact-info-link:hover {
    color: #02b9b6;
    gap: 12px;
}

.contact-info-link svg {
    transition: transform 0.3s ease;
}

.contact-info-link:hover svg {
    transform: translate(2px, -2px);
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-hours-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f5;
}

.contact-hours-item-modern:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day-modern {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.hours-time-modern {
    font-size: 15px;
    color: #666;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .contact-main-container {
        padding: 60px 60px 80px;
    }
    
    .contact-main-grid {
        gap: 50px;
    }
}

@media (max-width: 1200px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-column {
        position: static;
    }
    
    .contact-quick-bar-inner {
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .contact-hero {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .contact-hero-content {
        padding: 0 30px;
    }
    
    .contact-hero-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .contact-quick-bar-inner {
        padding: 0 60px;
        gap: 24px;
    }
    
    .contact-main-container {
        padding: 50px 60px 70px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .contact-hero-content {
        padding: 0 20px;
    }
    
    .contact-hero-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .contact-hero-subtitle {
        font-size: 17px;
    }
    
    .contact-quick-bar {
        padding: 24px 0;
    }
    
    .contact-quick-bar-inner {
        padding: 0 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .quick-contact-divider {
        display: none;
    }
    
    .quick-contact-item {
        width: 100%;
    }
    
    .contact-main-container {
        padding: 40px 40px 60px;
    }
    
    .contact-form-header {
        padding: 32px 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
    }
    
    .contact-form-title {
        font-size: 28px;
    }
    
    .contact-info-card-header {
        padding: 20px;
    }
    
    .contact-info-card-body {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .contact-hero-content {
        padding: 0 20px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-subtitle {
        font-size: 16px;
    }
    
    .contact-quick-bar-inner {
        padding: 0 20px;
    }
    
    .contact-main-container {
        padding: 30px 20px 50px;
    }
    
    .contact-form-header {
        padding: 28px 24px 20px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-info-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}



/* About Us Page Styles */
.about-page {
    padding: 0;
    background: #ffffff;
}

.about-page .container {
    padding: 0 80px 100px;
}

/* About Header */
.about-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.about-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.about-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Container */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Section Titles */
.about-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    text-align: center;
}

/* Mission & Vision Section */
.about-mission-vision {
    margin-bottom: 100px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
}

.mission-vision-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent 0%, #02717a 50%, transparent 100%);
    z-index: 0;
    opacity: 0.3;
}

.mission-vision-card {
    padding: 0;
    background: #ffffff;
    border-radius: 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-card:hover::before {
    transform: scaleX(1);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(2, 113, 122, 0.15);
    border-color: #e8f4f5;
}

.mission-vision-content {
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfb 100%);
}

.mission-vision-card:hover .mission-vision-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f9 100%);
}

.mission-vision-icon-wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 18px;
    color: #02717a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.mission-vision-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mission-vision-card:hover .mission-vision-icon {
    border-color: transparent;
    color: #ffffff;
    transform: scale(1.05);
}

.mission-vision-card:hover .mission-vision-icon::before {
    opacity: 1;
}

.mission-vision-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}

.mission-vision-card:hover .mission-vision-icon svg {
    transform: scale(1.1);
}

.mission-vision-text-wrapper {
    flex: 1;
}

.mission-vision-title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.mission-vision-card:hover .mission-vision-title {
    color: #02717a;
}

.mission-vision-text {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    transition: color 0.3s ease;
}

.mission-vision-card:hover .mission-vision-text {
    color: #555;
}

/* Our Story Section */
.about-story {
    margin-bottom: 100px;
    position: relative;
}

.about-story-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e8f4f5 20%, #e8f4f5 80%, transparent 100%);
}

.about-story-text {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    padding-top: 40px;
}

.about-story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
}

.about-story-text p {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.about-story-text p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #02717a 0%, #02b9b6 100%);
    border-radius: 16px 0 0 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-story-text p:hover {
    border-color: #e8f4f5;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.08);
    transform: translateY(-4px);
    color: #333;
}

.about-story-text p:hover::before {
    opacity: 1;
}

.about-story-text p:first-child {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
}

.about-story-text p:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f9 100%);
}

.about-story-text p:last-child {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
}

/* Why Choose Us Section */
.about-why-choose {
    margin-bottom: 100px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-card {
    padding: 40px 30px;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    border-color: #02717a;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.1);
    transform: translateY(-4px);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f9f9;
    border-radius: 16px;
    color: #02717a;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
}

.why-choose-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.why-choose-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Statistics Section */
.about-stats {
    margin-bottom: 100px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stat-card {
    padding: 40px 30px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.25);
}

.about-stat-number {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.about-stat-label {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Values Section */
.about-values {
    margin-bottom: 100px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.about-value-card {
    padding: 40px 35px;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: #02717a;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.1);
    transform: translateY(-4px);
}

.about-value-title {
    font-size: 26px;
    font-weight: 700;
    color: #02717a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.about-value-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-page .container {
        padding: 0 60px 80px;
    }
    
    .about-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .about-header-inner {
        padding: 0 30px;
    }
    
    .about-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .about-subtitle {
        font-size: 17px;
    }
    
    .about-section-title {
        font-size: 36px;
        margin-bottom: 35px;
    }
    
    .mission-vision-grid {
        gap: 30px;
    }
    
    .mission-vision-grid::before {
        display: none;
    }
    
    .mission-vision-content {
        padding: 45px 35px;
    }
    
    .mission-vision-icon {
        width: 65px;
        height: 65px;
    }
    
    .mission-vision-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .mission-vision-title {
        font-size: 32px;
    }
    
    .mission-vision-text {
        font-size: 16px;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-page .container {
        padding: 0 40px 60px;
    }
    
    .about-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .about-header-inner {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .about-subtitle {
        font-size: 17px;
    }
    
    .about-section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .about-mission-vision,
    .about-story,
    .about-why-choose,
    .about-stats,
    .about-values {
        margin-bottom: 60px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-vision-grid::before {
        display: none;
    }
    
    .mission-vision-content {
        padding: 40px 30px;
    }
    
    .mission-vision-icon-wrapper {
        margin-bottom: 25px;
    }
    
    .mission-vision-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-vision-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .mission-vision-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .mission-vision-text {
        font-size: 16px;
    }
    
    .about-story-text {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 30px;
    }
    
    .about-story-text::before {
        width: 60px;
        height: 3px;
    }
    
    .about-story-text p {
        padding: 25px;
        font-size: 16px;
    }
    
    .about-story-text p:first-child,
    .about-story-text p:nth-child(2),
    .about-story-text p:last-child {
        background: #ffffff;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-card {
        padding: 35px 25px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat-card {
        padding: 30px 20px;
    }
    
    .about-stat-number {
        font-size: 40px;
    }
    
    .about-stat-label {
        font-size: 14px;
    }
    
    .about-value-card {
        padding: 30px 25px;
    }
    
    .about-value-title {
        font-size: 22px;
    }
    
    .about-value-text {
        font-size: 15px;
    }
}

/* Reviews Page Styles */
.reviews-page {
    padding: 0;
    background: #ffffff;
}

.reviews-page .container {
    padding: 0 80px 100px;
}

/* Reviews Header */
.reviews-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.reviews-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.reviews-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.reviews-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Reviews Container */
.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Review Card - Modern Layout */
.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfb 100%);
    border: 1px solid #e8f4f5;
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.review-card:hover {
    border-color: #02717a;
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    transform: translateY(-6px);
    z-index: 2;
}

.review-card:hover::before {
    transform: scaleX(1);
    z-index: 10;
}

.review-header {
    padding: 30px 30px 20px;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(2, 113, 122, 0.3);
}

.review-author-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.3;
}

.review-service {
    font-size: 14px;
    color: #02717a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    background: #f0f9f9;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

.review-rating {
    display: flex;
    gap: 6px;
    align-items: center;
}

.review-rating .star-filled {
    color: #ffc107;
    fill: #ffc107;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.review-rating .star-empty {
    color: #e0e0e0;
    fill: none;
}

.review-content {
    flex: 1;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fafbfb 0%, #ffffff 100%);
}

.review-comment {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    position: relative;
    padding-left: 24px;
}

.review-comment::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 48px;
    font-weight: 700;
    color: #02717a;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px 30px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.review-date {
    font-size: 13px;
    color: #999;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-date::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #02717a;
    opacity: 0.4;
}

/* Reviews Summary */
.reviews-summary {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
    border: 2px solid #e8f4f5;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.reviews-summary-content {
    max-width: 600px;
    margin: 0 auto;
}

.reviews-summary-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reviews-average-rating {
    font-size: 64px;
    font-weight: 800;
    color: #02717a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.reviews-average-stars {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews-average-stars .star-filled {
    color: #ffc107;
    fill: #ffc107;
}

.reviews-average-stars .star-half {
    color: #ffc107;
    fill: url(#star-gradient);
}

.reviews-average-stars .star-empty {
    color: #e0e0e0;
    fill: none;
}

.reviews-total {
    font-size: 18px;
    color: #666;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
}

/* Responsive Design for Reviews Page */
@media (max-width: 1024px) {
    .reviews-page .container {
        padding: 0 60px 80px;
    }
    
    .reviews-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .reviews-header-inner {
        padding: 0 30px;
    }
    
    .reviews-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .reviews-subtitle {
        font-size: 17px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .reviews-summary {
        padding: 40px 35px;
    }
    
    .reviews-average-rating {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .reviews-page .container {
        padding: 0 40px 60px;
    }
    
    .reviews-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .reviews-header-inner {
        padding: 0 20px;
    }
    
    .reviews-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .reviews-subtitle {
        font-size: 17px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .review-header {
        padding: 25px 25px 18px;
    }
    
    .review-avatar {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 14px;
    }
    
    .review-name {
        font-size: 18px;
    }
    
    .review-service {
        font-size: 13px;
        padding: 3px 10px;
    }
    
    .review-content {
        padding: 20px 25px;
    }
    
    .review-comment {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .review-comment::before {
        font-size: 40px;
        top: -6px;
    }
    
    .review-footer {
        padding: 18px 25px 25px;
    }
    
    .reviews-summary {
        padding: 35px 25px;
    }
    
    .reviews-average-rating {
        font-size: 48px;
    }
    
    .reviews-average-stars svg {
        width: 20px;
        height: 20px;
    }
    
    .reviews-total {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reviews-page .container {
        padding: 0 20px 50px;
    }
    
    .reviews-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .reviews-title {
        font-size: 36px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
    
    .review-header {
        padding: 20px 20px 16px;
        gap: 14px;
    }
    
    .review-author {
        gap: 14px;
    }
    
    .review-avatar {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 12px;
    }
    
    .review-name {
        font-size: 17px;
    }
    
    .review-service {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .review-content {
        padding: 18px 20px;
    }
    
    .review-comment {
        font-size: 14px;
        padding-left: 18px;
        line-height: 1.7;
    }
    
    .review-comment::before {
        font-size: 36px;
        top: -4px;
    }
    
    .review-footer {
        padding: 16px 20px 20px;
    }
    
    .reviews-summary {
        padding: 30px 20px;
    }
    
    .reviews-average-rating {
        font-size: 42px;
    }
    
    .reviews-average-stars svg {
        width: 18px;
        height: 18px;
    }
    
    .reviews-total {
        font-size: 15px;
    }
}

/* Before/After Page Styles */
.before-after-page {
    padding: 0;
    background: #ffffff;
}

.before-after-page .container {
    padding: 0 80px 100px;
}

/* Before/After Page Header */
.before-after-page-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.before-after-page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.before-after-page-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.before-after-page-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Before/After Page Container */
.before-after-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Intro Section */
.before-after-page-intro-section {
    margin-bottom: 80px;
    text-align: center;
}

.before-after-page-intro-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.before-after-page-headline {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.before-after-page-text {
    font-size: 19px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Stats Grid */
.before-after-page-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-page-stat-card {
    padding: 30px 25px;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.before-after-page-stat-card:hover {
    border-color: #02717a;
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.1);
    transform: translateY(-4px);
}

.before-after-page-stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1;
}

.before-after-page-stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.4;
}

/* Cases Grid Section */
.before-after-page-cases {
    margin-bottom: 80px;
}

.before-after-page-cases-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 50px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-align: center;
}

.before-after-page-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.before-after-page-case-card {
    background: #ffffff;
    border: 2px solid #e8f4f5;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.before-after-page-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.before-after-page-case-card:hover {
    border-color: #02717a;
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    transform: translateY(-6px);
}

.before-after-page-case-card:hover::before {
    transform: scaleX(1);
}

.before-after-page-case-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.before-after-page-case-before,
.before-after-page-case-after {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.before-after-page-case-before {
    border-right: 2px solid #e8f4f5;
}

.before-after-page-case-after {
    border-left: 2px solid #e8f4f5;
}

.before-after-page-case-card:hover .before-after-page-case-before {
    border-right-color: #02717a;
}

.before-after-page-case-card:hover .before-after-page-case-after {
    border-left-color: #02717a;
}

.before-after-page-case-before img,
.before-after-page-case-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.before-after-page-case-card:hover .before-after-page-case-before img,
.before-after-page-case-card:hover .before-after-page-case-after img {
    transform: scale(1.1);
}

.before-after-page-case-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.before-after-page-case-card:hover .before-after-page-case-label {
    background: rgba(2, 113, 122, 0.9);
    transform: translateY(-2px);
}

/* Disclaimer Section */
.before-after-page-disclaimer-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e8f4f5;
}

.before-after-page-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
    border-left: 4px solid #02717a;
    border-radius: 16px;
}

.before-after-page-disclaimer-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #02717a;
    margin-top: 2px;
}

.before-after-page-disclaimer p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Responsive Design for Before/After Page */
@media (max-width: 1024px) {
    .before-after-page .container {
        padding: 0 60px 80px;
    }
    
    .before-after-page-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .before-after-page-header-inner {
        padding: 0 30px;
    }
    
    .before-after-page-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .before-after-page-subtitle {
        font-size: 17px;
    }
    
    .before-after-page-intro-section {
        margin-bottom: 60px;
    }
    
    .before-after-page-intro-content {
        margin-bottom: 40px;
    }
    
    .before-after-page-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .before-after-page-cases {
        margin-bottom: 60px;
    }
    
    .before-after-page-cases-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .before-after-page-cases-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .before-after-page .container {
        padding: 0 40px 60px;
    }
    
    .before-after-page-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .before-after-page-header-inner {
        padding: 0 20px;
    }
    
    .before-after-page-title {
        font-size: 42px;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
    }
    
    .before-after-page-subtitle {
        font-size: 17px;
    }
    
    .before-after-page-intro-section {
        margin-bottom: 50px;
    }
    
    .before-after-page-intro-content {
        margin-bottom: 35px;
    }
    
    .before-after-page-headline {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .before-after-page-text {
        font-size: 17px;
    }
    
    .before-after-page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .before-after-page-stat-card {
        padding: 25px 20px;
    }
    
    .before-after-page-stat-number {
        font-size: 32px;
    }
    
    .before-after-page-stat-label {
        font-size: 13px;
    }
    
    .before-after-page-cases {
        margin-bottom: 50px;
    }
    
    .before-after-page-cases-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .before-after-page-cases-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .before-after-page-disclaimer-section {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .before-after-page-disclaimer {
        padding: 25px 30px;
    }
}

@media (max-width: 480px) {
    .before-after-page .container {
        padding: 0 20px 50px;
    }
    
    .before-after-page-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .before-after-page-title {
        font-size: 36px;
    }
    
    .before-after-page-subtitle {
        font-size: 16px;
    }
    
    .before-after-page-intro-section {
        margin-bottom: 40px;
    }
    
    .before-after-page-intro-content {
        margin-bottom: 30px;
    }
    
    .before-after-page-headline {
        font-size: 32px;
        margin-bottom: 18px;
    }
    
    .before-after-page-text {
        font-size: 16px;
    }
    
    .before-after-page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .before-after-page-cases-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .before-after-page-cases-grid {
        gap: 24px;
    }
    
    .before-after-page-case-label {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .before-after-page-disclaimer-section {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .before-after-page-disclaimer {
        padding: 20px 25px;
        gap: 12px;
    }
    
    .before-after-page-disclaimer-icon {
        width: 24px;
        height: 24px;
    }
    
    .before-after-page-disclaimer p {
        font-size: 14px;
    }
}

/* Reviews Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding-top: 40px;
}

.reviews-pagination .page-numbers,
.reviews-pagination ul {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.reviews-pagination .page-numbers li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.reviews-pagination .page-numbers a,
.reviews-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    text-decoration: none;
    color: #666;
    background: #ffffff;
    border: 2px solid #e8f4f5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-pagination .page-numbers a:hover {
    color: #02717a;
    border-color: #02717a;
    background: #f0f9f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.1);
}

.reviews-pagination .page-numbers .current {
    color: #ffffff;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.2);
}

.reviews-pagination .page-numbers .prev,
.reviews-pagination .page-numbers .next {
    gap: 8px;
    padding: 0 20px;
}

.reviews-pagination .page-numbers .prev svg,
.reviews-pagination .page-numbers .next svg {
    width: 16px;
    height: 16px;
}

.reviews-pagination .page-numbers .dots {
    border: none;
    background: transparent;
    color: #999;
    cursor: default;
}

.reviews-pagination .page-numbers .dots:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
}

@media (max-width: 768px) {
    .reviews-pagination {
        margin-top: 60px;
        padding-top: 30px;
    }
    
    .reviews-pagination .page-numbers {
        gap: 8px;
    }
    
    .reviews-pagination .page-numbers a,
    .reviews-pagination .page-numbers span {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 15px;
    }
    
    .reviews-pagination .page-numbers .prev,
    .reviews-pagination .page-numbers .next {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .reviews-pagination {
        margin-top: 50px;
        padding-top: 25px;
    }
    
    .reviews-pagination .page-numbers {
        gap: 6px;
    }
    
    .reviews-pagination .page-numbers a,
    .reviews-pagination .page-numbers span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }
    
    .reviews-pagination .page-numbers .prev,
    .reviews-pagination .page-numbers .next {
        padding: 0 14px;
    }
    
    .reviews-pagination .page-numbers .prev svg,
    .reviews-pagination .page-numbers .next svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .about-page .container {
        padding: 0 20px 50px;
    }
    
    .about-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-subtitle {
        font-size: 16px;
    }
    
    .about-section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .about-mission-vision,
    .about-story,
    .about-why-choose,
    .about-stats,
    .about-values {
        margin-bottom: 50px;
    }
    
    .mission-vision-content {
        padding: 35px 25px;
    }
    
    .mission-vision-icon-wrapper {
        margin-bottom: 20px;
    }
    
    .mission-vision-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
    
    .mission-vision-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .mission-vision-title {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .mission-vision-text {
        font-size: 15px;
    }
    
    .why-choose-card {
        padding: 30px 20px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stat-number {
        font-size: 36px;
    }
    
    .about-value-card {
        padding: 25px 20px;
    }
}

/* Services Page Styles */
.services-page {
    padding: 0;
}

.services-page-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
}

.services-page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.services-page-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.services-page-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 100px;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 0;
}

.services-page-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
}

.services-page-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url('../images/dent.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.services-page-card:hover::after {
    opacity: 0.1;
}

.services-page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.services-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(2, 113, 122, 0.2);
    border-color: #02717a;
}

.services-page-card:hover::before {
    opacity: 1;
}

.services-page-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7f7 0%, #f0f0f0 100%);
}

.services-page-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: linear-gradient(135deg, #e0f7f7 0%, #f0f0f0 100%);
}

.services-page-card:hover .services-page-card-image img {
    transform: scale(1.1);
}

.services-page-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(2, 113, 122, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-page-card:hover .services-page-card-image-overlay {
    opacity: 1;
}

.services-page-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.services-page-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.3;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.services-page-card:hover .services-page-card-title {
    color: #02717a;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-page-card-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 20px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.services-page-card:hover .services-page-card-description {
    color: #444;
}

.services-page-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #02717a;
    text-decoration: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.services-page-read-more svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.services-page-read-more:hover {
    color: #02b9b6;
    gap: 12px;
}

.services-page-read-more:hover svg {
    transform: translateX(4px);
}

.services-page-card:hover .services-page-read-more {
    border-top-color: #e0f7f7;
    color: #02717a;
}

/* Responsive Styles for Services Page */
@media (max-width: 1200px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .services-page-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .services-page-header-inner {
        padding: 0 30px;
    }
    
    .services-page-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .services-page-subtitle {
        font-size: 17px;
    }
    
    .services-page-container {
        padding: 0 30px 60px;
    }
    
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-page-card-image {
        height: 200px;
    }
    
    .services-page-card-content {
        padding: 28px 24px;
    }
    
    .services-page-card-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .services-page-card-description {
        font-size: 15px;
    }
    
    .services-page-read-more {
        font-size: 14px;
        padding-top: 14px;
    }
}

@media (max-width: 480px) {
    .services-page-header {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .services-page-header-inner {
        padding: 0 20px;
    }
    
    .services-page-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .services-page-subtitle {
        font-size: 16px;
    }
    
    .services-page-container {
        padding: 0 20px 50px;
    }
    
    .services-page-card-image {
        height: 180px;
    }
    
    .services-page-card-content {
        padding: 24px 20px;
    }
    
    .services-page-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .services-page-card-description {
        font-size: 14px;
    }
    
    .services-page-read-more {
        font-size: 13px;
        padding-top: 12px;
    }
    
    .services-page-read-more svg {
        width: 14px;
        height: 14px;
    }
}

/* Service Single Page Styles */
.service-single-page {
    padding: 0;
}

/* Breadcrumb Section */
.service-single-hero .service-single-breadcrumb {
    margin-bottom: 24px;
    padding: 0;
}

.service-single-hero .breadcrumb-list {
    justify-content: center;
}

.breadcrumb-nav {
    display: flex;
}

/* Remove nav background color within breadcrumb sections */
.breadcrumb-nav nav,
.service-single-breadcrumb nav,
.breadcrumb-section nav,
nav.service-single-breadcrumb,
.service-single-breadcrumb {
    background-color: transparent !important;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    font-size: 14px;
    color: #02717a;
    text-decoration: none;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #02b9b6;
    text-decoration: underline;
}

.service-single-hero .breadcrumb-link {
    color: #ffffff;
    font-weight: 600;
}

.service-single-hero .breadcrumb-link:hover {
    color: #f0ffff;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #666;
    font-size: 14px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 500;
}

.breadcrumb-current span {
    color: #333;
}

.service-single-hero .breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

.service-single-hero .breadcrumb-current span {
    color: #ffffff;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #999;
    margin: 0 4px;
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.service-single-hero .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Section */
.service-single-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    margin-top: 0;
}

.service-single-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.service-single-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.service-single-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-single-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 0;
}

/* Intro Section */
.service-single-intro {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0ffff 0%, #ffffff 100%);
    border-radius: 20px;
    border-left: 4px solid #02717a;
}

.service-single-intro-with-image {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-single-intro-image {
    flex-shrink: 0;
    width: 400px;
    max-width: 100%;
}

.service-single-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-single-intro-content {
    flex: 1;
}

.service-single-intro-text {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

/* Content Wrapper */
.service-single-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Main Content */
.service-single-main {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Titles */
.service-single-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.service-single-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
}

/* Description Section */
.service-single-description {
    margin-bottom: 60px;
}

.service-single-description-content {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-description-content p {
    margin: 0 0 20px;
}

.service-single-description-content p:last-child {
    margin-bottom: 0;
}

/* Features Section */
.service-single-features {
    margin-bottom: 60px;
}

.service-single-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-single-feature-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-single-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.15);
    border-color: #02717a;
}

.service-single-feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #02717a;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-feature-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Process Section */
.service-single-process {
    margin-bottom: 60px;
}

.service-single-process-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-single-process-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.service-single-process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    box-shadow: 0 4px 12px rgba(2, 113, 122, 0.3);
}

.service-single-process-content {
    flex: 1;
}

.service-single-process-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-process-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* FAQs Section - Modern Design */
.service-single-faqs {
    margin-bottom: 48px;
}

.service-single-faqs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-single-faq-item {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-single-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-single-faq-item:hover:not(.active) {
    box-shadow: 0 8px 24px rgba(2, 113, 122, 0.12);
    transform: translateY(-2px);
}

.service-single-faq-item.active {
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.15);
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
}

.service-single-faq-item.active::before {
    transform: scaleY(1);
}

.service-single-faq-item.active:hover {
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.18);
    transform: translateY(-2px);
}

.service-single-faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: none !important;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    outline: none;
}

.service-single-faq-toggle:focus {
    outline: none;
}

.service-single-faq-toggle:active,
.service-single-faq-item.active .service-single-faq-toggle {
    border-bottom: none !important;
    outline: none;
}

.service-single-faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    flex: 1;
    transition: color 0.3s ease;
    pointer-events: none;
    user-select: none;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.service-single-faq-item.active .service-single-faq-question {
    color: #02717a;
}

.service-single-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f7f7 0%, #e8f4f5 100%);
    color: #02717a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-single-faq-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-single-faq-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    stroke-width: 2.5;
}

.service-single-faq-item.active .service-single-faq-icon {
    color: #ffffff;
}

.service-single-faq-item.active .service-single-faq-icon::before {
    width: 100%;
    height: 100%;
}

.service-single-faq-item.active .service-single-faq-icon svg {
    transform: rotate(180deg);
}

.service-single-faq-answer {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.service-single-faq-item.active .service-single-faq-answer {
    max-height: 2000px;
    padding: 14px 28px 52px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.2s;
}

.service-single-faq-answer p {
    margin: 0 0 16px;
    color: #555;
}

.service-single-faq-answer p:last-child {
    margin-bottom: 0;
}

/* Content Blocks Section */
.service-single-content-blocks {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-single-content-block {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-single-block-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 32px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.service-single-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 100%);
    border-radius: 2px;
}

.service-single-block-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-single-block-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.service-single-block-text {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.service-single-block-text p {
    margin: 0 0 20px;
}

.service-single-block-text p:last-child {
    margin-bottom: 0;
}

.service-single-block-list {
    margin-top: 8px;
}

.service-single-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-single-list li {
    font-size: 17px;
    color: #444;
    line-height: 1.7;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    padding-left: 32px;
    position: relative;
}

.service-single-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
}

.service-single-list-ordered {
    counter-reset: list-counter;
    list-style: none;
}

.service-single-list-ordered li {
    counter-increment: list-counter;
    padding-left: 40px;
}

.service-single-list-ordered li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* Responsive Styles for Service Single Page */
@media (max-width: 1200px) {
    .service-single-hero {
        height: 500px;
    }
    
    .service-single-hero-title {
        font-size: 56px;
    }
    
    .service-single-hero-subtitle {
        font-size: 20px;
    }
    
    .service-single-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-single-hero .service-single-breadcrumb {
        margin-bottom: 20px;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 13px;
    }
    
    .breadcrumb-separator svg {
        width: 12px;
        height: 12px;
    }
    
    .service-single-hero {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .service-single-hero-inner {
        padding: 0 30px;
    }
    
    .service-single-hero-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .service-single-hero-subtitle {
        font-size: 17px;
    }
    
    .service-single-container {
        padding: 0 30px 0;
    }
    
    .service-single-intro {
        padding: 28px 24px;
        margin-bottom: 50px;
    }
    
    .service-single-intro-with-image {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-single-intro-image {
        width: 100%;
        max-width: 100%;
    }
    
    .service-single-intro-text {
        font-size: 18px;
    }
    
    .service-single-section-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .service-single-description-content {
        font-size: 16px;
    }
    
    .service-single-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-single-process-item {
        gap: 20px;
    }
    
    .service-single-process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-single-process-title {
        font-size: 20px;
    }
    
    .service-single-faqs-list {
        gap: 14px;
    }
    
    .service-single-faq-toggle {
        padding: 22px 24px;
        gap: 20px;
    }
    
    .service-single-faq-question {
        font-size: 17px;
    }
    
    .service-single-faq-icon {
        width: 36px;
        height: 36px;
    }
    
    .service-single-faq-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .service-single-faq-answer {
        font-size: 15px;
        padding: 0 24px;
    }
    
    .service-single-faq-item.active .service-single-faq-answer {
        padding: 12px 24px 44px;
    }
    
    .service-single-content-blocks {
        margin-top: 60px;
        gap: 50px;
    }
    
    .service-single-content-block {
        padding: 40px 32px;
    }
    
    .service-single-block-title {
        font-size: 32px;
        margin-bottom: 28px;
    }
    
    .service-single-block-content {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .service-single-hero .service-single-breadcrumb {
        margin-bottom: 16px;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 12px;
    }
    
    .breadcrumb-list {
        gap: 6px;
    }
    
    .breadcrumb-separator {
        margin: 0 2px;
    }
    
    .breadcrumb-separator svg {
        width: 10px;
        height: 10px;
    }
    
    .service-single-hero {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .service-single-hero-inner {
        padding: 0 20px;
    }
    
    .service-single-hero-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .service-single-hero-subtitle {
        font-size: 16px;
    }
    
    .service-single-container {
        padding: 0 20px 0;
    }
    
    .service-single-intro {
        padding: 24px 20px;
        margin-bottom: 40px;
    }
    
    .service-single-intro-with-image {
        flex-direction: column;
        gap: 24px;
    }
    
    .service-single-intro-image {
        width: 100%;
        max-width: 100%;
    }
    
    .service-single-intro-text {
        font-size: 16px;
    }
    
    .service-single-section-title {
        font-size: 28px;
        margin-bottom: 28px;
    }
    
    .service-single-process-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .service-single-content-blocks {
        margin-top: 50px;
        gap: 40px;
    }
    
    .service-single-content-block {
        padding: 32px 24px;
    }
    
    .service-single-block-title {
        font-size: 28px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .service-single-block-content {
        gap: 24px;
    }
    
    .service-single-block-text {
        font-size: 16px;
    }
    
    .service-single-list li {
        font-size: 16px;
        padding-left: 28px;
    }
    
    .service-single-faqs-list {
        gap: 12px;
    }
    
    .service-single-faq-toggle {
        padding: 20px 20px;
        gap: 16px;
    }
    
    .service-single-faq-question {
        font-size: 16px;
    }
    
    .service-single-faq-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .service-single-faq-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .service-single-faq-answer {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .service-single-faq-item.active .service-single-faq-answer {
        padding: 12px 20px 40px;
    }
    
    .service-single-list-ordered li {
        padding-left: 36px;
    }
}



/* Policy Pages - Page Header Section */
.page-header-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 80px;
    overflow: hidden;
}

.page-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.page-header-title {
    font-size: 72px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
}

.page-header-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Policy Content Wrapper */
.policy-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.policy-article {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-content {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.policy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #02717a;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #02b9b6;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #073f3f;
    margin: 32px 0 16px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.policy-content p {
    margin: 0 0 18px;
    line-height: 1.8;
    color: #444;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content li {
    margin: 10px 0;
    line-height: 1.7;
    color: #444;
}

.policy-content a {
    color: #02717a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #02b9b6;
}

.policy-content strong {
    font-weight: 600;
    color: #073f3f;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

/* Breadcrumb styles for all page headers */
.articles-header .breadcrumb-link,
.contact-hero .breadcrumb-link,
.about-header .breadcrumb-link,
.appointment-header .breadcrumb-link,
.career-header .breadcrumb-link,
.services-page-header .breadcrumb-link,
.before-after-page-header .breadcrumb-link,
.reviews-header .breadcrumb-link,
.doctors-page-header .breadcrumb-link,
.page-header-section .breadcrumb-link {
    color: #ffffff;
    font-weight: 500;
}

.articles-header .breadcrumb-link:hover,
.contact-hero .breadcrumb-link:hover,
.about-header .breadcrumb-link:hover,
.appointment-header .breadcrumb-link:hover,
.career-header .breadcrumb-link:hover,
.services-page-header .breadcrumb-link:hover,
.before-after-page-header .breadcrumb-link:hover,
.reviews-header .breadcrumb-link:hover,
.doctors-page-header .breadcrumb-link:hover,
.page-header-section .breadcrumb-link:hover {
    color: #f0ffff;
    text-decoration: underline;
}

.articles-header .breadcrumb-current span,
.contact-hero .breadcrumb-current span,
.about-header .breadcrumb-current span,
.appointment-header .breadcrumb-current span,
.career-header .breadcrumb-current span,
.services-page-header .breadcrumb-current span,
.before-after-page-header .breadcrumb-current span,
.reviews-header .breadcrumb-current span,
.doctors-page-header .breadcrumb-current span,
.page-header-section .breadcrumb-current span {
    color: #ffffff;
    font-weight: 600;
}

.articles-header .breadcrumb-separator,
.contact-hero .breadcrumb-separator,
.about-header .breadcrumb-separator,
.appointment-header .breadcrumb-separator,
.career-header .breadcrumb-separator,
.services-page-header .breadcrumb-separator,
.before-after-page-header .breadcrumb-separator,
.reviews-header .breadcrumb-separator,
.doctors-page-header .breadcrumb-separator,
.page-header-section .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav {
    margin-bottom: 16px;
}

.articles-breadcrumb,
.contact-breadcrumb,
.about-breadcrumb,
.appointment-breadcrumb,
.services-breadcrumb,
.before-after-breadcrumb,
.reviews-breadcrumb,
.doctors-breadcrumb,
.single-post-breadcrumb,
.career-breadcrumb,
.page-breadcrumb {
    background-color: transparent !important;
}

/* Single post breadcrumb wrapper */
.single-post-breadcrumb-wrapper {
    padding: 20px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e8e8e8;
}

.single-post-breadcrumb-wrapper .single-post-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1200px) {
    .single-post-breadcrumb-wrapper .single-post-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .single-post-breadcrumb-wrapper {
        padding: 16px 0;
    }
    
    .single-post-breadcrumb-wrapper .single-post-container {
        padding: 0 20px;
    }
}

/* Policy Pages Responsive Styles */
@media (max-width: 900px) {
    .page-header-section {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .page-header-inner {
        padding: 0 30px;
    }
    
    .page-header-title {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .page-header-subtitle {
        font-size: 17px;
    }
    
    .policy-content-wrapper {
        padding: 0 30px 60px;
    }
    
    .policy-article {
        padding: 50px 40px;
    }
    
    .policy-content h2 {
        font-size: 26px;
        margin: 36px 0 18px;
    }
    
    .policy-content h3 {
        font-size: 20px;
        margin: 28px 0 14px;
    }
}

@media (max-width: 600px) {
    .page-header-section {
        padding: 40px 0 30px;
        margin-bottom: 50px;
    }
    
    .page-header-inner {
        padding: 0 20px;
    }
    
    .page-header-title {
        font-size: 42px;
        margin-bottom: 16px;
    }
    
    .page-header-subtitle {
        font-size: 16px;
    }
    
    .policy-content-wrapper {
        padding: 0 20px 50px;
    }
    
    .policy-article {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .policy-content {
        font-size: 15px;
    }
    
    .policy-content h2 {
        font-size: 24px;
        margin: 32px 0 16px;
        padding-bottom: 10px;
    }
    
    .policy-content h3 {
        font-size: 19px;
        margin: 24px 0 12px;
    }
    
    .policy-content p {
        margin: 0 0 16px;
    }
    
    .policy-content ul,
    .policy-content ol {
        padding-left: 24px;
        margin: 18px 0;
    }
    
    .policy-section {
        margin-bottom: 32px;
    }
}

/* Career Page — wide application layout */
.career-header {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    margin-bottom: 0;
    overflow: hidden;
}

.career-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    text-align: center;
}

.career-title {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.career-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    max-width: min(42rem, 92vw);
    margin-left: auto;
    margin-right: auto;
}

.career-main {
    width: 100%;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 9vw, 6rem);
    background:
        radial-gradient(ellipse 90% 60% at 50% 0%, rgba(2, 113, 122, 0.06), transparent 55%),
        linear-gradient(180deg, #f5fbfb 0%, #ffffff 45%, #fafcfd 100%);
}

.career-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    width: 100%;
    box-sizing: border-box;
}

.career-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.career-form-focused {
    width: 100%;
    max-width: min(1180px, 100%);
    margin: 0 auto clamp(3rem, 8vw, 5rem);
}

.career-form-hero {
    text-align: left;
}

.career-form-hero .form-hero-content {
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.career-form-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #02717a;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: rgba(2, 113, 122, 0.1);
    border-radius: 999px;
    border: 1px solid rgba(2, 113, 122, 0.15);
}

.career-form-card-large {
    background: #ffffff;
    border-radius: 22px;
    padding: clamp(2.25rem, 5vw, 3.75rem) clamp(1.75rem, 6vw, 5rem);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 24px 56px rgba(2, 85, 93, 0.08);
    border: 1px solid rgba(2, 113, 122, 0.1);
    position: relative;
    overflow: hidden;
}

.career-form-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #02717a 0%, #02b9b6 55%, rgba(2, 185, 182, 0.4) 100%);
}

.career-form-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #142428;
    margin: 0 0 14px;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.career-form-subtitle {
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    color: #4a5f63;
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    max-width: 52rem;
}

.career-form-content {
    width: 100%;
    margin-bottom: 28px;
}

/* WPForms Styling for Career Page - Matching Appointment Page */
#wpforms-form-300 .wpforms-submit,
.career-form-content .wpforms-submit,
.career-form-content .wpforms-form .wpforms-submit {
    background: linear-gradient(135deg, #02717a 0%, #02b9b6 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 22px 48px;
    font-size: 19px;
    font-weight: 800;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(2, 113, 122, 0.25);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-height: 64px;
}

#wpforms-form-300 .wpforms-submit::after,
.career-form-content .wpforms-submit::after,
.career-form-content .wpforms-form .wpforms-submit::after {
    content: '→';
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 4px;
    position: relative;
    vertical-align: middle;
}

#wpforms-form-300 .wpforms-submit:hover::after,
.career-form-content .wpforms-submit:hover::after,
.career-form-content .wpforms-form .wpforms-submit:hover::after,
#wpforms-form-300 .wpforms-submit:active::after,
.career-form-content .wpforms-submit:active::after,
.career-form-content .wpforms-form .wpforms-submit:active::after,
#wpforms-form-300 .wpforms-submit:focus::after,
.career-form-content .wpforms-submit:focus::after,
.career-form-content .wpforms-form .wpforms-submit:focus::after,
#wpforms-form-300 .wpforms-submit.submitting::after,
.career-form-content .wpforms-submit.submitting::after,
.career-form-content .wpforms-form .wpforms-submit.submitting::after {
    transform: translateX(4px);
}

#wpforms-form-300 .wpforms-submit::before,
.career-form-content .wpforms-submit::before,
.career-form-content .wpforms-form .wpforms-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

#wpforms-form-300 .wpforms-submit:hover::before,
.career-form-content .wpforms-submit:hover::before,
.career-form-content .wpforms-form .wpforms-submit:hover::before {
    left: 100%;
}

#wpforms-form-300 .wpforms-submit:hover,
.career-form-content .wpforms-submit:hover,
.career-form-content .wpforms-form .wpforms-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(2, 113, 122, 0.35);
    background: linear-gradient(135deg, #025a61 0%, #019a97 100%);
}

#wpforms-form-300 .wpforms-submit:active,
.career-form-content .wpforms-submit:active,
.career-form-content .wpforms-form .wpforms-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(2, 113, 122, 0.25);
}

#wpforms-form-300 .wpforms-submit:focus,
.career-form-content .wpforms-submit:focus,
.career-form-content .wpforms-form .wpforms-submit:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(2, 113, 122, 0.25), 0 6px 20px rgba(2, 113, 122, 0.25);
}

#wpforms-form-300 .wpforms-submit-container,
.career-form-content .wpforms-submit-container,
.career-form-content .wpforms-form .wpforms-submit-container {
    text-align: left;
    margin-top: 35px;
    width: 100%;
}

.career-page {
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Responsive Styles for Career Page */
@media (max-width: 1024px) {
    .career-main-inner {
        padding: 0 24px;
    }

    .career-form-focused {
        max-width: 100%;
        margin-bottom: 60px;
    }

    .career-form-card-large {
        padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
    }
}

@media (max-width: 900px) {
    .career-header-inner {
        padding: 0 30px;
    }
    
    .career-title {
        font-size: 56px;
        line-height: 1.1;
    }
    
    .career-subtitle {
        font-size: 18px;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {
    .career-header {
        padding: 50px 0 40px;
        margin-bottom: 60px;
    }
    
    .career-header-inner {
        padding: 0 24px;
    }
    
    .career-title {
        font-size: 48px;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .career-subtitle {
        font-size: 17px;
        line-height: 1.6;
    }
    
    .career-main-inner {
        padding: 0 20px;
    }

    .career-form-focused {
        margin-bottom: 50px;
    }

    .form-hero-content {
        margin-bottom: 40px;
    }

    .career-form-title {
        font-size: 36px;
    }

    .career-form-subtitle {
        font-size: 18px;
    }

    .career-form-card-large {
        padding: 40px 35px;
    }

    .career-page {
        padding: 0;
        overflow-x: hidden;
    }
}

@media (max-width: 600px) {
    .career-header {
        padding: 40px 0 35px;
        margin-bottom: 50px;
    }
    
    .career-header-inner {
        padding: 0 20px;
    }
    
    .career-title {
        font-size: 40px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .career-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .career-main-inner {
        padding: 0 18px;
    }

    .career-form-focused {
        margin-bottom: 40px;
    }

    .form-hero-content {
        margin-bottom: 30px;
    }

    .career-form-title {
        font-size: 32px;
    }

    .career-form-subtitle {
        font-size: 17px;
    }

    .career-form-card-large {
        padding: 35px 25px;
        border-radius: 20px;
    }

    #wpforms-form-300 .wpforms-submit,
    .career-form-content .wpforms-submit,
    .career-form-content .wpforms-form .wpforms-submit {
        padding: 18px 36px;
        font-size: 17px;
        min-height: 56px;
    }
    
    .career-page {
        padding: 0;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .career-header {
        padding: 32px 0 28px;
        margin-bottom: 40px;
    }
    
    .career-header-inner {
        padding: 0 20px;
    }
    
    .career-header .breadcrumb-nav {
        margin-bottom: 12px;
    }
    
    .career-title {
        font-size: 36px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .career-subtitle {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 4px;
    }
    
    .career-main-inner {
        padding: 0 20px;
    }

    .career-form-focused {
        margin-bottom: 40px;
    }

    .form-hero-content {
        margin-bottom: 24px;
        text-align: center;
    }

    .career-form-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .career-form-hero {
        text-align: center;
    }

    .career-form-title {
        font-size: 28px;
        text-align: center;
    }

    .career-form-subtitle {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
        padding: 0 4px;
        margin-left: auto;
        margin-right: auto;
    }

    .career-form-card-large {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .career-form-content {
        margin-bottom: 24px;
    }
    
    .form-footer {
        padding-top: 24px;
    }
    
    .form-guarantee {
        font-size: 13px;
        flex-wrap: wrap;
        text-align: center;
        padding: 0 8px;
    }
    
    #wpforms-form-300 .wpforms-submit,
    .career-form-content .wpforms-submit,
    .career-form-content .wpforms-form .wpforms-submit {
        padding: 16px 24px;
        font-size: 15px;
        min-height: 50px;
    }
    
    .career-page {
        padding: 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
}
