/* Custom Properties */
:root {
    --primary-color: #0f111e; /* Deep Navy from Pascale RH Logo */
    --primary-light: #1c2136;
    --secondary-color: #F8F9FA; /* Crisp White / Light Gray */
    --accent-color: #00D4FF; /* Keep Cyan for digital highlights */
    --text-color: #000000; /* Solid Black for maximum contrast */
    --text-light: #222222; /* Very dark grey for descriptions to guarantee readability */
    --white: #FFFFFF;
    --bg-light: #F2F6FA;
    
    --font-main: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Reset & BaseStyles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Utilities */
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.text-white { color: var(--white); }
.text-white-80 { color: rgba(255,255,255,0.8); }
.bg-light { background-color: var(--bg-light); }
.highlight { color: var(--accent-color); }
.center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.rounded-lg { border-radius: var(--radius-lg); overflow: hidden; }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.btn-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-accent:hover {
    background-color: #33ddff;
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Language Switcher */
.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, 0.5); /* Separator color */
    font-size: 0.95rem;
    font-weight: 600;
    margin-right: 20px;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.lang-switch a:hover, .lang-switch a.active {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image-wrap {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

.float-card {
    position: absolute;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.card-top {
    top: 40px;
    left: -30px;
}

.card-bottom {
    bottom: 60px;
    right: -30px;
    animation-delay: 2s;
}

.avatars {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }

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

/* Sections */
.trust-section, .services-section, .pme-section, .booking-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.section-header.center {
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Trust Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    transition: background 0.3s ease;
}

.feature-card:hover .icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

/* Services */
.service-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-img-wrap {
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.dynamic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.glass-panel:hover .dynamic-img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* PME Section */
.pme-section {
    background-color: var(--primary-color);
}

.pme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pme-image {
    position: relative;
    height: 500px;
}

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

.absolute-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.absolute-stat h4 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

.check-list {
    list-style: none;
}

.check-list li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info i {
    width: 30px;
}

.booking-widget {
    padding: 40px;
    background: var(--white);
}

.mock-calendar {
    margin-top: 1.5rem;
}

.mock-week {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.mock-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
}

.day {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.day:hover {
    border-color: var(--primary-color);
}

.day.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.mock-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 2rem;
}

.time-slot {
    padding: 12px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.time-slot:hover {
    background: var(--bg-light);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    margin-left: 2rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 900px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    z-index: 2000;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem; /* Slightly larger for readability */
    line-height: 1.5;
    color: rgba(255,255,255,0.95); /* More opaque */
}

.cookie-content strong {
    font-size: 1rem;
    color: var(--white);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content, .pme-grid, .booking-container {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 2.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .service-cards { grid-template-columns: repeat(2, 1fr); }
    .card-top, .card-bottom { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .service-cards { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .absolute-stat { position: relative; bottom: 0; right: 0; margin-top: -50px; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    .cookie-buttons button {
        width: 100%;
    }
}

/* Legal Pages */
.legal-page {
    padding: 160px 0 80px 0;
    min-height: calc(100vh - 200px);
}
.legal-container {
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}
.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.legal-container .last-updated {
    font-size: 0.9rem;
    color: var(--primary-color);
    opacity: 0.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 15px;
}
.legal-container h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.legal-container p, .legal-container ul {
    margin-bottom: 1.5rem;
    color: rgba(15, 17, 30, 0.85); /* Slightly muted dark text */
    line-height: 1.7;
}
.legal-container ul {
    padding-left: 20px;
}
