/*
Theme Name: Sybella Loram
Description: Ultra-modern spiritual wellness theme
Version: 3.0
Author: Sybella Loram
*/

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --cream: #faf9f7;
    --rose: #e8dcd8;
    --rose-accent: #c9a9a6;
    --rose-dark: #a88b8b;
    --blue: #94c5d8;
    --blue-light: #d4eaf3;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --gradient-rose: linear-gradient(135deg, #e8dcd8 0%, #d4c4c0 100%);
    --gradient-blue: linear-gradient(135deg, #d4eaf3 0%, #94c5d8 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, #d4eaf3 0px, transparent 50%),
                     radial-gradient(at 80% 0%, #e8dcd8 0px, transparent 50%),
                     radial-gradient(at 0% 50%, #faf9f7 0px, transparent 50%),
                     radial-gradient(at 80% 50%, #d4c4c0 0px, transparent 50%),
                     radial-gradient(at 0% 100%, #d4eaf3 0px, transparent 50%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-xl: 0 30px 100px rgba(0,0,0,0.1);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

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

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

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-xl {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.display-lg {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.display-md {
    font-size: clamp(2rem, 4vw, 3rem);
}

.text-gradient {
    background: linear-gradient(135deg, var(--rose-accent) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   COMPONENTS
   ========================================== */

/* Tag */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rose-accent);
    border-radius: 50%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

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

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.1);
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 0;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.btn-ghost:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Card */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0 12px;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0 8px;
    box-shadow: var(--shadow-sm);
}

.header.scrolled .header__logo {
    font-size: 48px;
}

.header.scrolled .header__logo-img {
    max-width: 80px;
}

.header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.header__logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.header__logo {
    font-family: 'Great Vibes', cursive;
    font-size: 100px;
    line-height: 1;
    color: var(--rose-accent);
    transition: all 0.4s var(--ease);
    margin-top: 15px;
}

.header__logo-wrap:hover .header__logo {
    color: var(--rose-dark);
}

.header__logo-img {
    max-width: 100px;
    height: auto;
    margin-top: -5px;
    transition: all 0.4s var(--ease);
}

.header__nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
}

.header__nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--rose-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease);
}

.header__nav a:hover,
.header__nav .current-menu-item a {
    color: var(--text-primary);
}

.header__nav a:hover::after,
.header__nav .current-menu-item a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--rose-accent);
    color: white;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    margin-left: 20px;
}

.header__call:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
}

.header__call svg {
    flex-shrink: 0;
}

.header.scrolled .header__call {
    padding: 10px 20px;
    font-size: 13px;
}

.header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    transition: background 0.3s var(--ease);
}

.header__toggle:hover {
    background: var(--rose);
}

.header__toggle span {
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

@media (max-width: 900px) {
    .header__logo {
        font-size: 60px;
    }
    .header.scrolled .header__logo {
        font-size: 40px;
    }
    .header__nav { display: none; }
    .header__call { display: none; }
    .header__toggle { display: flex; }
    .header__inner {
        flex-direction: row;
        justify-content: center;
        position: relative;
    }
}

/* Mobile Menu Call Button */
.mobile-menu__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--rose-accent);
    color: white;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    transition: all 0.3s var(--ease);
}

.mobile-menu__call:hover {
    background: var(--rose-dark);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.hero__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.15;
    animation: floatBubble 20s ease-in-out infinite;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
    animation-delay: -5s;
}

.hero__shape--3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

.hero__shape--4 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 30%;
    animation-delay: -3s;
}

.hero__shape--5 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 15%;
    animation-delay: -8s;
}

.hero__shape--6 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation-delay: -12s;
}

.hero__shape--7 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 40%;
    animation-delay: -7s;
}

.hero__shape--8 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 40%;
    animation-delay: -15s;
}

@keyframes floatBubble {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    25% { 
        transform: translate(30px, -40px) scale(1.05); 
    }
    50% { 
        transform: translate(-20px, -20px) scale(0.95); 
    }
    75% { 
        transform: translate(40px, 30px) scale(1.02); 
    }
}

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

.hero__text {
    max-width: 600px;
}

.hero__tag {
    margin-bottom: 30px;
}

.hero__title {
    margin-bottom: 30px;
}

.hero__title em {
    font-style: italic;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
}

.hero__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero__image-placeholder {
    width: 100%;
    height: 600px;
    background: var(--gradient-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.hero__float {
    position: absolute;
    bottom: 40px;
    left: -60px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__float-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-rose);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-dark);
}

.hero__float-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    line-height: 1;
    color: var(--text-primary);
}

.hero__float-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 1000px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__text { max-width: 100%; }
    .hero__subtitle { margin: 0 auto 50px; }
    .hero__actions { justify-content: center; }
    .hero__visual { max-width: 450px; margin: 0 auto; }
    .hero__float { left: 50%; transform: translateX(-50%); bottom: -30px; }
}

/* ==========================================
   ABOUT / INTRO SECTION
   ========================================== */
.intro {
    padding: 280px 0 100px;
    position: relative;
    overflow: hidden;
}

.intro__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.intro__bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.intro__bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.12;
    animation: floatBubble 20s ease-in-out infinite;
}

.intro__bubble--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.intro__bubble--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -60px;
    animation-delay: -5s;
}

.intro__bubble--3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 15%;
    animation-delay: -10s;
}

.intro__bubble--4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 25%;
    animation-delay: -3s;
}

.intro__bubble--5 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: -8s;
}

.intro__header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.intro__tag {
    margin-bottom: 20px;
}

.intro__title em {
    font-style: italic;
}

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

.intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro__text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro__link {
    margin-top: 20px;
}

/* Intro Image */
.intro__image {
    position: relative;
    display: flex;
    align-items: center;
}

.intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro__image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.intro__image-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--rose-accent);
    line-height: 1;
}

.intro__image-badge-text {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Intro Cards - 3 cards stacked */
.intro__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.bento-card {
    padding: 28px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.bento-card__icon {
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-accent);
    margin-bottom: 16px;
}

.bento-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.bento-card__text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==========================================
   STORY GRID (3 Columns)
   ========================================== */
.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.story__card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.story__card-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-accent);
    margin-bottom: 24px;
}

.story__card-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.story__card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.story__card-text:last-of-type {
    margin-bottom: 0;
}

.story__btn {
    margin-top: auto;
    padding-top: 24px;
    align-self: flex-start;
}

/* Story Image (Center Column) */
.story__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story__image img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story__image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    white-space: nowrap;
}

.story__image-badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--rose-accent);
    line-height: 1;
}

.story__image-badge-text {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .story__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .story__image {
        grid-column: span 2;
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .story__image img {
        max-height: 300px;
    }
}

@media (max-width: 700px) {
    .story__grid {
        grid-template-columns: 1fr;
    }
    
    .story__image {
        grid-column: span 1;
        max-width: 250px;
    }
    
    .story__image img {
        max-height: 250px;
    }
    
    .story__card {
        padding: 30px 24px;
    }
    
    .story__card-title {
        font-size: 20px;
    }
    
    .story__card-text {
        font-size: 14px;
    }
    
    .story__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1000px) {
    .intro__grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 220px 0 60px;
    }
    
    .intro__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .intro__image {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .intro__content {
        text-align: center;
    }
    
    .intro__link {
        justify-content: center;
    }
    
    .intro__header {
        margin-bottom: 30px;
    }
    
    .intro__title {
        font-size: 28px;
    }
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services__header {
    text-align: center;
    margin-bottom: 50px;
}

.services__title {
    margin-top: 20px;
}

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

.service-card {
    padding: 48px 36px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-rose);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card__inner {
    position: relative;
    z-index: 1;
}

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-accent);
    box-shadow: var(--shadow-sm);
}

.service-card__title {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ==========================================
   BLOG CARDS
   ========================================== */
.blog-section {
    padding: 100px 0;
}

.blog-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.blog-section__title {
    margin-top: 16px;
}

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

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-card__image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-rose);
}

.blog-card__content {
    padding: 32px;
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-card__date {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card__cat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rose-accent);
}

.blog-card__title {
    font-size: 22px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-card__title a:hover {
    color: var(--rose-accent);
}

.blog-card__excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.blog-card__link svg {
    transition: transform 0.3s var(--ease);
}

.blog-card__link:hover svg {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .blog-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================
   BLOG PAGE - MODERN
   ========================================== */
.blog-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-page__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.blog-page__bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blog-page__bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.12;
    animation: floatBubble 20s ease-in-out infinite;
}

.blog-page__bubble--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.blog-page__bubble--2 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: -60px;
    animation-delay: -5s;
}

.blog-page__bubble--3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation-delay: -10s;
}

.blog-page__bubble--4 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 30%;
    animation-delay: -3s;
}

.blog-page__bubble--5 {
    width: 120px;
    height: 120px;
    top: 25%;
    left: 15%;
    animation-delay: -8s;
}

.blog-page__header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.blog-page__title {
    margin-top: 20px;
}

.blog-page__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.blog-featured__image {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-featured__image:hover img {
    transform: scale(1.05);
}

.blog-featured__placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-rose);
    min-height: 300px;
}

.blog-featured__label {
    display: inline-block;
    background: var(--rose);
    color: var(--rose-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.blog-featured__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-featured__cat a {
    color: var(--rose-accent);
}

.blog-featured__title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-featured__title a {
    color: var(--text-primary);
}

.blog-featured__title a:hover {
    color: var(--rose-accent);
}

.blog-featured__excerpt {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Blog Grid */
.blog-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card__image {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}

.blog-card:hover .blog-card__overlay {
    opacity: 1;
}

.blog-card__overlay span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border: 2px solid white;
    border-radius: 100px;
}

.blog-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-rose);
    min-height: 180px;
}

.blog-card__content {
    padding: 28px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card__cat a {
    color: var(--rose-accent);
}

.blog-card__title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
}

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

.blog-card__title a:hover {
    color: var(--rose-accent);
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.blog-card__link:hover {
    color: var(--rose-accent);
}

.blog-card__link svg {
    transition: transform 0.3s var(--ease);
}

.blog-card__link:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.blog-page__pagination {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.blog-page__pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.blog-page__pagination a,
.blog-page__pagination span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.blog-page__pagination a:hover {
    background: var(--black);
    color: white;
}

.blog-page__pagination .current {
    background: var(--black);
    color: white;
}

/* Empty State */
.blog-page__empty {
    text-align: center;
    padding: 70px 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.blog-page__empty-icon {
    width: 100px;
    height: 100px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--rose-accent);
}

.blog-page__empty h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.blog-page__empty p {
    color: var(--text-secondary);
    font-size: 16px;
}

@media (max-width: 1000px) {
    .blog-featured {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .blog-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .blog-page__grid {
        grid-template-columns: 1fr;
    }
    .blog-featured {
        padding: 24px;
    }
    .blog-featured__title {
        font-size: 24px;
    }
}

/* ==========================================
   SINGLE POST
   ========================================== */
.single {
    padding: 120px 0 80px;
}

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

.single__header {
    text-align: center;
    margin-bottom: 50px;
}

.single__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.single__date {
    font-size: 14px;
    color: var(--text-muted);
}

.single__cat {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-accent);
}

.single__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.single__featured {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.single__featured img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.single__content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.single__content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.single__content h2 {
    margin: 48px 0 24px;
    font-size: 28px;
}

.single__content h3 {
    margin: 40px 0 20px;
    font-size: 22px;
}

.single__content blockquote {
    margin: 48px 0;
    padding: 32px 40px;
    background: var(--cream);
    border-left: 4px solid var(--rose-accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
}

.single__content ul, .single__content ol {
    margin: 28px 0;
    padding-left: 28px;
}

.single__content li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.single__nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.single__nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--rose-accent);
}

.single__nav a:hover {
    color: var(--text-primary);
}

/* ==========================================
   PAGE
   ========================================== */
.page-template {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-template__container {
    max-width: 800px;
    margin: 0 auto;
}

.page-template__header {
    text-align: center;
    margin-bottom: 40px;
}

.page-template__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-template__content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.page-template__content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.contact__bubbles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact__bubble {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.12;
    animation: floatBubble 20s ease-in-out infinite;
}

.contact__bubble--1 {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -60px;
    animation-delay: 0s;
}

.contact__bubble--2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -50px;
    animation-delay: -5s;
}

.contact__bubble--3 {
    width: 150px;
    height: 150px;
    top: 35%;
    right: 30%;
    animation-delay: -10s;
}

.contact__bubble--4 {
    width: 120px;
    height: 120px;
    bottom: 40%;
    left: 25%;
    animation-delay: -3s;
}

.contact__bubble--5 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: -40px;
    animation-delay: -8s;
}

.contact__header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.contact__title {
    margin-top: 20px;
}

.contact__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 20px;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.contact__form-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-field {
    position: relative;
}

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

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 20px 24px;
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--rose-accent);
}

.form-field label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.form-field textarea ~ label {
    top: 24px;
    transform: none;
}

.form-field input:focus ~ label,
.form-field select:focus ~ label,
.form-field textarea:focus ~ label,
.form-field.filled label {
    top: 0;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rose-accent);
    background: var(--white);
    padding: 0 8px;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    cursor: pointer;
}

.form-field textarea {
    min-height: 140px;
    resize: none;
}

.contact__submit {
    margin-top: 10px;
    width: 100%;
    padding: 22px;
    font-size: 15px;
}

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

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s var(--ease);
}

.contact-card:hover {
    transform: translateX(8px);
}

.contact-card--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contact-card--whatsapp:hover {
    transform: translateX(8px) scale(1.02);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-accent);
    flex-shrink: 0;
}

.contact-card--whatsapp .contact-card__icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.contact-card__label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-card--whatsapp .contact-card__label {
    color: rgba(255,255,255,0.8);
}

.contact-card__value {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-card--whatsapp .contact-card__value {
    color: white;
}

.contact-card__sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Tooltip for phone */
.contact-card[title] {
    position: relative;
}

.contact-card[title]::after {
    content: attr(title);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--black);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    pointer-events: none;
    z-index: 100;
}

.contact-card[title]::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 6px solid transparent;
    border-top-color: var(--black);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    pointer-events: none;
    z-index: 100;
}

.contact-card[title]:hover::after,
.contact-card[title]:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.contact__social {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact__social-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.contact__social-links {
    display: flex;
    gap: 12px;
}

.contact__social-links a {
    width: 50px;
    height: 50px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-accent);
    transition: all 0.3s var(--ease);
}

.contact__social-links a:hover {
    background: var(--black);
    color: white;
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-page {
        padding: 140px 0 60px;
    }
    .contact__form-card {
        padding: 24px;
    }
}

/* ==========================================
   REVIEWS PAGE
   ========================================== */
.reviews {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.reviews__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.reviews__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.reviews__shape {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.12;
    animation: floatBubble 20s ease-in-out infinite;
}

.reviews__shape--1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.reviews__shape--2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    right: -80px;
    animation-delay: -6s;
}

.reviews__shape--3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: -12s;
}

.reviews__shape--4 {
    width: 200px;
    height: 200px;
    bottom: 40%;
    left: 15%;
    animation-delay: -4s;
}

.reviews__shape--5 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 40%;
    animation-delay: -9s;
}

.reviews__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.reviews__title {
    margin-top: 20px;
}

.reviews__title em {
    font-style: italic;
}

.reviews__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.reviews__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.reviews__stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.reviews__stat {
    text-align: center;
}

.reviews__stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--rose-accent);
    line-height: 1;
}

.reviews__stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Featured Review */
.reviews__featured {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.review-featured {
    background: var(--white);
    padding: 40px 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.review-featured__stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    color: #F59E0B;
    margin-bottom: 32px;
}

.review-featured__text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 40px;
}

.review-featured__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.review-featured__avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--rose-dark);
}

.review-featured__name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-featured__location {
    font-size: 14px;
    color: var(--text-muted);
}

/* Reviews Grid */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease);
}

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

.review-card__stars {
    display: flex;
    gap: 3px;
    color: #F59E0B;
    margin-bottom: 20px;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--rose-accent);
    flex-shrink: 0;
}

.review-card__name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.review-card__service {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Reviews CTA */
.reviews__cta {
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    z-index: 1;
}

.reviews__cta h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.reviews__cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

@media (max-width: 1000px) {
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews__stats {
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    .reviews__stats {
        flex-direction: column;
        gap: 24px;
    }
    .review-featured {
        padding: 40px 30px;
    }
    .review-featured__text {
        font-size: 20px;
    }
}

/* ==========================================
   BOOKINGS PAGE
   ========================================== */
.bookings {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.bookings__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.bookings__shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bookings__shape {
    position: absolute;
    border-radius: 50%;
    background: var(--blue);
    opacity: 0.12;
    animation: floatBubble 20s ease-in-out infinite;
}

.bookings__shape--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.bookings__shape--2 {
    width: 250px;
    height: 250px;
    bottom: 25%;
    left: -100px;
    animation-delay: -7s;
}

.bookings__shape--3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 25%;
    animation-delay: -3s;
}

.bookings__shape--4 {
    width: 120px;
    height: 120px;
    bottom: 50%;
    left: 20%;
    animation-delay: -11s;
}

.bookings__shape--5 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 35%;
    animation-delay: -5s;
}

.bookings__header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.bookings__title {
    margin-top: 20px;
}

.bookings__title em {
    font-style: italic;
}

.bookings__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.bookings__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.booking-card--featured {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
}

.booking-card--featured .booking-card__desc,
.booking-card--featured .booking-card__features li {
    color: rgba(255,255,255,0.7);
}

.booking-card--featured .booking-card__icon {
    background: rgba(255,255,255,0.1);
    color: var(--rose-accent);
}

.booking-card--featured .booking-card__btn {
    background: var(--white);
    color: var(--black);
}

.booking-card--featured .booking-card__btn:hover {
    background: var(--rose-accent);
    color: var(--white);
}

.booking-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    background: var(--rose);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--rose-dark);
}

.booking-card--featured .booking-card__badge {
    background: var(--rose-accent);
    color: var(--white);
}

.booking-card__icon {
    width: 72px;
    height: 72px;
    background: var(--cream);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-accent);
    margin-bottom: 24px;
}

.booking-card__title {
    font-size: 24px;
    margin-bottom: 16px;
}

.booking-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.booking-card__features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.booking-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.booking-card__features li svg {
    color: var(--rose-accent);
    flex-shrink: 0;
}

.booking-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s var(--ease);
    margin-top: auto;
}

.booking-card__btn:hover {
    background: var(--rose-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.booking-card__btn svg {
    transition: transform 0.3s var(--ease);
}

.booking-card__btn:hover svg {
    transform: translateX(4px);
}

/* WhatsApp CTA */
.bookings__cta {
    margin-top: 50px;
    padding: 35px 45px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.bookings__cta-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.bookings__cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

.bookings__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--white);
    color: #128C7E;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}

.bookings__cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: #128C7E;
}

/* Process Section */
.bookings__process {
    margin-top: 120px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bookings__process-title {
    margin-bottom: 40px;
}

.bookings__process-title em {
    font-style: italic;
}

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

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}

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

.process-step__number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--rose-accent);
    line-height: 1;
    margin-bottom: 20px;
}

.process-step__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.process-step__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

@media (max-width: 700px) {
    .bookings__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .bookings__cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--cream);
    color: var(--text-primary);
    padding: 100px 0 50px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__logo {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--rose-accent);
    margin-bottom: 10px;
}

.footer__logo-img {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
}

.footer__tagline {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
}

.footer__title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 16px;
}

.footer__links a {
    font-size: 15px;
    color: var(--text-secondary);
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

.footer__social a:hover {
    background: var(--rose-accent);
    color: white;
}

.footer__bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__bottom-links {
    display: flex;
    gap: 32px;
}

.footer__bottom-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__bottom-links a:hover {
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ==========================================
   COMPREHENSIVE MOBILE STYLES
   ========================================== */

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

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

.mobile-menu__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__close::before,
.mobile-menu__close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
}

.mobile-menu__close::before {
    transform: rotate(45deg);
}

.mobile-menu__close::after {
    transform: rotate(-45deg);
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s var(--ease);
}

.mobile-menu a:hover {
    color: var(--rose-accent);
}

/* Small screens */
@media (max-width: 480px) {
    /* Typography */
    .display-lg {
        font-size: 36px;
    }
    
    .display-md {
        font-size: 28px;
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
    
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Buttons */
    .btn {
        padding: 16px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__content {
        text-align: center;
    }
    
    .hero__tag {
        justify-content: center;
    }
    
    .hero__title {
        font-size: 36px;
    }
    
    .hero__subtitle {
        font-size: 16px;
    }
    
    .hero__shape {
        opacity: 0.08;
    }
    
    .hero__shape--1 {
        width: 200px;
        height: 200px;
    }
    
    .hero__shape--2 {
        width: 150px;
        height: 150px;
    }
    
    /* About */
    .about__grid {
        gap: 30px;
    }
    
    .about__text {
        font-size: 16px;
    }
    
    .about__image-badge {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Services */
    .service-card {
        padding: 24px;
    }
    
    .service-card__title {
        font-size: 18px;
    }
    
    /* Sections */
    .bookings,
    .reviews,
    .contact-page,
    .blog-page {
        padding: 80px 0 60px;
    }
    
    /* Reviews */
    .reviews__header {
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-card__text {
        font-size: 14px;
    }
    
    .reviews__badge {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    /* Featured Review */
    .blog-featured {
        padding: 24px;
        gap: 24px;
    }
    
    .blog-featured__title {
        font-size: 22px;
    }
    
    /* Contact */
    .contact__grid {
        gap: 30px;
    }
    
    .contact__form {
        padding: 24px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-card__icon {
        width: 48px;
        height: 48px;
    }
    
    /* Bookings */
    .bookings__card {
        padding: 30px 24px;
    }
    
    .bookings__features {
        gap: 16px;
    }
    
    .bookings__feature {
        padding: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer__logo {
        font-size: 48px;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    /* Header */
    .header__logo {
        font-size: 48px;
    }
    
    .header.scrolled .header__logo {
        font-size: 32px;
    }
    
    /* Tags */
    .tag {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    /* Stats */
    .reviews__stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .reviews__stat {
        font-size: 13px;
    }
}

/* Medium screens */
@media (max-width: 768px) {
    /* Hero grid */
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* About grid */
    .about__grid {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about__services {
        grid-template-columns: 1fr;
    }
    
    /* Contact grid */
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    /* Reviews grid */
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    
    /* Services grid */
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    /* Bookings features */
    .bookings__features {
        grid-template-columns: 1fr;
    }
    
    /* Blog grid */
    .blog-page__grid {
        grid-template-columns: 1fr;
    }
    
    /* Featured post */
    .blog-featured {
        grid-template-columns: 1fr;
    }
    
    /* Form inputs side by side to stacked */
    .contact__form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets */
    .btn {
        min-height: 48px;
    }
    
    .header__toggle {
        width: 48px;
        height: 48px;
    }
    
    .footer__social a {
        width: 48px;
        height: 48px;
    }
    
    /* Remove hover effects that don't work on touch */
    .service-card:hover,
    .review-card:hover,
    .blog-card:hover,
    .contact-card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .btn:active {
        transform: scale(0.98);
    }
    
    .service-card:active,
    .review-card:active,
    .blog-card:active {
        transform: scale(0.99);
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .mobile-menu a {
        font-size: 20px;
    }
    
    .mobile-menu li {
        margin: 12px 0;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }
    
    .mobile-menu {
        padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    }
}

/* ==========================================
   CRITICAL MOBILE OVERRIDES
   ========================================== */
@media (max-width: 600px) {
    /* Force single column on all grids */
    .intro__grid,
    .services__grid,
    .contact__grid,
    .reviews__grid,
    .bookings__grid,
    .footer__grid,
    .blog-grid,
    .process-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Reduce all section padding */
    .intro,
    .services,
    .contact-page,
    .reviews,
    .bookings {
        padding: 120px 0 50px !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Typography scaling */
    .display-xl {
        font-size: 32px !important;
    }
    
    .display-lg {
        font-size: 28px !important;
    }
    
    .display-md {
        font-size: 24px !important;
    }
    
    h1, .intro__title, .services__title, .contact__title, .reviews__title, .bookings__title {
        font-size: 26px !important;
    }
    
    h2 {
        font-size: 22px !important;
    }
    
    h3 {
        font-size: 18px !important;
    }
    
    /* Header */
    .header__logo {
        font-size: 42px !important;
    }
    
    .header.scrolled .header__logo {
        font-size: 32px !important;
    }
    
    /* Buttons full width */
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px !important;
    }
    
    /* Form card */
    .contact__form-card {
        padding: 20px !important;
    }
    
    /* Cards */
    .service-card,
    .review-card,
    .contact-card,
    .bookings__card {
        padding: 20px !important;
    }
    
    /* Images */
    .intro__image {
        max-width: 250px !important;
        margin: 0 auto !important;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 30px !important;
    }
    
    .footer__logo {
        font-size: 36px !important;
    }
    
    .footer__grid {
        gap: 30px !important;
    }
    
    .footer__bottom {
        flex-direction: column !important;
        gap: 16px !important;
        text-align: center !important;
    }
    
    /* Reviews */
    .review-featured {
        padding: 30px 20px !important;
    }
    
    .review-featured__text {
        font-size: 18px !important;
    }
    
    .reviews__stats {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    /* Bookings CTA */
    .bookings__cta {
        flex-direction: column !important;
        text-align: center !important;
        padding: 30px 20px !important;
    }
    
    /* Process steps */
    .process-step {
        padding: 20px !important;
    }
    
    /* Hide bubbles on very small screens for performance */
    .intro__bubble,
    .reviews__bubble,
    .bookings__shape,
    .contact__bubble {
        display: none !important;
    }
}

@media (max-width: 400px) {
    .header__logo {
        font-size: 36px !important;
    }
    
    .header.scrolled .header__logo {
        font-size: 28px !important;
    }
    
    .display-xl {
        font-size: 28px !important;
    }
    
    .display-lg {
        font-size: 24px !important;
    }
    
    .intro__image {
        max-width: 200px !important;
    }
}

/* ==========================================
   LEGAL PAGES (Terms & Privacy)
   ========================================== */
.legal-page {
    padding: 180px 0 100px;
    position: relative;
    min-height: 100vh;
}

.legal-page__bg {
    position: absolute;
    inset: 0;
    background: var(--cream);
}

.legal-page__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.legal-page__title {
    margin-top: 20px;
}

.legal-page__updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

.legal-page__content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.legal-section h3 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: var(--rose-accent);
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 140px 0 60px;
    }
    
    .legal-page__content {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

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

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner__text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.cookie-banner__icon {
    flex-shrink: 0;
    color: var(--rose-accent);
}

.cookie-banner__text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: none;
}

.cookie-banner__btn--accept {
    background: var(--black);
    color: white;
}

.cookie-banner__btn--accept:hover {
    background: var(--rose-accent);
}

.cookie-banner__btn--settings {
    background: var(--cream);
    color: var(--text-primary);
}

.cookie-banner__btn--settings:hover {
    background: var(--rose);
}

@media (max-width: 768px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__text {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner__btn {
        width: 100%;
    }
}

/* ==========================================
   COOKIE MODAL
   ========================================== */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

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

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-modal__content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease);
}

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

.cookie-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--cream);
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
}

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

.cookie-modal__title {
    font-size: 24px;
    margin-bottom: 12px;
}

.cookie-modal__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--cream);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option__info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.cookie-option__info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

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

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

.cookie-toggle__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #ccc;
    border-radius: 28px;
    transition: 0.3s;
}

.cookie-toggle__slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--rose-accent);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
    transform: translateX(22px);
}

.cookie-toggle--disabled .cookie-toggle__slider {
    background: var(--rose-accent);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal__actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.cookie-modal__actions .cookie-banner__btn {
    flex: 1;
}

@media (max-width: 500px) {
    .cookie-modal__content {
        padding: 30px 20px;
    }
    
    .cookie-modal__actions {
        flex-direction: column;
    }
}
