/* ==========================================================================
   HAMZA MULTISERVIZI - Main Stylesheet
   Mobile-first responsive CSS
   ========================================================================== */

/* ==========================================================================
   1. DESIGN SYSTEM / VARIABLES
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #E67E22;
    --color-primary-dark: #D35400;
    --color-primary-light: #FEF5EC;
    --color-text: #2C3E50;
    --color-text-secondary: #7F8C8D;
    --color-bg: #FFFFFF;
    --color-bg-dark: #1A1A2E;
    --color-success: #27AE60;
    --color-warning: #F39C12;
    --color-danger: #E74C3C;
    --color-border: #E8E8E8;
    --color-whatsapp: #25D366;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition: 0.3s ease;

    /* Layout */
    --container-width: 1200px;
    --container-padding: 20px;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.15rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}

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

a:hover {
    color: var(--color-primary-dark);
}

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* ==========================================================================
   3. TOP BAR
   ========================================================================== */

.top-bar {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    display: none;
}

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

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__contact a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}

.top-bar__contact a:hover {
    color: #ffffff;
}

.top-bar__contact svg,
.top-bar__contact i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar__lang {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar__lang a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.top-bar__lang a:hover,
.top-bar__lang a.active {
    color: #ffffff;
    border-bottom-color: var(--color-primary);
}

.top-bar__lang .flag {
    font-size: 16px;
    line-height: 1;
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}


/* ==========================================================================
   4. HEADER / NAVIGATION
   ========================================================================== */

.site-header {
    background-color: #ffffff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

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

.site-logo {
    flex-shrink: 0;
}

.site-logo img,
.site-logo svg {
    max-height: 42px;
    width: auto;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-size: 15px;
    position: relative;
}

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

.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

.header-cta {
    display: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 10001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger span:nth-child(1) {
    margin-bottom: 6px;
}

.hamburger span:nth-child(3) {
    margin-top: 6px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

@media (min-width: 768px) {
    .site-logo img,
    .site-logo svg {
        max-height: 50px;
    }
}

@media (min-width: 992px) {
    .main-nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .hamburger {
        display: none;
    }
}


/* ==========================================================================
   5. MOBILE MENU
   ========================================================================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    padding: 80px 24px 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu__overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-text);
    cursor: pointer;
    border: none;
    background: none;
    z-index: 10;
}

.mobile-menu__nav {
    flex: 1;
}

.mobile-menu__nav a {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text);
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition);
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a.active {
    color: var(--color-primary);
}

.mobile-menu__contact {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-secondary);
    padding: 10px 0;
    font-size: 0.95rem;
}

.mobile-menu__contact a:hover {
    color: var(--color-primary);
}

.mobile-menu__contact svg,
.mobile-menu__contact i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--color-primary);
}

@media (min-width: 992px) {
    .mobile-menu,
    .mobile-menu__overlay {
        display: none !important;
    }
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    border: none;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
}

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

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--color-text);
}

.btn-outline-primary {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-secondary {
    background-color: var(--color-bg-dark);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #12122a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-primary);
    padding: 0;
    font-weight: 600;
}

.btn-text:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 575px) {
    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-group .btn {
        width: 100%;
    }
}


/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(26, 26, 46, 0.65) 50%,
        rgba(26, 26, 46, 0.75) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    padding: 80px 0 60px;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero__title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero__title span {
    color: var(--color-primary);
}

.hero__subtitle {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn-group {
    justify-content: center;
}

@media (min-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 80vh;
    }

    .hero__content {
        text-align: left;
        max-width: 650px;
        margin-right: auto;
        padding: 100px 0 80px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .hero .btn-group {
        justify-content: flex-start;
    }
}


/* ==========================================================================
   8. TRUST BAR / STATS
   ========================================================================== */

.trust-bar {
    background-color: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.trust-bar__item {
    text-align: center;
    padding: 16px;
}

.trust-bar__number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-bar__label {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

@media (min-width: 576px) {
    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .trust-bar {
        padding: 48px 0;
    }

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

    .trust-bar__item {
        border-right: 1px solid var(--color-border);
    }

    .trust-bar__item:last-child {
        border-right: none;
    }

    .trust-bar__number {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   9. SECTION STYLES (Generic)
   ========================================================================== */

.section {
    padding: 48px 0;
}

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

.section--dark {
    background-color: var(--color-bg-dark);
    color: #ffffff;
}

.section--dark h2,
.section--dark h3 {
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }

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

    .section-header h2 {
        font-size: 2.25rem;
    }
}


/* ==========================================================================
   10. SERVICES GRID
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.service-card__icon svg,
.service-card__icon img {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-card__desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card__link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition);
}

.service-card__link::after {
    content: '\2192';
    transition: transform var(--transition);
}

.service-card__link:hover::after {
    transform: translateX(4px);
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-card {
        padding: 32px;
    }
}


/* ==========================================================================
   11. WHY CHOOSE US
   ========================================================================== */

.why-us {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.why-us__image {
    width: 100%;
    max-width: 500px;
    order: -1;
}

.why-us__image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.why-us__content {
    width: 100%;
}

.why-us__content h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.why-us__content h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.why-us__content > p {
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    margin-top: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.benefits-list li::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 13px;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .why-us {
        flex-direction: row;
        gap: 48px;
    }

    .why-us__image {
        flex: 1;
        order: 0;
    }

    .why-us__content {
        flex: 1;
    }
}

@media (min-width: 992px) {
    .why-us {
        gap: 64px;
    }
}


/* ==========================================================================
   12. HOW IT WORKS
   ========================================================================== */

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.step__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
    position: relative;
    z-index: 2;
}

.step__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.step__icon svg {
    width: 32px;
    height: 32px;
}

.step__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step__desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Vertical connector (mobile) */
.steps::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 48px;
    bottom: 48px;
    width: 2px;
    border-left: 2px dashed var(--color-border);
    transform: translateX(-50%);
    z-index: 1;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Horizontal connector (desktop) */
    .steps::before {
        top: 24px;
        left: calc(100% / 6);
        right: calc(100% / 6);
        bottom: auto;
        width: auto;
        height: 2px;
        border-left: none;
        border-top: 2px dashed var(--color-border);
        transform: none;
    }
}


/* ==========================================================================
   13. TESTIMONIALS
   ========================================================================== */

.testimonials-section {
    background-color: var(--color-primary-light);
    padding: 48px 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 0 8px;
}

.testimonial-card__inner {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 28px 24px;
}

.testimonial-card__stars {
    color: var(--color-primary);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card__text::before {
    content: '\201C';
    font-size: 2rem;
    color: var(--color-primary);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--color-primary-light);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card__meta {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* Slider navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.testimonials-dot.active {
    background-color: var(--color-primary);
    width: 28px;
    border-radius: 5px;
}

.testimonials-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: var(--color-text);
    font-size: 18px;
    transition: all var(--transition);
}

.testimonials-arrow:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.testimonials-arrow--prev {
    left: -16px;
}

.testimonials-arrow--next {
    right: -16px;
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-card {
        min-width: 50%;
    }

    .testimonial-card__inner {
        padding: 32px;
    }

    .testimonials-arrow {
        display: flex;
    }
}

@media (min-width: 992px) {
    .testimonial-card {
        min-width: 33.333%;
    }
}


/* ==========================================================================
   14. CTA BANNER
   ========================================================================== */

.cta-banner {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 48px 0;
    text-align: center;
}

.cta-banner h2 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-group {
    justify-content: center;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 64px 0;
    }

    .cta-banner h2 {
        font-size: 2.25rem;
    }
}


/* ==========================================================================
   15. GOOGLE MAPS
   ========================================================================== */

.map-section {
    width: 100%;
    height: 300px;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (min-width: 768px) {
    .map-section {
        height: 400px;
    }
}


/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.site-footer {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-col__logo {
    max-height: 40px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-col__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

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

.footer-links li {
    padding: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 6px 0;
    display: block;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-hours {
    width: 100%;
    border-collapse: collapse;
}

.footer-hours td {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 12px 4px 0;
    vertical-align: top;
}

.footer-hours td:first-child {
    font-weight: 500;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-info li svg,
.footer-contact-info li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--color-primary);
}

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

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 48px;
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom__text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .site-footer {
        padding: 64px 0 0;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}


/* ==========================================================================
   17. WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 0;
}

.whatsapp-float__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: whatsappPulse 2s ease-in-out infinite;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.whatsapp-float__btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    animation: none;
    color: #ffffff;
}

.whatsapp-float__tooltip {
    display: none;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@media (min-width: 768px) {
    .whatsapp-float__btn {
        width: 64px;
        height: 64px;
    }

    .whatsapp-float__btn svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 992px) {
    .whatsapp-float__tooltip {
        display: block;
        position: absolute;
        right: 72px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #ffffff;
        color: var(--color-text);
        font-size: 0.85rem;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        pointer-events: none;
    }

    .whatsapp-float__tooltip::after {
        content: '';
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid #ffffff;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    .whatsapp-float:hover .whatsapp-float__tooltip {
        opacity: 1;
        visibility: visible;
    }
}


/* ==========================================================================
   18. PAGE HEADER (Internal Pages)
   ========================================================================== */

.page-header {
    background-color: var(--color-primary-light);
    padding: 32px 0;
}

.page-header .breadcrumbs {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.page-header .breadcrumbs a {
    color: var(--color-primary);
}

.page-header .breadcrumbs a:hover {
    text-decoration: underline;
}

.page-header .breadcrumbs .separator {
    margin: 0 8px;
    color: var(--color-text-secondary);
}

.page-header h1 {
    margin-top: 8px;
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .page-header {
        padding: 48px 0;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }
}


/* ==========================================================================
   19. SERVICE SINGLE PAGE
   ========================================================================== */

.service-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-content {
    max-width: 800px;
}

.service-content h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.service-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 8px;
}

.service-content p {
    color: var(--color-text);
    line-height: 1.7;
}

.service-content ul,
.service-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}

.service-content ul li,
.service-content ol li {
    padding: 4px 0;
    line-height: 1.6;
    list-style: disc;
}

.service-content ol li {
    list-style: decimal;
}

.service-sidebar {
    width: 100%;
}

.sidebar-card {
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.sidebar-card .btn {
    width: 100%;
}

.document-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.document-list li:last-child {
    border-bottom: none;
}

.document-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.document-list a:hover {
    color: var(--color-primary);
}

.document-list a::before {
    content: '\1F4C4';
    font-size: 18px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .service-layout {
        flex-direction: row;
        gap: 48px;
    }

    .service-content {
        flex: 1;
    }

    .service-sidebar {
        width: 300px;
        flex-shrink: 0;
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
}


/* ==========================================================================
   20. FAQ ACCORDION
   ========================================================================== */

.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
    padding: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    gap: 16px;
    font-family: var(--font-heading);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
    color: var(--color-primary);
    font-size: 20px;
}

.faq-item.active .faq-question__icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer__inner {
    padding: 0 0 18px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


/* ==========================================================================
   21. CONTACT PAGE
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-form {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 28px 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.form-group label .required {
    color: var(--color-danger);
    margin-left: 2px;
}

.form-control {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 15px;
    color: var(--color-text);
    background-color: #ffffff;
    width: 100%;
    transition: all var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-control::placeholder {
    color: var(--color-text-secondary);
    opacity: 0.7;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237F8C8D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}

.form-check label {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    font-weight: 400;
    margin-bottom: 0;
}

.file-upload {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.file-upload:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload__icon {
    font-size: 32px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.file-upload__text {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.file-upload__text span {
    color: var(--color-primary);
    font-weight: 600;
}

/* Contact Info Card */
.contact-info-card {
    background-color: var(--color-primary-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
}

.contact-info-card h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(230, 126, 34, 0.15);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    background-color: #ffffff;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-item__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item__label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 2px;
}

.contact-info-item__value {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.contact-info-item__value a {
    color: var(--color-text);
}

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

@media (min-width: 576px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group--full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .contact-form {
        padding: 36px 32px;
    }

    .contact-info-card {
        padding: 36px 32px;
    }
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}


/* ==========================================================================
   22. ABOUT PAGE
   ========================================================================== */

.about-intro {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.about-intro__image {
    width: 100%;
    max-width: 500px;
}

.about-intro__image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-intro__content {
    width: 100%;
}

@media (min-width: 768px) {
    .about-intro {
        flex-direction: row;
        gap: 48px;
    }

    .about-intro__image,
    .about-intro__content {
        flex: 1;
    }
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 32px;
    margin-top: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 32px;
    padding-left: 16px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 3px solid var(--color-primary-light);
}

.timeline-item__year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.timeline-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.timeline-item__desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.team-member {
    text-align: center;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    transition: all var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.team-member__photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    background-color: var(--color-primary-light);
}

.team-member__name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-member__role {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 500;
}

@media (min-width: 576px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}


/* ==========================================================================
   23. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background-color: #ffffff;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner__text {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.6;
}

.cookie-banner__text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
}

.cookie-banner__customize {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px;
    text-align: center;
    transition: color var(--transition);
}

.cookie-banner__customize:hover {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .cookie-banner .container {
        flex-direction: row;
        align-items: center;
    }

    .cookie-banner__text {
        flex: 1;
    }

    .cookie-banner__actions {
        flex-direction: row;
        flex-shrink: 0;
    }

    .cookie-banner__actions .btn {
        width: auto;
    }
}


/* ==========================================================================
   24. CLIENT PORTAL / DASHBOARD
   ========================================================================== */

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dashboard-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.dashboard-card:hover {
    box-shadow: var(--shadow-md);
}

.dashboard-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.dashboard-card__title {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.dashboard-card__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.dashboard-card__value {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text);
}

.dashboard-card__meta {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

@media (min-width: 576px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .dashboard-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Progress Bar (6 Steps) */
.progress-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 24px 0;
    overflow-x: auto;
    padding: 8px 0;
}

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

.progress-step__circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-border);
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all var(--transition);
}

.progress-step.completed .progress-step__circle {
    background-color: var(--color-success);
    color: #ffffff;
}

.progress-step.active .progress-step__circle {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.2);
}

.progress-step__label {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-top: 8px;
    text-align: center;
    white-space: nowrap;
}

.progress-step.completed .progress-step__label,
.progress-step.active .progress-step__label {
    color: var(--color-text);
    font-weight: 500;
}

.progress-step__connector {
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: var(--color-border);
    z-index: 1;
}

.progress-step.completed .progress-step__connector {
    background-color: var(--color-success);
}

.progress-step:last-child .progress-step__connector {
    display: none;
}

/* Status Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--pending {
    background-color: #FEF3CD;
    color: #856404;
}

.badge--active,
.badge--in-progress {
    background-color: #D1ECF1;
    color: #0C5460;
}

.badge--completed {
    background-color: #D4EDDA;
    color: #155724;
}

.badge--rejected,
.badge--error {
    background-color: #F8D7DA;
    color: #721C24;
}

.badge--waiting {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

/* Document List (Portal) */
.portal-documents {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portal-documents li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    gap: 12px;
}

.portal-documents li:last-child {
    border-bottom: none;
}

.portal-documents__info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.portal-documents__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: var(--radius-sm);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.portal-documents__name {
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-documents__date {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.portal-documents__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.portal-documents__actions .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Message Thread */
.message-thread {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 500px;
    overflow-y: auto;
    padding: 16px;
}

.message {
    display: flex;
    gap: 12px;
    max-width: 80%;
}

.message--sent {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.message__bubble {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    line-height: 1.6;
}

.message--received .message__bubble {
    background-color: #f1f1f1;
    border-bottom-left-radius: 4px;
    color: var(--color-text);
}

.message--sent .message__bubble {
    background-color: var(--color-primary);
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.message__time {
    font-size: 0.7rem;
    color: var(--color-text-secondary);
    margin-top: 4px;
}

.message--sent .message__time {
    text-align: right;
}

.message-input {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--color-border);
}

.message-input .form-control {
    flex: 1;
}

.message-input .btn {
    flex-shrink: 0;
}


/* ==========================================================================
   25. BOOKING / CALENDAR
   ========================================================================== */

.booking-calendar {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    border: 1px solid var(--color-border);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-size: 1.1rem;
}

.calendar-header__nav {
    display: flex;
    gap: 8px;
}

.calendar-header__nav button {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    color: var(--color-text);
}

.calendar-header__nav button:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.calendar-grid__day-name {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.calendar-grid__day {
    text-align: center;
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    color: var(--color-text);
}

.calendar-grid__day:hover {
    background-color: var(--color-primary-light);
}

.calendar-grid__day--other-month {
    color: var(--color-text-secondary);
    opacity: 0.4;
}

.calendar-grid__day--today {
    font-weight: 700;
    color: var(--color-primary);
}

.calendar-grid__day--selected {
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
}

.calendar-grid__day--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-grid__day--has-slots {
    position: relative;
}

.calendar-grid__day--has-slots::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-success);
}

/* Time Slots */
.time-slots {
    margin-top: 24px;
}

.time-slots__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
}

.time-slots__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    background-color: #ffffff;
    transition: all var(--transition);
    color: var(--color-text);
}

.time-slot:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.time-slot--selected {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.time-slot--unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: line-through;
}

@media (min-width: 576px) {
    .time-slots__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .time-slots__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}


/* ==========================================================================
   26. UTILITY CLASSES
   ========================================================================== */

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

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

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

/* Margin Top */
.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mt-5 {
    margin-top: 48px;
}

/* Margin Bottom */
.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mb-5 {
    margin-bottom: 48px;
}

/* Padding Y */
.py-1 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-2 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-3 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.py-4 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.py-5 {
    padding-top: 48px;
    padding-bottom: 48px;
}

/* Section Padding */
.section-padding {
    padding: 48px 0;
}

/* Section Title */
.section-title {
    text-align: center;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive Visibility */
.hidden-mobile {
    display: none;
}

.hidden-desktop {
    display: block;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    .hidden-mobile {
        display: block;
    }

    .hidden-desktop {
        display: none;
    }
}

/* Flex utilities */
.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

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

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

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

/* Text color utilities */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-text-secondary);
}

.text-success {
    color: var(--color-success);
}

.text-danger {
    color: var(--color-danger);
}

.text-white {
    color: #ffffff;
}

/* Background utilities */
.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-white {
    background-color: #ffffff;
}

.bg-dark {
    background-color: var(--color-bg-dark);
}

/* Width */
.w-100 {
    width: 100%;
}


/* ==========================================================================
   27. ANIMATIONS
   ========================================================================== */

/* Fade In */
.animate-fadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fadeIn.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Up */
.animate-slideUp {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slideUp.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.animate-fadeInLeft {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fadeInLeft.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.animate-fadeInRight {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fadeInRight.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.animate-scaleIn {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scaleIn.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delay helpers */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}


/* ==========================================================================
   28. RESPONSIVE TYPOGRAPHY
   ========================================================================== */

@media (min-width: 576px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    h3 {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   29. FORM VALIDATION STATES
   ========================================================================== */

.form-control.is-valid {
    border-color: var(--color-success);
}

.form-control.is-valid:focus {
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-control.is-invalid {
    border-color: var(--color-danger);
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-error {
    color: var(--color-danger);
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-success {
    color: var(--color-success);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Form submit feedback */
.form-message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-message--success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-message--error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}


/* ==========================================================================
   30. LOADING & SKELETON STATES
   ========================================================================== */

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 32px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-border) 25%,
        #f0f0f0 50%,
        var(--color-border) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton--text {
    height: 16px;
    margin-bottom: 8px;
    width: 100%;
}

.skeleton--text:last-child {
    width: 60%;
}

.skeleton--title {
    height: 24px;
    width: 50%;
    margin-bottom: 12px;
}

.skeleton--image {
    height: 200px;
    width: 100%;
    margin-bottom: 16px;
}

.skeleton--circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}


/* ==========================================================================
   31. TABLES
   ========================================================================== */

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.table th,
.table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    font-weight: 600;
    color: var(--color-text);
    background-color: #f8f9fa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td {
    color: var(--color-text);
}

.table tr:hover td {
    background-color: var(--color-primary-light);
}


/* ==========================================================================
   32. ALERTS / NOTICES
   ========================================================================== */

.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.alert--info {
    background-color: #D1ECF1;
    color: #0C5460;
    border: 1px solid #BEE5EB;
}

.alert--success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert--warning {
    background-color: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
}

.alert--danger {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}


/* ==========================================================================
   33. MODAL
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.modal {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
}

.modal__title {
    font-size: 1.1rem;
    font-weight: 700;
}

.modal__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--color-text-secondary);
    transition: all var(--transition);
}

.modal__close:hover {
    background-color: var(--color-primary-light);
    color: var(--color-text);
}

.modal__body {
    padding: 24px;
}

.modal__footer {
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}


/* ==========================================================================
   34. PAGINATION
   ========================================================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
    text-decoration: none;
}

.pagination a:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
}

.pagination .current {
    background-color: var(--color-primary);
    color: #ffffff;
}

.pagination .dots {
    cursor: default;
    color: var(--color-text-secondary);
}

.pagination .prev,
.pagination .next {
    font-weight: 600;
}


/* ==========================================================================
   35. WORDPRESS SPECIFIC OVERRIDES
   ========================================================================== */

/* WordPress alignment classes */
.alignleft {
    float: left;
    margin: 0 24px 16px 0;
}

.alignright {
    float: right;
    margin: 0 0 16px 24px;
}

.aligncenter {
    display: block;
    margin: 0 auto 24px;
}

.alignwide {
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
}

.alignfull {
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

/* WordPress image captions */
.wp-caption {
    max-width: 100%;
    margin-bottom: 16px;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 8px;
    font-style: italic;
}

/* WordPress gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

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

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

.gallery-item img {
    border-radius: var(--radius-sm);
    width: 100%;
    height: auto;
}

/* WordPress post content */
.entry-content p {
    margin-bottom: 16px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.entry-content ul li {
    list-style: disc;
}

.entry-content ol li {
    list-style: decimal;
}

.entry-content li {
    padding: 4px 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background-color: var(--color-primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content pre {
    background-color: var(--color-bg-dark);
    color: #f8f9fa;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin-bottom: 24px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.entry-content code {
    background-color: var(--color-primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--color-primary-dark);
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    border-radius: 0;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.entry-content table th,
.entry-content table td {
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    text-align: left;
}

.entry-content table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.entry-content hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 32px 0;
}


/* ==========================================================================
   36. BLOG / POSTS
   ========================================================================== */

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.post-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

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

.post-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card__body {
    padding: 20px;
}

.post-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.post-card__category {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.post-card__title a {
    color: var(--color-text);
}

.post-card__title a:hover {
    color: var(--color-primary);
}

.post-card__excerpt {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.post-card__readmore {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 576px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================================================
   37. SCROLL TO TOP
   ========================================================================== */

.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9989;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
    font-size: 18px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: var(--color-primary);
}

@media (min-width: 768px) {
    .scroll-top {
        bottom: 104px;
    }
}


/* ==========================================================================
   38. PRICING TABLE (optional service page component)
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.pricing-card--featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.pricing-card--featured::before {
    content: attr(data-label);
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 16px;
    border-radius: 100px;
}

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

.pricing-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.pricing-card__price span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.pricing-card__desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.pricing-card__features li {
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--color-border);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: '\2713';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}

@media (min-width: 576px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ==========================================================================
   39. NOTIFICATION / TOAST
   ========================================================================== */

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: calc(100% - 48px);
    width: 380px;
}

.toast {
    background-color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--color-border);
}

.toast.show {
    transform: translateX(0);
}

.toast--success {
    border-left-color: var(--color-success);
}

.toast--error {
    border-left-color: var(--color-danger);
}

.toast--warning {
    border-left-color: var(--color-warning);
}

.toast--info {
    border-left-color: var(--color-primary);
}

.toast__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.toast__content {
    flex: 1;
}

.toast__title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.toast__message {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.toast__close {
    flex-shrink: 0;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 16px;
    padding: 0;
    line-height: 1;
}


/* ==========================================================================
   40. TABS
   ========================================================================== */

.tabs {
    margin-bottom: 24px;
}

.tabs__nav {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}

.tabs__nav button {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.tabs__nav button:hover {
    color: var(--color-text);
}

.tabs__nav button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    font-weight: 600;
}

.tabs__content {
    padding: 24px 0;
}

.tabs__panel {
    display: none;
}

.tabs__panel.active {
    display: block;
}


/* ==========================================================================
   41. TOOLTIP
   ========================================================================== */

[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-bg-dark);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    pointer-events: none;
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}


/* ==========================================================================
   42. PARTNERS / LOGOS BAR
   ========================================================================== */

.partners-bar {
    padding: 32px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.partners-bar__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.partners-bar__item {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.partners-bar__item:hover {
    opacity: 1;
}

.partners-bar__item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(1);
    transition: filter var(--transition);
}

.partners-bar__item:hover img {
    filter: grayscale(0);
}

@media (min-width: 768px) {
    .partners-bar {
        padding: 40px 0;
    }

    .partners-bar__grid {
        gap: 40px;
    }

    .partners-bar__item img {
        max-height: 48px;
    }
}


/* ==========================================================================
   43. SEARCH
   ========================================================================== */

.search-form {
    display: flex;
    gap: 8px;
    max-width: 500px;
}

.search-form .form-control {
    flex: 1;
}

.search-form .btn {
    flex-shrink: 0;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 99998;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.search-overlay__form {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.search-overlay__input {
    width: 100%;
    border: none;
    border-bottom: 3px solid var(--color-text);
    padding: 16px 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    background: transparent;
    color: var(--color-text);
    outline: none;
}

.search-overlay__input::placeholder {
    color: var(--color-text-secondary);
}

.search-overlay__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text);
}


/* ==========================================================================
   44. IMAGE OVERLAYS / CARDS WITH IMAGE BACKGROUNDS
   ========================================================================== */

.image-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.image-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover .image-card__bg {
    transform: scale(1.05);
}

.image-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
}

.image-card__content {
    position: relative;
    z-index: 2;
    padding: 24px;
    color: #ffffff;
    width: 100%;
}

.image-card__content h3 {
    color: #ffffff;
    margin-bottom: 4px;
}

.image-card__content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* ==========================================================================
   45. PRINT STYLES
   ========================================================================== */

@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .top-bar,
    .site-header,
    .mobile-menu,
    .whatsapp-float,
    .scroll-top,
    .cookie-banner,
    .footer-social,
    .btn,
    .hamburger {
        display: none !important;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: underline;
    }

    img {
        max-width: 100% !important;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    p {
        orphans: 3;
        widows: 3;
    }
}


/* ==========================================================================
   46. FOCUS & ACCESSIBILITY
   ========================================================================== */

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip navigation link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.skip-link:focus {
    top: 16px;
    color: #ffffff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-fadeIn,
    .animate-slideUp,
    .animate-fadeInLeft,
    .animate-fadeInRight,
    .animate-scaleIn {
        opacity: 1;
        transform: none;
    }

    .whatsapp-float__btn {
        animation: none;
    }
}


/* ==========================================================================
   47. DARK MODE (basic support via media query)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    /* Only activate if site enables dark mode via data attribute */
    [data-theme="auto"] {
        --color-text: #E8E8E8;
        --color-text-secondary: #A0A0A0;
        --color-bg: #1A1A2E;
        --color-bg-dark: #0F0F1E;
        --color-border: #2A2A3E;
        --color-primary-light: #2D2218;
    }

    [data-theme="auto"] .service-card,
    [data-theme="auto"] .testimonial-card__inner,
    [data-theme="auto"] .dashboard-card,
    [data-theme="auto"] .contact-form,
    [data-theme="auto"] .post-card,
    [data-theme="auto"] .modal,
    [data-theme="auto"] .toast,
    [data-theme="auto"] .booking-calendar {
        background-color: #22223A;
        border-color: #2A2A3E;
    }

    [data-theme="auto"] .site-header {
        background-color: #1A1A2E;
    }

    [data-theme="auto"] .form-control {
        background-color: #22223A;
        color: #E8E8E8;
        border-color: #2A2A3E;
    }
}


/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
