/* 
   Saul Consulting Website Styles
   Brand Colors:
   - Dark Gray: #231F20
   - Purple: #6B4A72
   - Supporting colors derived from brand colors
*/

/* ---------- FONT FACE ---------- */
@font-face {
    font-family: 'Wilke';
    src: url('../fonts/wilke-lt-std-55-roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---------- BASE STYLES ---------- */
:root {
    /* Brand Colors */
    --primary-dark: #231F20;
    --primary-purple: #6B4A72;
    
    /* Supporting Colors */
    --light-purple: #9A7BA0;
    --very-light-purple: #E9E1EB;
    --medium-gray: #5A5657;
    --light-gray: #E5E5E5;
    --off-white: #F9F9F9;
    --white: #FFFFFF;
    --accent: #D4B499;
    
    /* Font Sizes */
    --font-xl: 3.5rem;
    --font-lg: 2.5rem;
    --font-md: 1.8rem;
    --font-sm: 1.1rem;
    --font-xs: 0.9rem;
}

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

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
}

/* Mobile menu fixes */
body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Wilke', 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: var(--font-xl);
    font-weight: 700;
}

h2 {
    font-size: var(--font-lg);
    font-weight: 700;
}

h3 {
    font-size: var(--font-md);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: var(--light-purple);
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.2rem;
    font-size: 2.8rem;
}

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

.section-title::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-purple);
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: var(--font-sm);
}

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

.btn-primary:hover {
    background-color: var(--light-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 74, 114, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 74, 114, 0.2);
}

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

.btn-light:hover {
    background-color: var(--off-white);
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-right: 8px;
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 2rem;
}

.header-left {
    flex: 1;
}

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.logo a {
    display: block;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

nav ul li a {
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    line-height: 1.2;
    display: inline-block;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:not(.language-switch):hover::after,
nav ul li a:not(.language-switch).active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--light-purple);
}

.language-switch {
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    background-color: var(--light-purple);
    color: var(--white) !important;
    border: 2px solid var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.language-switch::after,
.premium-link::after {
    display: none !important;
}

/* Simple Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

/* Site Links */
.site-links {
    display: flex;
    gap: 12px;
    position: relative;
    margin-right: 10px;
}

.site-links::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    height: 26px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.site-link {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.site-link:hover {
    background-color: var(--primary-purple);
    color: var(--white);
}

.site-link i {
    margin-right: 6px;
    font-size: 0.8rem;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--white);
    min-width: 130px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    /* Add delay before hiding to prevent accidental closures */
    transition-delay: 0s;
}

/* Add a slight delay before showing the dropdown */
.language-dropdown:hover .language-dropdown-menu {
    transition-delay: 0.15s;
}

.language-dropdown:hover .language-dropdown-menu,
.language-dropdown.keyboard-focus .language-dropdown-menu,
.language-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: var(--primary-dark) !important;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-dropdown-menu a:last-child {
    border-bottom: none;
}

.language-dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    border-radius: 2px;
    vertical-align: middle;
    display: inline-block;
}

.language-dropdown-menu a.active {
    font-weight: 600;
    color: var(--primary-purple) !important;
}

/* Simple CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    background-color: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(107, 74, 114, 0.2);
}

.header-cta:hover {
    background-color: #5D3266;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(107, 74, 114, 0.3);
}

.header-cta svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

/* Media queries */
@media (max-width: 768px) {
    /* Hide only site links on mobile, keep language dropdown and hamburger menu */
    .site-links {
        display: none;
    }
    
    /* Remove the separator when site links are hidden */
    .site-links::after {
        display: none;
    }
    
    /* Adjust language dropdown spacing on mobile */
    .language-dropdown {
        margin-left: 0;
    }
    
    /* Adjust header layout for mobile */
    .header-right {
        justify-content: flex-end;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .header-left {
        flex: 1;
    }
    
    /* Make sure hamburger is always visible */
    .hamburger {
        display: block;
        margin-left: 15px;
    }
    
    /* Root variables */
    :root {
        --font-xl: 2.5rem;
        --font-lg: 2rem;
        --font-md: 1.4rem;
        --font-sm: 0.9rem;
        --font-xs: 0.8rem;
        --spacing-xl: 3.5rem;
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
        --spacing-sm: 1rem;
    }
    
    .logo img {
        max-height: 50px;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        display: inline-block;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .language-dropdown-toggle,
    .header-cta {
        padding: 0.4rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .language-dropdown-menu {
        min-width: 130px;
        right: -10px;
    }
    
    .about-content,
    .exclusive-features,
    .cta-content,
    .contact-container {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
        margin-bottom: 2rem;
    }

    .about-image {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .footer-ornament {
        width: 100px;
        height: 100px;
        margin: 0 0 1rem 0;
        position: relative;
        top: auto;
        left: auto;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-logo p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .footer-links ul,
    .footer-services ul {
        text-align: left;
    }
    
    .footer-contact {
        text-align: left;
    }
    
    .footer-contact h4 {
        text-align: left;
    }
    
    .footer-contact p,
    .footer-contact a {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom .social-icons {
        margin-top: 1rem;
    }
    
    header .container {
        padding: 0 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Additional styling for very small screens */
    .logo img {
        max-height: 40px;
    }
    
    /* Ensure proper spacing for the hamburger menu */
    header .container {
        padding: 0 0.6rem;
    }
    
    /* Hamburger menu styling for very small screens */
    .hamburger {
        margin-left: 10px;
    }
    
    /* Keep language dropdown compact */
    .language-dropdown-toggle {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
    
    :root {
        --section-padding: 3rem 0;
        --font-xl: 2.2rem;
        --font-lg: 1.8rem;
        --font-md: 1.3rem;
        --font-sm: 0.85rem;
        --font-xs: 0.75rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero h1::after {
        width: 80px;
        bottom: -8px;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin: 1.5rem auto 2rem;
    }
    
    .cta-primary .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-band h2 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .exclusive-features,
    .testimonials-slider,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .language-dropdown-menu {
        min-width: 120px;
        right: -5px;
    }
    
    .language-dropdown-menu a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .header-cta span {
        display: none;
    }
    
    .header-cta {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 2px 6px rgba(107, 74, 114, 0.3);
    }
    
    .header-cta:hover {
        background-color: #5D3266;
        transform: translateY(-1px);
    }
    
    .header-cta svg {
        margin-right: 0;
        width: 18px;
        height: 18px;
    }
}

/* ---------- HERO SECTION ---------- */
.hero {
    height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(35, 31, 32, 0.8) 0%,
        rgba(107, 74, 114, 0.75) 50%,
        rgba(35, 31, 32, 0.7) 100%
    );
}

.hero .container {
    width: 100%;
    max-width: 1400px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 3rem;
    height: 80vh;
}

.hero-text {
    text-align: left;
    max-width: 600px;
    padding-right: 2rem;
    position: relative;
}

.hero-text:before {
    content: "";
    position: absolute;
    left: -40px;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-purple), rgba(107, 74, 114, 0));
    border-radius: 3px;

    display: none;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.2px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    position: relative;
    animation: fadeIn 1s ease-out;
}

.hero h1 em {
    color: var(--very-light-purple);
    font-style: normal;
    position: relative;
    display: inline-block;
}

.hero h1 em:after {
    content: "";
    position: absolute;
    bottom: -0.1em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background-color: var(--light-purple);
    opacity: 0.6;
    border-radius: 2px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    line-height: 1.6;
    animation: fadeIn 1.5s ease-out;
    color: var(--white);
    opacity: 0.95;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    background-color: rgba(35, 31, 32, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.card-content {
    text-align: center;
}

.card-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.card-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-purple), var(--light-purple));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.card-text {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-primary {
    margin-top: 0;
}

.cta-primary .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    animation: pulseButton 2s infinite;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-primary .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-purple), var(--light-purple));
    z-index: -1;
    transition: all 0.6s ease;
}

.cta-primary .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--white);
}

.cta-primary .btn:hover::before {
    transform: scale(1.1);
    opacity: 0.9;
}



@keyframes floatCard {
    0% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) translateY(-15px);
    }
    100% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0);
    }
}

@keyframes pulseButton {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 74, 114, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(107, 74, 114, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 74, 114, 0);
    }
}

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

@media (max-width: 1200px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .floating-card {
        max-width: 400px;
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
        text-align: center;
        height: auto;
    }
    
    .hero-text {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-text:before {
        left: 50%;
        top: -20px;
        height: 5px;
        width: 80px;
        transform: translateX(-50%);
    }
    
    .hero-visual {
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .floating-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .card-title {
        font-size: 1.8rem;
    }
    
    .card-text {
        font-size: 1rem;
    }
    
    .cta-primary .btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ---------- SERVICES SECTION ---------- */
.services {
    padding: 6rem 0;
    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--very-light-purple);
    color: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.service-card .btn {
    margin-top: 1rem;
}

/* ---------- CTA BANDS ---------- */
.cta-band {
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-band h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-band p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-band.secondary {
    background-color: var(--primary-dark);
}

/* ---------- ENHANCED CTA SECTIONS ---------- */
.premium-cta, .elite-cta {
    position: relative;
    overflow: hidden;
}

.premium-cta::before {
    content: none;
}

.elite-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/photo-1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: 0;
}

.elite-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(212, 180, 153, 0.05) 0%, 
                rgba(212, 180, 153, 0) 30%,
                rgba(212, 180, 153, 0) 70%,
                rgba(212, 180, 153, 0.05) 100%);
    z-index: 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    width: 100%;
}

.cta-content.reversed {
    grid-template-columns: 2.4fr 1.8fr;
    position: relative;
}

.cta-text h2 {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
    width: 100%;
}

.premium-cta .cta-text h2::after,
.elite-cta .cta-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 6%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent);
    box-shadow: 0 0 8px rgba(212, 180, 153, 0.6);
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.btn-premium, .btn-elite {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 1rem;
}

.btn-premium {
    background-color: var(--white);
    color: var(--primary-purple);
    border: 2px solid var(--white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--white), rgba(255, 255, 255, 0.8));
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    color: var(--primary-purple);
}

.btn-elite {
    background: #D4B499;
    color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: subtle-glow 3s infinite alternate;
}

.btn-elite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #D4B499, #BE9D85);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.btn-elite:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: var(--primary-dark);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-elite:hover::before {
    opacity: 1;
}

.cta-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-style: italic;
    display: flex;
    align-items: center;
}  

.cta-note::before {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
}

.cta-credentials {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    padding-right: 4%;
}

.credential {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.credential i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* ---------- ABOUT SECTION ---------- */
.about {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, var(--very-light-purple) 0%, transparent 20%);
    opacity: 0.5;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.about-text {
    padding-right: 2rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .section-title::before {
    left: 0;
    transform: none;
    display: none;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-purple);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin: 2.5rem 0;
}

.feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(107, 74, 114, 0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 74, 114, 0.12);
    background-color: rgba(255, 255, 255, 0.95);
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    border-radius: 50%;
    color: var(--white);
    box-shadow: 0 8px 15px rgba(107, 74, 114, 0.2);
}

.feature i {
    color: var(--white);
    font-size: 1.4rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.about-cta {
    margin-top: 3rem;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-image.main-image {
    border: 8px solid var(--white);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.2);
}

.about-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 50%;
    height: 50%;
    background-color: var(--primary-purple);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(107, 74, 114, 0.3);
    z-index: 3;
    border: 4px solid var(--white);
}

.experience-badge .years {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.experience-badge .text {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.9;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Media Queries for About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 4rem;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature i {
        font-size: 1.2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-text {
        padding-right: 0;
        order: 2;
    }
    
    .about-visual {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 6rem 0;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .feature {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-intro {
        text-align: center;
        padding-left: 0;
        border-left: none;
        padding-bottom: 1.5rem;
        border-bottom: 3px solid var(--primary-purple);
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        bottom: -15px;
        left: -15px;
    }
    
    .experience-badge .years {
        font-size: 1.6rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .about-cta {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 5rem 0;
    }
    
    .feature {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto;
    }
    
    .about-accent {
        display: none;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -10px;
        left: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.4rem;
    }
    
    .experience-badge .text {
        font-size: 0.65rem;
    }
}

/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials {
    padding: 6rem 0;
    background-color: var(--accent);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--very-light-purple);
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.client {
    display: flex;
    align-items: center;
}

.client-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.client-info span {
    color: var(--primary-purple);
    font-size: 0.9rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Form row layout for contact form */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    margin-bottom: 2.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-method a {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-method address {
    font-style: normal;
    margin-bottom: 0.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(107, 74, 114, 0.3);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select {
    color: rgba(35, 31, 32, 0.6);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(107, 74, 114, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='none'%3E%3Cpath fill='%236B4A72' d='M6 6 0 0h12L6 6Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* ---------- FOOTER ---------- */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    position: relative;
}

/* Update the ornament styling to be behind the text */
.footer-ornament {
    position: absolute;
    width: 220px;
    height: 220px;
    top: -20px;
    left: -10px;
    z-index: -1;
}

.footer-ornament img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

.footer-logo p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-gray);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact p i {
    margin-right: 0.8rem;
}

.footer-contact a {
    color: var(--light-gray);
}

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

.social-icons {
    margin-top: 1.5rem;
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
}

.language-selector a {
    color: var(--light-gray);
    margin: 0 5px;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-selector a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

.language-selector a.active {
    color: var(--white);
    background-color: var(--primary-purple);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.language-selector {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.3rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* Animation keyframes for other elements */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 74, 114, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(107, 74, 114, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 74, 114, 0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes subtle-glow {
    0% {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 10px 25px rgba(212, 180, 153, 0.5);
    }
}

/* ---------- RESPONSIVE STYLES ---------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 5rem 0;
        --font-xl: 3rem;
        --font-lg: 2.2rem;
        --font-md: 1.6rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .header-center {
        display: none;
    }
    
    .header-left, .header-right {
        flex: auto;
    }
    
    .hamburger {
        display: block;
    }
    
    .header-center.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        display: inline-block;
        color: var(--white);
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .premium-link {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 768px) {
    :root {
        --font-xl: 2.5rem;
        --font-lg: 2rem;
        --font-md: 1.4rem;
        --font-sm: 0.9rem;
        --font-xs: 0.8rem;
        --spacing-xl: 3.5rem;
        --spacing-lg: 2.5rem;
        --spacing-md: 1.5rem;
        --spacing-sm: 1rem;
    }
    
    .hamburger {
        display: block;
        margin-left: auto;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-dark);
        flex-direction: column;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav ul.active {
        left: 0;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        display: inline-block;
        color: var(--white);
    }
    
    nav ul li a::after {
        display: none;
    }
    
    .premium-link {
        margin-top: 1rem;
        padding: 0.8rem 1.5rem;
        border-radius: 50px;
        background-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    :root {
        --font-xl: 2rem;
        --font-lg: 1.8rem;
        --font-md: 1.3rem;
        --font-sm: 0.9rem;
        --font-xs: 0.8rem;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.2rem;
        --spacing-sm: 0.8rem;
    }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        flex-direction: column;
        padding: 0;
        height: auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h1::after {
        width: 60px;
        height: 3px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-primary .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-band h2 {
        font-size: 1.8rem;
    }
    
    .services-grid,
    .exclusive-features,
    .about-features,
    .testimonials-slider,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-logo {
        grid-column: auto;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-ornament {
        width: 80px;
        height: 80px;
        margin: 0 auto 0.5rem;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
        margin-bottom: 0.8rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .header-right {
        gap: 5px;
    }
    
    .language-dropdown-toggle {
        padding: 0.3rem 0.5rem;
    }
    
    .language-dropdown-menu {
        min-width: 120px;
        right: -5px;
    }
    
    .language-dropdown-menu a {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .header-cta span {
        display: none;
    }
    
    .header-cta {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    
    .header-cta:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .header-cta svg {
        margin-right: 0;
    }
    
    /* Fix floating card on mobile */
    .hero-visual {
        width: 100%;
        position: relative;
        margin-top: 2rem;
    }
    
    .floating-card {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: none;
        animation: none;
    }
}

/* ---------- EXCLUSIVE SERVICES SECTION ---------- */
.exclusive-services {
    padding: 6rem 0;
    background: linear-gradient(to right, var(--primary-dark), #341F35);
    color: var(--white);
    position: relative;
}

.exclusive-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/photo-2.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.exclusive-services .container {
    position: relative;
    z-index: 1;
}

.exclusive-services .section-title {
    color: var(--white);
    margin-bottom: 2.5rem;
}

.exclusive-services .section-title::after {
    background-color: var(--accent);
}

.exclusive-services .section-title::before {
    background-color: var(--accent);
}

.exclusive-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.exclusive-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-purple), var(--light-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: rotateY(180deg);
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.exclusive-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-exclusive {
    background: linear-gradient(135deg, #D4B499, #9A7B5F);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 180, 153, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-exclusive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9A7B5F, #D4B499);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-exclusive:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 180, 153, 0.4);
    color: var(--white);
}

.btn-exclusive:hover::before {
    opacity: 1;
}

/* Enhanced contact form for premium clients */
.contact {
}





.form-group.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Media Queries for Exclusive Section */
@media (max-width: 768px) {
    .exclusive-features {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .exclusive-intro {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .btn-exclusive {
        padding: 1rem 2rem;
    }
}

/* Responsive styles for the enhanced CTAs */
@media (max-width: 1200px) {
    .cta-content {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .cta-content.reversed {
        grid-template-columns: 1fr 1.5fr;
    }
}

@media (max-width: 992px) {
    .cta-content,
    .cta-content.reversed {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-text h2 {
        text-align: center;
    }
    
    .cta-text h2::after {
        left: 50% !important;
        transform: translateX(-50%);
    }
    
    .cta-text p {
        margin: 0 auto 2rem;
        text-align: center;
    }
    
    .cta-action {
        align-items: center;
    }
    
    .cta-credentials {
        margin-bottom: 1.5rem;
    }
    
    .cta-content.reversed::before {
        width: 80%;
        height: 1px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to right, transparent, var(--accent), transparent);
    }
}

@media (max-width: 768px) {
    .cta-text h2 {
        font-size: 2.2rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .btn-premium, .btn-elite {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .premium-cta, .elite-cta {
        padding: 3rem 0;
    }
    
    .btn-premium, .btn-elite {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    .credential {
        font-size: 0.9rem;
    }
}

/* Styles removed to use the simpler header-cta definition */

@media (max-width: 1200px) {
    header .container {
        padding: 0 1rem;
    }
    
    nav ul li {
        margin: 0 0.8rem;
    }

    .header-cta {
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
    }
    
    /* Site links separator adjustment */
    .site-links {
        gap: 8px;
        margin-right: 8px;
    }
    
    .site-links::after {
        right: -4px;
        height: 16px;
    }
    
    .language-dropdown {
        margin-left: 8px;
    }
}

@media (max-width: 992px) {
    .header-center {
        display: none;
    }
    
    .header-left, .header-right {
        flex: auto;
    }
    
    .hamburger {
        display: block;
    }
}

.hamburger {
    background: transparent;
    border: none;
    display: none;
    width: 30px;
    height: 25px;
    position: relative;
    cursor: pointer;
    margin-left: 15px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px; /* Increased from 2px for better visibility */
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.premium-link {
    color: var(--accent) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background-color: rgba(212, 180, 153, 0.15);
    border-radius: 50px;
    transition: all 0.3s ease;
    line-height: 1;
}

.premium-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.premium-link:hover {
    color: #D4B499 !important;
    background-color: rgba(212, 180, 153, 0.25);
    transform: translateY(-2px);
}

.language-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-purple);
    color: var(--white) !important;
}

@media (max-width: 480px) {
    .site-link span {
        display: none;
    }
    
    .site-link i {
        margin-right: 0;
        font-size: 1rem;
    }
    
    .site-link {
        width: 32px;
        height: 32px;
        justify-content: center;
        padding: 0;
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

body.menu-open .mobile-menu-overlay {
    display: block;
} 

/* Update header layout for mobile */
@media (max-width: 992px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .header-left {
        flex: 0 0 auto;
    }
    
    .header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .hamburger {
        display: block;
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 0 0.8rem;
    }
    
    .header-right {
        gap: 5px;
    }
    
    .logo img {
        max-height: 40px;
    }
}

/* Enhanced Mobile Menu Styling */
@media (max-width: 1600px) {
    /* Hide the regular navigation in the header */
    .header-center {
        display: none;
    }
    
    /* Only show the navigation when it's active */
    .header-center.active {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 998;
    }
    
    /* Mobile menu container */
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(to bottom right, var(--primary-dark), #341F35);
        flex-direction: column;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        padding: 5rem 0 2rem;
        z-index: 999;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
    }
    
    /* Active state for mobile menu */
    nav ul.active {
        right: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Menu items */
    nav ul li {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
    }
    
    /* Menu items animation when active */
    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation for menu items */
    nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.active li:nth-child(2) { transition-delay: 0.2s; }
    nav ul.active li:nth-child(3) { transition-delay: 0.3s; }
    nav ul.active li:nth-child(4) { transition-delay: 0.4s; }
    nav ul.active li:nth-child(5) { transition-delay: 0.5s; }
    nav ul.active li:nth-child(6) { transition-delay: 0.6s; }
    
    /* Menu item links */
    nav ul li a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        color: var(--white);
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
    }
    
    /* Menu item hover/active state */
    nav ul li a:hover, 
    nav ul li a:focus {
        background-color: rgba(255, 255, 255, 0.1);
        border-left: 3px solid var(--accent);
        padding-left: 2.5rem;
    }
    
    /* Remove underline effect */
    nav ul li a::after {
        display: none;
    }
    
    /* Premium link styling */
    .premium-link {
        margin: 1.5rem 2rem;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
        background-color: rgba(212, 180, 153, 0.15);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 4rem);
    }
    
    /* Hamburger menu styling */
    .hamburger {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
        cursor: pointer;
        margin-left: 15px;
        z-index: 1100;
        transition: all 0.3s ease;
    }
    
    .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: var(--white);
        border-radius: 3px;
        opacity: 1;
        left: 0;
        transform: rotate(0deg);
        transition: all 0.3s ease;
    }
    
    .hamburger span:nth-child(1) {
        top: 0;
    }
    
    .hamburger span:nth-child(2) {
        top: 10px;
    }
    
    .hamburger span:nth-child(3) {
        top: 20px;
    }
    
    /* Hamburger animation when active */
    .hamburger.active span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        top: 10px;
        transform: rotate(-135deg);
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 998;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    body.menu-open .mobile-menu-overlay {
        display: block;
        opacity: 1;
    }
    
    /* Header layout for mobile */
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .header-left {
        flex: 0 0 auto;
    }
    
    .header-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* Mobile-specific adjustments for smaller screens */
@media (max-width: 480px) {
    nav ul {
        width: 85%;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        padding: 0.9rem 1.5rem;
    }
    
    nav ul li a:hover, 
    nav ul li a:focus {
        padding-left: 2rem;
    }
    
    .premium-link {
        margin: 1.2rem 1.5rem;
        width: calc(100% - 3rem);
    }
    
    header .container {
        padding: 0 0.8rem;
    }
    
    .header-right {
        gap: 5px;
    }
    
    .logo img {
        max-height: 45px;
        min-height: 45px;
    }
}

/* Enhanced Mobile Menu Styling */
@media (max-width: 1600px) {
    /* Hide the regular navigation in the header */
    .header-center {
        display: none;
    }
    
    /* Only show the navigation when it's active */
    .header-center.active {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 998;
    }
    
    /* Mobile menu container */
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(to bottom right, var(--primary-dark), #341F35);
        flex-direction: column;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        padding: 5rem 0 2rem;
        z-index: 999;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
    }
    
    /* Active state for mobile menu */
    nav ul.active {
        right: 0;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Menu items */
    nav ul li {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
        transition-delay: 0.1s;
    }
    
    /* Menu items animation when active */
    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
}

/* ---------- FORM SUCCESS & ERROR STYLES ---------- */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--very-light-purple), var(--white));
    border-radius: 15px;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(107, 74, 114, 0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: successFadeIn 1.2s ease-out 0.5s forwards;
}

.form-success .success-icon {
    margin-bottom: 1.5rem;
}

.form-success .success-icon i {
    font-size: 4rem;
    color: #28a745;
    opacity: 0;
    transform: scale(0);
    animation: successIconPop 0.8s ease-out 1s forwards, successPulse 2s ease-in-out 2s infinite;
}

.form-success h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: successTextSlide 0.6s ease-out 1.5s forwards;
}

.form-success p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: successTextSlide 0.6s ease-out 1.8s forwards;
}

.form-success .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: successTextSlide 0.6s ease-out 2.1s forwards;
}

.form-errors {
    background: linear-gradient(135deg, #ffe6e6, #fff5f5);
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.form-errors h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif;
}

.form-errors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.form-errors li {
    color: #721c24;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.form-errors li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.form-errors li:last-child {
    margin-bottom: 0;
}

/* Enhanced form styling */
.contact-form form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 74, 114, 0.1);
    border: 1px solid var(--very-light-purple);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:focus) {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Honeypot field (hidden spam protection) */
input[name="website"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Form button enhancement */
.contact-form .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.contact-form .btn:hover::before {
    left: 100%;
}

.contact-form .btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.contact-form .btn:hover i {
    transform: translateX(5px);
}

/* Success animations */
@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes successIconPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Loading state for form submission */
.contact-form .btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-form .btn:disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile responsiveness for form messages */
@media (max-width: 768px) {
    .form-success {
        padding: 2rem 1rem;
    }
    
    .form-success .success-icon i {
        font-size: 3rem;
    }
    
    .form-success h3 {
        font-size: 1.5rem;
    }
    
    .form-errors {
        padding: 1rem;
    }
    
    .contact-form form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .form-success {
        padding: 1.5rem 0.5rem;
    }
    
    .form-errors {
        padding: 0.75rem;
    }
    
    .contact-form form {
        padding: 1rem;
    }
}

/* Contact section responsive styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-container {
        gap: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-method {
        margin-bottom: 2rem;
    }
    
    .contact-method i {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 3rem 0;
    }
    
    .contact-container {
        gap: 2rem;
    }
    
    .form-row {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .contact-method {
        margin-bottom: 1.5rem;
    }
    
    .contact-method i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    
    .contact-method h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-method a,
    .contact-method p,
    .contact-method address {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group.checkbox-group label {
        font-size: 0.9rem;
    }
    
    .form-action {
        margin-top: 1.5rem;
    }
    
    .form-note {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}

/* ---------- ACCESSIBILITY STYLES ---------- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-purple);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
    visibility: hidden;
}

.skip-link:focus {
    top: 6px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus indicators for better accessibility */
*:focus {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

/* Remove outline for mouse users, keep for keyboard users */
*:focus:not(:focus-visible) {
    outline: none;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .service-card,
    .feature-card,
    .testimonial {
        border: 1px solid currentColor;
    }
}

/* Reduced motion support */
@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;
    }
    
    video {
        animation: none !important;
    }
}

/* ---------- CLIENT-SIDE VALIDATION STYLES ---------- */
.form-group {
    position: relative;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    animation: errorSlideIn 0.3s ease-out;
}

.field-error::before {
    content: '⚠';
    font-weight: bold;
    color: #dc3545;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

@keyframes errorSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.character-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

.character-counter.warning {
    color: #ffc107;
}

.character-counter.error {
    color: #dc3545;
    font-weight: bold;
}

.character-counter .current {
    font-weight: 600;
}

/* Loading spinner for submit button */
.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Enhanced form field focus states */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(107, 74, 114, 0.25);
    transform: translateY(-1px);
}

/* Auto-resize textarea styling */
.form-group textarea {
    resize: none;
    min-height: 120px;
    transition: height 0.3s ease;
}

/* Checkbox styling enhancement */
.form-group.checkbox-group input[type="checkbox"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(107, 74, 114, 0.25);
}

.form-group.checkbox-group input[type="checkbox"].error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-group.checkbox-group.has-error {
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-group.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-group.checkbox-group input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.form-group.checkbox-group label {
    flex: 1;
    margin-left: 0;
}

.form-group.checkbox-group .field-error {
    flex-basis: 100%;
    margin-top: 0.75rem;
    margin-left: 0;
    width: 100%;
}

.form-group.checkbox-group label.error {
    color: #dc3545;
    font-weight: 600;
}

.form-group.has-error {
    position: relative;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Success state for valid fields */
.form-group input:valid:not(:placeholder-shown):not(.error),
.form-group textarea:valid:not(:placeholder-shown):not(.error) {
    border-color: #28a745;
    box-shadow: 0 0 0 0.1rem rgba(40, 167, 69, 0.15);
}

/* Smooth transitions for all form elements */
.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

/* Mobile adjustments for validation */
@media (max-width: 768px) {
    .field-error {
        font-size: 0.8rem;
    }
    
    .character-counter {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .field-error {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
}

/* ---------- GDPR COMPLIANCE STYLES ---------- */

/* Legal Pages */
.legal-page {
    padding: 10rem 0 4rem;
    background: var(--off-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--medium-gray);
    font-size: var(--font-xs);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--secondary-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content strong {
    color: var(--primary-dark);
}

.legal-content a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-purple);
}

.intro-text {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-purple);
}

.intro-text p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* Data Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.right-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
}

.right-item i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.right-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.right-item p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-purple);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-banner.fade-out {
    opacity: 0;
    transform: translateY(100%);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-icon {
    font-size: 2rem;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-banner-text p {
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-policy-link {
    color: var(--primary-purple);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Cookie Preferences Modal */

.cookie-preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-preferences-header h3 {
    color: var(--primary-dark);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
}

.close-btn:hover {
    color: var(--primary-dark);
}

.cookie-preferences-content {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.cookie-category-title {
    font-weight: 600;
    color: var(--primary-dark);
}

.always-active {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-gray);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-purple);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-category-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.cookie-preferences-actions {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Form Success/Error States */
.form-success {
    background: var(--success-light);
    border: 1px solid var(--success-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.form-errors {
    background: var(--error-light);
    border: 1px solid var(--error-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-errors h4 {
    color: var(--error-color);
    margin-bottom: 1rem;
}

.form-errors ul {
    margin: 0;
    padding-left: 1.5rem;
}

.form-errors li {
    color: var(--error-color);
    margin-bottom: 0.5rem;
}

.info-box {
    background: var(--info-light);
    border: 1px solid var(--info-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-box i {
    color: var(--info-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-box p {
    margin: 0;
    color: var(--info-color);
    line-height: 1.6;
}

/* Cookie Settings Button */
.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 100%;
    max-width: 300px;
}

.cookie-settings-button .btn {
    background: var(--white);
    color: var(--primary-purple);
    border: 1px solid var(--primary-purple);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

.cookie-settings-button .btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Color variables for status indicators */
:root {
    --success-color: #10b981;
    --success-light: #d1fae5;
    --error-color: #ef4444;
    --error-light: #fee2e2;
    --info-color: #3b82f6;
    --info-light: #dbeafe;
}

/* Contact Info Section */
.contact-info {
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    border-bottom: none;
}

/* Footer Legal Links */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.footer-legal-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.footer-legal-links .separator {
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }
    
    .legal-content {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .right-item {
        padding: 1.5rem;
    }
    
    .cookie-settings-button {
        bottom: 10px;
        right: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        color: var(--light-gray);
    }
    
    .footer-legal-links {
        flex-direction: column;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .footer-legal-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        color: var(--light-gray);
    }
    
    .footer-legal-links .separator {
        display: none;
    }
}

/* ---------- GDPR COMPLIANCE STYLES ---------- */

/* Legal Pages */
.legal-page {
    padding: 10rem 0 4rem;
    background: var(--off-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--medium-gray);
    font-size: var(--font-xs);
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--very-light-purple);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-purple);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Cookie Policy Table */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-table th {
    background: var(--primary-purple);
    color: var(--white);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: var(--very-light-purple);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-purple);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

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

.cookie-banner.fade-out {
    opacity: 0;
    transform: translateY(100%);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-icon {
    flex-shrink: 0;
}

.cookie-banner-icon i {
    font-size: 2.5rem;
    color: var(--primary-purple);
}

.cookie-banner-text {
    flex-grow: 1;
}

.cookie-banner-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.cookie-banner-text p {
    margin: 0 0 0.5rem 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-policy-link {
    color: var(--primary-purple);
    text-decoration: underline;
    font-size: 0.85rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-banner-actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    color: var(--medium-gray);
    border: 1px solid var(--light-gray);
}

.btn-outline:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
}

/* Cookie Preferences Panel */


.cookie-preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-preferences-header h3 {
    margin: 0;
    color: var(--primary-purple);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
}

.close-btn:hover {
    color: var(--primary-dark);
}

.cookie-preferences-content {
    margin-bottom: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-category-title {
    color: var(--primary-dark);
}

.always-active {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-category-description {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-preferences-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Standalone Cookie Preferences Modal */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-preferences-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-preferences-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cookie-preferences-modal .cookie-preferences-content {
    position: relative;
    background: var(--white);
    margin: 2rem auto;
    max-width: 800px;
    max-height: calc(100vh - 4rem);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cookie-preferences-modal .cookie-preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--light-gray);
    background: var(--off-white);
}

.cookie-preferences-modal .cookie-preferences-header h3 {
    color: var(--primary-purple);
    margin: 0;
    font-size: 1.5rem;
}

.cookie-preferences-modal .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-preferences-modal .close-btn:hover {
    color: var(--primary-dark);
    background: var(--light-gray);
}

.cookie-preferences-modal .cookie-preferences-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cookie-preferences-modal .cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid var(--light-gray);
}

.cookie-preferences-modal .cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-preferences-modal .cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-preferences-modal .cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-dark);
}

.cookie-preferences-modal .cookie-category-title {
    font-size: 1.1rem;
}

.cookie-preferences-modal .always-active {
    background: var(--primary-purple);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-preferences-modal .cookie-category-description {
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.6;
}

.cookie-preferences-modal .cookie-preferences-actions {
    padding: 2rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: var(--off-white);
}

@media (max-width: 768px) {
    .cookie-preferences-modal .cookie-preferences-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .cookie-preferences-modal .cookie-preferences-header,
    .cookie-preferences-modal .cookie-preferences-body,
    .cookie-preferences-modal .cookie-preferences-actions {
        padding: 1.5rem;
    }
    
    .cookie-preferences-modal .cookie-preferences-actions {
        flex-direction: column;
    }
    
    .cookie-preferences-modal .cookie-preferences-actions .btn {
        width: 100%;
    }
}

/* Data Rights Page */
.intro-text {
    background: var(--very-light-purple);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.rights-overview {
    margin-bottom: 3rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(107, 74, 114, 0.1);
}

.right-item i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.right-item h3 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.right-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Data Rights Form */
.data-rights-form {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.data-rights-form h2 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.data-rights-form .form-group {
    margin-bottom: 1.5rem;
}

.data-rights-form label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.data-rights-form input,
.data-rights-form select,
.data-rights-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.data-rights-form input:focus,
.data-rights-form select:focus,
.data-rights-form textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 2px rgba(107, 74, 114, 0.2);
}

.data-rights-form small {
    display: block;
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.info-box {
    background: var(--very-light-purple);
    border-left: 4px solid var(--primary-purple);
    padding: 1rem;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-box i {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.info-box p {
    margin: 0;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    margin-bottom: 1rem;
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.form-success h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}



/* Cookie Controls */
.cookie-controls {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.cookie-settings {
    margin-top: 1.5rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-gray);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .toggle-slider {
    background-color: var(--primary-purple);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

input:focus + .toggle-slider {
    box-shadow: 0 0 0 2px rgba(107, 74, 114, 0.2);
}

/* Cookie Message */
.cookie-message {
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-banner-actions {
        align-self: stretch;
        justify-content: center;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 1rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
    }
    
    .cookie-banner-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-actions .btn {
        width: 100%;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 4rem 0 2rem;
    }
    
    .legal-content {
        padding: 1rem;
    }
    
    .data-rights-form {
        padding: 1.5rem;
    }
    
    .cookie-controls {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .cookie-banner-icon i {
        font-size: 2rem;
    }
    
    .right-item {
        padding: 1rem;
    }
    
    .right-item i {
        font-size: 2rem;
    }
}