/* ================================================================
   CleaningPro - Complete Styles
   Header | Footer | Hero | About + Global Base
   ================================================================ */

/* ---------------------------------------------------------------
   CSS VARIABLES (Global Design Tokens)
   --------------------------------------------------------------- */
:root {
    --cpro-primary:       #0891b2;
    --cpro-primary-dark:  #0e7490;
    --cpro-primary-light: #cffafe;
    --cpro-secondary:     #14b8a6;
    --cpro-accent:        #f59e0b;
    --cpro-dark:          #0f172a;
    --cpro-dark-mid:      #1e293b;
    --cpro-text:          #334155;
    --cpro-text-light:    #64748b;
    --cpro-border:        #e2e8f0;
    --cpro-bg:            #f8fafc;
    --cpro-white:         #ffffff;
    --cpro-radius:        12px;
    --cpro-radius-lg:     20px;
    --cpro-shadow:        0 4px 24px rgba(8, 145, 178, 0.12);
    --cpro-shadow-lg:     0 12px 48px rgba(8, 145, 178, 0.18);
    --cpro-font-head:     'Syne', sans-serif;
    --cpro-font-body:     'Plus Jakarta Sans', sans-serif;
    --cpro-transition:    0.3s ease;
    --cpro-header-h:      72px;
    --cpro-topbar-h:      40px;
}

/* ---------------------------------------------------------------
   GLOBAL RESET & BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--cpro-font-body);
    color: var(--cpro-text);
    background: var(--cpro-white);
    line-height: 1.65;
    overflow-x: hidden;
}

body.cpro-menu-open { overflow: hidden; }

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

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

/* Container */
.cpro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------------------------------------------------------------
   GLOBAL BUTTONS
   --------------------------------------------------------------- */
.cpro-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--cpro-font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--cpro-transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.cpro-btn--sm  { padding: 9px 18px; font-size: 13.5px; }
.cpro-btn--lg  { padding: 15px 30px; font-size: 16px; border-radius: 10px; }

.cpro-btn--primary {
    background: var(--cpro-primary);
    color: var(--cpro-white);
    border-color: var(--cpro-primary);
}
.cpro-btn--primary:hover {
    background: var(--cpro-primary-dark);
    border-color: var(--cpro-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8,145,178,0.35);
    color: var(--cpro-white);
}
.cpro-btn--outline {
    background: transparent;
    color: var(--cpro-primary);
    border-color: var(--cpro-primary);
}
.cpro-btn--outline:hover {
    background: var(--cpro-primary);
    color: var(--cpro-white);
    transform: translateY(-2px);
}
.cpro-btn--white {
    background: var(--cpro-white);
    color: var(--cpro-primary-dark);
    border-color: var(--cpro-white);
    font-weight: 700;
}
.cpro-btn--white:hover {
    background: var(--cpro-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.cpro-btn--outline-white {
    background: transparent;
    color: var(--cpro-white);
    border-color: rgba(255,255,255,0.6);
}
.cpro-btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--cpro-white);
    color: var(--cpro-white);
}

/* ---------------------------------------------------------------
   SECTION LABELS (shared across all sections)
   --------------------------------------------------------------- */
.cpro-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cpro-primary-light);
    color: var(--cpro-primary-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.cpro-section-heading {
    font-family: var(--cpro-font-head);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--cpro-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.cpro-section-heading em {
    font-style: normal;
    color: var(--cpro-primary);
}

/* ---------------------------------------------------------------
   HEADER — TOP BAR
   --------------------------------------------------------------- */
.cpro-header__top {
    background: var(--cpro-dark-mid);
    height: var(--cpro-topbar-h);
    display: flex;
    align-items: center;
}
.cpro-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cpro-header__contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cpro-header__contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    font-size: 12.5px;
    font-weight: 500;
    transition: color var(--cpro-transition);
}
.cpro-header__contact-item:hover { color: var(--cpro-primary-light); }
.cpro-header__contact-item svg { flex-shrink: 0; }

.cpro-header__top-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.cpro-header__badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--cpro-accent);
    font-size: 11.5px;
    font-weight: 600;
}

/* ---------------------------------------------------------------
   HEADER — MAIN NAV
   --------------------------------------------------------------- */
.cpro-header__nav {
    background: var(--cpro-white);
    height: var(--cpro-header-h);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--cpro-border);
    transition: box-shadow var(--cpro-transition);
}
.cpro-header__nav.cpro-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.cpro-header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

/* Logo */
.cpro-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.cpro-logo-icon { display: flex; align-items: center; }
.cpro-logo-text {
    font-family: var(--cpro-font-head);
    font-weight: 800;
    font-size: 20px;
    color: var(--cpro-dark);
    white-space: nowrap;
}
.cpro-logo-text--light { color: var(--cpro-white); }

/* Nav Menu */
.cpro-header__menu-wrap { flex: 1; display: flex; justify-content: center; }

.cpro-nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cpro-nav-menu li { position: relative; }
.cpro-nav-menu > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--cpro-text);
    border-radius: 6px;
    transition: all var(--cpro-transition);
    white-space: nowrap;
}
.cpro-nav-menu > li > a:hover,
.cpro-nav-menu > li.current-menu-item > a {
    color: var(--cpro-primary);
    background: var(--cpro-primary-light);
}

/* Dropdown */
.cpro-nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--cpro-white);
    border: 1px solid var(--cpro-border);
    border-radius: var(--cpro-radius);
    box-shadow: var(--cpro-shadow-lg);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--cpro-transition);
    z-index: 1000;
    padding: 6px;
}
.cpro-nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cpro-nav-menu .sub-menu li a {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--cpro-text);
    border-radius: 6px;
    transition: all var(--cpro-transition);
}
.cpro-nav-menu .sub-menu li a:hover {
    background: var(--cpro-primary-light);
    color: var(--cpro-primary-dark);
    padding-left: 18px;
}

/* Header Actions */
.cpro-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.cpro-header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--cpro-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}
.cpro-header__mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--cpro-dark);
    border-radius: 2px;
    transition: all var(--cpro-transition);
}
.cpro-header__mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.cpro-header__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.cpro-header__mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------------------------------------------------------------
   HERO SECTION
   --------------------------------------------------------------- */
.cpro-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdff 0%, #ecfeff 50%, #f8fafc 100%);
}
.cpro-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(8,145,178,0.07) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20,184,166,0.07) 0%, transparent 50%);
    pointer-events: none;
}

.cpro-hero__bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.5;
}
.cpro-hero__bg-blob--1 {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(8,145,178,0.15), transparent 70%);
}
.cpro-hero__bg-blob--2 {
    width: 400px; height: 400px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(20,184,166,0.12), transparent 70%);
}
.cpro-hero__bg-dots {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--cpro-primary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.04;
    pointer-events: none;
}

.cpro-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Badge */
.cpro-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--cpro-white), #e0f7fa);
    border: 1px solid rgba(8,145,178,0.2);
    color: var(--cpro-primary-dark);
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(8,145,178,0.1);
}

/* Hero Heading */
.cpro-hero__heading {
    font-family: var(--cpro-font-head);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    color: var(--cpro-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.cpro-hero__heading em {
    font-style: normal;
    color: var(--cpro-primary);
    position: relative;
}
.cpro-hero__heading em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cpro-primary), var(--cpro-secondary));
    border-radius: 2px;
    opacity: 0.4;
}

.cpro-hero__subheading {
    font-size: 17px;
    color: var(--cpro-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

/* Hero Stats */
.cpro-hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px 0;
    border-top: 1px solid var(--cpro-border);
    border-bottom: 1px solid var(--cpro-border);
}
.cpro-hero__stat { text-align: center; }
.cpro-hero__stat-number {
    display: block;
    font-family: var(--cpro-font-head);
    font-size: 28px;
    font-weight: 800;
    color: var(--cpro-primary);
    line-height: 1;
    margin-bottom: 4px;
}
.cpro-hero__stat-label {
    font-size: 12px;
    color: var(--cpro-text-light);
    font-weight: 500;
    white-space: nowrap;
}
.cpro-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: var(--cpro-border);
    flex-shrink: 0;
}

/* Hero CTA */
.cpro-hero__cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

/* Hero Trust */
.cpro-hero__trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cpro-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--cpro-text-light);
    font-weight: 500;
}

/* Hero Visual */
.cpro-hero__visual {
    position: relative;
}
.cpro-hero__img-wrap {
    position: relative;
}
.cpro-hero__img-placeholder {
    background: linear-gradient(135deg, #e0f7fa, #cffafe);
    border-radius: var(--cpro-radius-lg);
    border: 2px dashed rgba(8,145,178,0.3);
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cpro-text-light);
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.cpro-hero__img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8,145,178,0.08));
}

/* Floating Cards */
.cpro-hero__float-card {
    position: absolute;
    background: var(--cpro-white);
    border-radius: var(--cpro-radius);
    box-shadow: var(--cpro-shadow-lg);
    padding: 14px 18px;
    border: 1px solid var(--cpro-border);
    animation: cpro-float 4s ease-in-out infinite;
}
.cpro-hero__float-card--rating {
    bottom: 30px;
    left: -30px;
    min-width: 190px;
}
.cpro-hero__float-card--rating .cpro-hero__float-card-stars {
    color: var(--cpro-accent);
    font-size: 14px;
    margin-bottom: 4px;
}
.cpro-hero__float-card--rating p {
    font-size: 12.5px;
    color: var(--cpro-text);
    font-weight: 500;
    margin-bottom: 4px;
}
.cpro-hero__float-card--rating span {
    font-size: 11px;
    color: var(--cpro-text-light);
}
.cpro-hero__float-card--booking {
    top: 30px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: -2s;
}
.cpro-hero__float-card--booking .cpro-hero__float-card-icon {
    width: 38px; height: 38px;
    background: var(--cpro-primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cpro-hero__float-card--booking strong {
    display: block;
    font-size: 13px;
    color: var(--cpro-dark);
    font-weight: 700;
}
.cpro-hero__float-card--booking span {
    font-size: 12px;
    color: var(--cpro-text-light);
}

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

/* ---------------------------------------------------------------
   ABOUT SECTION
   --------------------------------------------------------------- */
.cpro-about {
    padding: 100px 0;
    background: var(--cpro-white);
}
.cpro-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Visual */
.cpro-about__visual { position: relative; }
.cpro-about__img-main { position: relative; z-index: 1; }
.cpro-about__img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--cpro-radius-lg);
    border: 2px dashed rgba(8,145,178,0.3);
    text-align: center;
    color: var(--cpro-text-light);
    font-size: 13px;
    gap: 10px;
}
.cpro-about__img-placeholder--main {
    height: 380px;
    background: linear-gradient(135deg, #e0f7fa, #f0fdff);
}
.cpro-about__img-placeholder--secondary {
    height: 160px;
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
}

.cpro-about__img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    z-index: 2;
    border-radius: var(--cpro-radius);
    box-shadow: var(--cpro-shadow-lg);
    overflow: hidden;
}
.cpro-about__img-secondary .cpro-about__img-placeholder--secondary {
    border-radius: 0;
    border: none;
}

/* Experience Badge */
.cpro-about__exp-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--cpro-primary);
    color: var(--cpro-white);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(8,145,178,0.4);
    z-index: 3;
}
.cpro-about__exp-number {
    display: block;
    font-family: var(--cpro-font-head);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}
.cpro-about__exp-text {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.85;
    line-height: 1.3;
}

/* Milestones */
.cpro-about__milestones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 50px;
}
.cpro-about__milestone {
    background: var(--cpro-bg);
    border: 1px solid var(--cpro-border);
    border-radius: var(--cpro-radius);
    padding: 16px;
    text-align: center;
    transition: all var(--cpro-transition);
}
.cpro-about__milestone:hover {
    border-color: var(--cpro-primary);
    background: var(--cpro-primary-light);
    transform: translateY(-2px);
}
.cpro-about__milestone strong {
    display: block;
    font-family: var(--cpro-font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--cpro-primary);
}
.cpro-about__milestone span {
    font-size: 12px;
    color: var(--cpro-text-light);
    font-weight: 500;
}

/* About Content */
.cpro-about__description {
    font-size: 16px;
    color: var(--cpro-text-light);
    line-height: 1.75;
    margin-bottom: 36px;
}

/* About Features */
.cpro-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.cpro-about__feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.cpro-about__feature-icon {
    width: 46px;
    height: 46px;
    background: var(--cpro-primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cpro-primary);
    transition: all var(--cpro-transition);
}
.cpro-about__feature:hover .cpro-about__feature-icon {
    background: var(--cpro-primary);
    color: var(--cpro-white);
    transform: scale(1.05);
}
.cpro-about__feature-text h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--cpro-dark);
    margin-bottom: 5px;
}
.cpro-about__feature-text p {
    font-size: 13px;
    color: var(--cpro-text-light);
    line-height: 1.55;
}

/* About CTA Row */
.cpro-about__cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cpro-about__learn-more {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--cpro-text);
    transition: color var(--cpro-transition);
}
.cpro-about__learn-more:hover { color: var(--cpro-primary); }
.cpro-about__play-btn {
    width: 44px;
    height: 44px;
    background: var(--cpro-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cpro-primary);
    flex-shrink: 0;
    transition: all var(--cpro-transition);
    padding-left: 3px;
}
.cpro-about__learn-more:hover .cpro-about__play-btn {
    background: var(--cpro-primary);
    color: var(--cpro-white);
    box-shadow: 0 4px 16px rgba(8,145,178,0.35);
}

/* ---------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------- */
.cpro-footer { background: var(--cpro-dark); }

/* Footer CTA Banner */
.cpro-footer__cta-banner {
    background: linear-gradient(135deg, var(--cpro-primary-dark) 0%, var(--cpro-primary) 50%, #0e9ab2 100%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}
.cpro-footer__cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
}
.cpro-footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cpro-footer__cta-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.cpro-footer__cta-text h3 {
    font-family: var(--cpro-font-head);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: var(--cpro-white);
    line-height: 1.2;
}
.cpro-footer__cta-text h3 em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 4px;
}
.cpro-footer__cta-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Footer Main */
.cpro-footer__main { padding: 72px 0 48px; }
.cpro-footer__grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
}
.cpro-footer__col--brand { }

.cpro-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.cpro-footer__brand-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Footer Trust Badges */
.cpro-footer__trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cpro-footer__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    transition: all var(--cpro-transition);
}
.cpro-footer__badge:hover {
    background: rgba(8,145,178,0.2);
    border-color: var(--cpro-primary);
    color: var(--cpro-primary-light);
}
.cpro-footer__badge svg { color: var(--cpro-primary); }

/* Footer Social */
.cpro-footer__social { display: flex; gap: 10px; }
.cpro-footer__social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--cpro-transition);
}
.cpro-footer__social-link:hover {
    background: var(--cpro-primary);
    border-color: var(--cpro-primary);
    color: var(--cpro-white);
    transform: translateY(-3px);
}

/* Footer Column Titles */
.cpro-footer__col-title {
    font-family: var(--cpro-font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--cpro-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.cpro-footer__col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--cpro-primary);
    border-radius: 1px;
}

/* Footer Links */
.cpro-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cpro-footer__links li a {
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--cpro-transition);
}
.cpro-footer__links li a::before {
    content: '→';
    font-size: 12px;
    color: var(--cpro-primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--cpro-transition);
}
.cpro-footer__links li a:hover {
    color: var(--cpro-white);
    padding-left: 6px;
}
.cpro-footer__links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact List */
.cpro-footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.cpro-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
}
.cpro-footer__contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--cpro-primary);
}
.cpro-footer__contact-list li a:hover { color: var(--cpro-white); }

/* Footer Hours */
.cpro-footer__hours h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--cpro-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.cpro-footer__hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 16px;
    font-size: 13px;
    color: #94a3b8;
}
.cpro-footer__hours-grid span:nth-child(odd) { font-weight: 600; color: #cbd5e1; }

/* Footer Bottom */
.cpro-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.cpro-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.cpro-footer__copyright {
    font-size: 13px;
    color: #64748b;
}
.cpro-footer__copyright a {
    color: var(--cpro-primary);
    font-weight: 600;
}
.cpro-footer__copyright a:hover { color: var(--cpro-primary-light); }

.cpro-footer__legal-links {
    list-style: none;
    display: flex;
    gap: 20px;
}
.cpro-footer__legal-links li a {
    font-size: 13px;
    color: #64748b;
    transition: color var(--cpro-transition);
}
.cpro-footer__legal-links li a:hover { color: var(--cpro-primary-light); }

/* Back to Top */
.cpro-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--cpro-primary);
    color: var(--cpro-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(8,145,178,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--cpro-transition);
    z-index: 998;
}
.cpro-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cpro-back-to-top:hover {
    background: var(--cpro-primary-dark);
    transform: translateY(-3px);
}

/* ---------------------------------------------------------------
   SCROLL ANIMATIONS
   --------------------------------------------------------------- */
[data-cpro-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-cpro-animate="fade-left"] { transform: translateX(40px); }
[data-cpro-animate="fade-right"] { transform: translateX(-40px); }
[data-cpro-animate].cpro-animated {
    opacity: 1;
    transform: translate(0);
}

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1100px) {
    .cpro-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .cpro-footer__col--brand { grid-column: 1 / -1; }
    .cpro-hero__inner { gap: 40px; }
    .cpro-about__inner { gap: 48px; }
}

@media (max-width: 900px) {
    .cpro-header__top { display: none; }
    .cpro-header__menu-wrap {
        display: none;
        position: fixed;
        top: var(--cpro-header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cpro-white);
        padding: 24px;
        overflow-y: auto;
        z-index: 998;
    }
    .cpro-header__menu-wrap.open { display: flex; flex-direction: column; }
    .cpro-nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .cpro-nav-menu > li > a { padding: 12px 16px; font-size: 16px; }
    .cpro-nav-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--cpro-bg);
        border-radius: 8px;
        margin-top: 4px;
        display: none;
    }
    .cpro-nav-menu li.open > .sub-menu { display: block; }
    .cpro-header__mobile-toggle { display: flex; }
    .cpro-btn--outline.cpro-btn--sm { display: none; }

    .cpro-hero__inner,
    .cpro-about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cpro-hero__visual { order: -1; }
    .cpro-hero__float-card--rating { left: 0; bottom: 10px; }
    .cpro-hero__float-card--booking { right: 0; top: 10px; }

    .cpro-about__img-secondary { width: 140px; right: -10px; bottom: -10px; }
    .cpro-about__features { grid-template-columns: 1fr; }

    .cpro-footer__cta-inner { flex-direction: column; text-align: center; }
    .cpro-footer__cta-actions { justify-content: center; }
}

@media (max-width: 600px) {
    .cpro-container { padding: 0 16px; }
    .cpro-hero { padding: 50px 0 40px; }
    .cpro-about { padding: 60px 0; }
    .cpro-hero__cta-group { flex-direction: column; align-items: stretch; }
    .cpro-hero__stats { gap: 14px; }
    .cpro-footer__grid { grid-template-columns: 1fr; }
    .cpro-footer__bottom-inner { flex-direction: column; text-align: center; }
    .cpro-about__milestones { grid-template-columns: 1fr 1fr; }
    .cpro-footer__main { padding: 48px 0 32px; }
}
