/* ===== CSS Variables ===== */
:root {
    /* Χρώματα από το logo - ΜΟΝΟ αυτά: Λευκό, nude ροζ, σκούρο γκρι-μοβ */
    --primary-color: #2c2c2c;
    --secondary-color: #4b3b47;
    --accent-color: #2c2c2c;
    --bg-white: #ffffff;
    --bg-beige: #2c2c2c;
    --bg-light-beige: #2c2c2c;
    --text-dark: #4b3b47;
    --text-gray: #4b3b47;
    --text-light: #6b5b67;
    --border-color: #2c2c2c;
    --accent-gold: #d4af37;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 0;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(231, 198, 191, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

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

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}



.logo h1 {
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Desktop-only: Hide mobile menu elements */
.mobile-menu-close,
.mobile-menu-logo,
.mobile-menu-contact,
.mobile-menu-social {
    display: none;
}

/* Desktop: Show nav links as flex */
.mobile-menu-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: none;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 0;
    transition: var(--transition);
    border-bottom: 1px solid #2c2c2c;
    display: inline-block;
}

/* Hide arrows on desktop */
.nav-arrow {
    display: none;
}



.nav-link.active {
    background-color: rgba(231, 198, 191, 0.25);
    color: var(--secondary-color);
    font-weight: 500;
}

.btn-appointment {
    background: #2c2c2c;
    color: var(--bg-white);
    padding: 0.5rem 1.2rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 44, 44, 0.2);
}

.btn-appointment:hover {
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
}



.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 0;
    transition: all 0.3s ease;
}



.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    /* Fallback background όταν δεν υπάρχει βίντεο */
    background: linear-gradient(135deg, #f5ebe8 0%, #e7c6bf 50%, #d4b5ad 100%);
}

.hero-image,
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Legacy support for video (if needed) */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 43, 40, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

/* Κείμενο logo fallback */
.hero-logo-text {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(197, 162, 83, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.hero-title {
    font-size: 5rem;
    letter-spacing: 8px;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin-top: -0.5rem;
    margin-bottom: 0;
    font-family: var(--font-heading);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1rem;
    color: var(--bg-white);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}



.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 0;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 0;
        top: 5px;
    }

    50% {
        opacity: 1;
        top: 12px;
    }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

/* ===== Treatments Section ===== */
.treatments-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.treatments-section.alt-bg {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.treatments-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-item {
    background-color: var(--bg-white);
    padding: 0;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Treatment items without images (with SVG icons) */
.treatment-item-no-image {
    padding: 0;
}

.treatment-item-no-image .treatment-content {
    padding: 2.5rem;
}

.treatments-section.alt-bg .treatment-item {
    background-color: var(--bg-white);
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.treatment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: blur(0.5px) saturate(1.05) contrast(0.98);
}

.treatment-item:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.treatment-icon svg {
    width: 40px;
    height: 40px;
}

.treatment-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
    width: 100%;
}

.treatment-item p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: left;
    max-width: 600px;
    margin-bottom: 1rem;
}

.treatment-item p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto;
}

/* ===== About Section ===== */
.about {
    background-color: var(--bg-white);
    padding: 6rem 0;
}

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

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

.about-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-title em {
    font-style: italic;
    font-weight: 300;
}

.about-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.about-images {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
}

.about-image-large {
    position: absolute;
    left: 0;
    width: 45%;
    height: 85%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 15px solid white;
}

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

.about-image-small {
    position: absolute;
    width: 40%;
    height: 38%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 15px solid white;
}

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

.about-image-top {
    right: 0;
    top: 0;
}

.about-image-bottom {
    right: 10%;
    bottom: 0;
}

/* ===== Services Section ===== */
.services-section {
    padding: 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.service-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    max-width: 400px;
    color: #ffffff;
}

.service-description {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        height: 500px;
    }

    .service-overlay {
        padding: 40px 30px;
    }

    .service-title {
        font-size: 2rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    background-color: #2c2c2c;
    padding: 0;
    margin-top: 80px;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 80px;
    gap: 60px;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 300;
    color: white;
    margin: 0;
    letter-spacing: 4px;
}

.cta-divider {
    width: 120px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.cta-button {
    background-color: white;
    color: #2c2c2c;
    padding: 12px 35px;
    border-radius: 0;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        margin-top: 50px;
    }

    .cta-content {
        flex-direction: column;
        padding: 25px 30px;
        text-align: center;
        gap: 30px;
    }

    .cta-title {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .cta-divider {
        width: 80px;
    }

    .cta-button {
        padding: 10px 28px;
        font-size: 0.75rem;
    }
}

/* ===== Blog Sections ===== */
.blog-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.section-title-services {
    text-align: left;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: #2c2c2c;
    padding-bottom: 1rem;
    border-bottom: 2px solid #2c2c2c;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.blog-section-alt {
    background-color: var(--bg-light-beige);
}

.blog-section-alt .blog-content h3 {
    color: #ffffff;
}

.blog-section-alt .blog-content p {
    color: #cccccc;
}

.blog-section-alt .blog-toggle {
    color: #ffffff;
}

.blog-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.blog-item-reverse {
    direction: rtl;
}

.blog-item-reverse>* {
    direction: ltr;
}

.blog-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: var(--transition);
}



.blog-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.blog-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Blog expandable functionality */
.blog-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.blog-toggle svg {
    display: block;
}

.blog-expandable {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Desktop and tablet - show all paragraphs */
@media (min-width: 769px) {
    .blog-expandable {
        max-height: none !important;
    }
}

/* Mobile - expandable functionality */
@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }

    .section-title-services {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
        padding-bottom: 0.8rem;
    }

    .blog-item,
    .blog-item-reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .blog-image img {
        height: 280px;
    }

    .blog-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .blog-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 0.8rem;
    }

    /* Show toggle button on mobile */
    .blog-toggle {
        display: block;
    }

    /* Hide expandable content by default on mobile */
    .blog-expandable {
        max-height: 0;
        overflow: hidden;
    }

    /* Show expandable content when expanded */
    .blog-content.expanded .blog-expandable {
        max-height: 500px;
    }
}

/* ===== Services Section ===== */
.services {
    background-color: var(--bg-light-beige);
}

.services h2,
.services h3,
.services h4 {
    color: #ffffff;
}

.services p {
    color: #cccccc;
}

.service-category {
    margin-bottom: 5rem;
}

.category-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

/* ===== Products Section ===== */
.products {
    background-color: var(--bg-white);
}

.products-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.products-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.section-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-item {
    background-color: var(--bg-white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-flip-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.product-image-front,
.product-image-back {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 1.2s ease-in-out;
}

.product-image-front {
    opacity: 1;
    z-index: 2;
}

.product-image-back {
    opacity: 0;
    z-index: 1;
}

.product-image-front img,
.product-image-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
}

/* Auto-flip animation keyframes - Smooth and slow */
@keyframes autoFlip {

    0%,
    40% {
        opacity: 1;
    }

    45%,
    55% {
        opacity: 0;
    }

    60%,
    100% {
        opacity: 1;
    }
}

@keyframes autoFlipBack {

    0%,
    40% {
        opacity: 0;
    }

    45%,
    55% {
        opacity: 1;
    }

    60%,
    100% {
        opacity: 0;
    }
}

/* Different animation durations for each product */
.product-item:nth-child(1) .product-image-front {
    animation: autoFlip 9s ease-in-out infinite;
}

.product-item:nth-child(1) .product-image-back {
    animation: autoFlipBack 9s ease-in-out infinite;
}

.product-item:nth-child(2) .product-image-front {
    animation: autoFlip 11s ease-in-out infinite;
}

.product-item:nth-child(2) .product-image-back {
    animation: autoFlipBack 11s ease-in-out infinite;
}

.product-item:nth-child(3) .product-image-front {
    animation: autoFlip 10s ease-in-out infinite;
}

.product-item:nth-child(3) .product-image-back {
    animation: autoFlipBack 10s ease-in-out infinite;
}

.product-item:nth-child(4) .product-image-front {
    animation: autoFlip 12s ease-in-out infinite;
}

.product-item:nth-child(4) .product-image-back {
    animation: autoFlipBack 12s ease-in-out infinite;
}

.product-item:nth-child(5) .product-image-front {
    animation: autoFlip 9.5s ease-in-out infinite;
}

.product-item:nth-child(5) .product-image-back {
    animation: autoFlipBack 9.5s ease-in-out infinite;
}

.product-item:nth-child(6) .product-image-front {
    animation: autoFlip 11.5s ease-in-out infinite;
}

.product-item:nth-child(6) .product-image-back {
    animation: autoFlipBack 11.5s ease-in-out infinite;
}

.product-item:nth-child(7) .product-image-front {
    animation: autoFlip 10.5s ease-in-out infinite;
}

.product-item:nth-child(7) .product-image-back {
    animation: autoFlipBack 10.5s ease-in-out infinite;
}

.product-item:nth-child(8) .product-image-front {
    animation: autoFlip 12.5s ease-in-out infinite;
}

.product-item:nth-child(8) .product-image-back {
    animation: autoFlipBack 12.5s ease-in-out infinite;
}

.product-info {
    padding: 2rem;
    text-align: left;
}

.product-info h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.product-info p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}



.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Gallery Section ===== */
.gallery {
    background-color: var(--bg-beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}



.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}



.gallery-overlay span {
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===== Contact Section ===== */
.contact {
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background-color: var(--bg-light-beige);
    padding: 3rem;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    color: #ffffff;
}

.contact-form-wrapper label {
    color: #cccccc;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem 1.2rem;
    border: 1px solid #d0d0d0;
    border-radius: 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #2c2c2c;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
    background-color: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 300;
}

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

.appointment-form .btn-primary {
    background: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
}

.appointment-form .btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

/* ===== Newsletter ===== */
.newsletter {
    text-align: center;
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 0;
    margin-bottom: 4rem;
}

.newsletter h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.newsletter p {
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-white);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-form input:focus {
    outline: none;
    background-color: var(--bg-white);
}

.btn-newsletter {
    padding: 1rem 2.5rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}



/* ===== Map ===== */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 50px;
    font-family: var(--font-primary);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-card.active {
    opacity: 1;
}

.testimonial-stars {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b3b47;
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-secondary);
}

.testimonial-author {
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 600;
    font-family: var(--font-secondary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 0;
    background-color: #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #2c2c2c;
}

.dot:hover {
    background-color: #666666;
}

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

    .testimonials-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-stars {
        font-size: 1.2rem;
    }
}

/* ===== Consultation Section ===== */
.consultation-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.consultation-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.consultation-image {
    flex: 1;
    position: relative;
}

.consultation-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

.consultation-text {
    flex: 1;
    text-align: center;
    padding: 40px;
}

.consultation-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 20px;
}

.consultation-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 300;
    color: #4b3b47;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultation-description {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.consultation-button {
    display: inline-block;
    background-color: #2c2c2c;
    color: white;
    padding: 15px 45px;
    border-radius: 0;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.consultation-button:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-section {
        padding: 50px 0;
    }

    .consultation-content {
        flex-direction: column;
        gap: 30px;
    }

    .consultation-image img {
        height: 400px;
    }

    .consultation-text {
        padding: 20px;
    }

    .consultation-title {
        font-size: 2rem;
    }

    .consultation-button {
        padding: 12px 35px;
        font-size: 0.75rem;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: #ffffff;
    color: #2c2c2c;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #2c2c2c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-section h4 {
    color: #2c2c2c;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2c2c2c;
    display: inline-block;
    width: auto;
}

.footer-section p {
    color: #4b3b47;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #4b3b47;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #4b3b47;
    transition: var(--transition);
}



.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    color: #4b3b47;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    transition: var(--transition);
}



.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 44, 44, 0.2);
}

.footer-bottom p {
    color: #4b3b47;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #4b3b47;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-credit {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(44, 44, 44, 0.15);
}

.footer-credit p {
    color: #4b3b47;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.footer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .about-content {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    /* Navigation */
    .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 1);
    }

    .navbar.menu-open {
        background: rgba(255, 255, 255, 1);
        transform: translateY(0);
    }

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

    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 6rem 1.5rem 2rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        z-index: 9999;
        overflow-y: auto;
    }

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

    /* Mobile: Show mobile menu elements */
    .mobile-menu-close {
        display: none;
    }

    /* Hide hamburger when menu is open, show X instead */
    .navbar.menu-open .mobile-menu-toggle {
        position: fixed;
        top: 1.2rem;
        right: 1.5rem;
        z-index: 10000;
    }



    .mobile-menu-logo {
        display: block;
        margin-top: 1rem;
        margin-bottom: 2rem;
        text-align: center;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.2s ease;
    }

    .nav-menu.active .mobile-menu-logo {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.05s;
    }

    .mobile-menu-logo img {
        max-width: 150px;
        height: auto;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    }

    .mobile-menu-links {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 1rem;
    }

    .mobile-menu-links li {
        width: 100%;
        margin: 0.3rem 0;
        transform: translateY(30px);
        opacity: 0;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    /* Mobile Dropdown Menu */
    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown>.nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-dropdown>.nav-link::after {
        content: '▼';
        font-size: 0.7rem;
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active>.nav-link::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        display: none;
        position: static;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        min-width: auto;
        width: 100%;
        padding: 0;
        margin-top: 0.3rem;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
        max-height: 200px;
    }

    .dropdown-menu li {
        margin: 0;
        transform: none;
        opacity: 1;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.6rem 1.2rem 0.6rem 2.5rem;
        color: #000000;
        font-size: 0.85rem;
        font-weight: 300;
        text-decoration: none;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .nav-menu.active .mobile-menu-links li {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-menu.active .mobile-menu-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .mobile-menu-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .mobile-menu-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .mobile-menu-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active .mobile-menu-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 0.95rem;
        font-weight: 400;
        text-align: left;
        padding: 0.6rem 1.2rem;
        background: transparent;
        border: none;
        border-bottom: none;
        border-radius: 0;
        color: #000000;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-link.active {
        background: transparent;
        color: #000000;
        border: none;
        transform: none;
        box-shadow: none;
    }

    /* Show arrows on mobile */
    .nav-arrow {
        display: block;
        flex-shrink: 0;
        margin-left: auto;
        stroke: #000000;
    }

    .btn-appointment {
        display: block;
        width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        background: #2c2c2c;
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(44, 44, 44, 0.3);
    }

    .btn-appointment:hover {
        background: #1a1a1a;
    }



    .mobile-menu-contact {
        display: flex;
        width: 100%;
        max-width: 400px;
        flex-direction: column;
        gap: 0.6rem;
        margin-bottom: 1rem;
        padding: 1rem;
        background: #f8f8f8;
        border-radius: 0;
        border: 2px solid rgba(231, 198, 191, 0.4);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.2s ease;
    }

    .nav-menu.active .mobile-menu-contact {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.35s;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        color: var(--secondary-color);
        font-size: 0.85rem;
    }

    .mobile-contact-item svg {
        flex-shrink: 0;
        color: var(--primary-color);
    }

    .mobile-contact-item span {
        font-weight: 400;
    }

    .mobile-menu-social {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
        align-items: center;
        margin-top: auto;
        padding-top: 0.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.2s ease;
    }

    .nav-menu.active .mobile-menu-social {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
    }

    .mobile-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f8f8f8;
        border: 2px solid rgba(231, 198, 191, 0.4);
        color: var(--secondary-color);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .mobile-social-link svg {
        width: 18px;
        height: 18px;
    }



    /* Hero */
    .hero {
        height: 100vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    /* About */
    .about {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-images {
        height: 400px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 300px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: 2rem 1.5rem;
    }

    .newsletter h3 {
        font-size: 1.5rem;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* ===== Privacy Policy Page ===== */
.privacy-policy {
    padding: 120px 0 80px;
    background-color: var(--bg-white);
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-header h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.privacy-date {
    color: var(--text-gray);
    font-size: 1rem;
    font-style: italic;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-beige);
}

.privacy-section p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul li {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: underline;
}



.privacy-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-beige);
}

/* ===== Contact Page ===== */
.contact-hero {
    position: relative;
    padding: 150px 0 80px;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
}

.hero-breadcrumb {
    margin-top: 1rem;
    font-size: 1.2rem;
}

.hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.hero-breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    color: #ffffff;
    margin: 0 0.8rem;
    font-weight: 300;
}



.contact-page {
    padding: 80px 0;
    background-color: #f8f8f8;
}

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

.contact-info-section {
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-section h2 {
    color: #2c2c2c;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.contact-info-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-info-item h3 {
    color: #2c2c2c;
    font-weight: 500;
}

.contact-info-item p {
    color: #666666;
}



.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-beige);
    border-radius: 50%;
}

.contact-details h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2 {
    color: #2c2c2c;
    font-weight: 400;
    margin-bottom: 2rem;
}

.contact-form-section label {
    color: #2c2c2c;
    font-weight: 500;
}

.contact-form-section input,
.contact-form-section textarea {
    background-color: #f8f8f8;
    color: #2c2c2c;
    border: 1px solid #e0e0e0;
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    background-color: #ffffff;
    border-color: #2c2c2c;
}

.map-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-section h2 {
    color: #2c2c2c;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.map-note {
    color: #666666;
    font-size: 0.9rem;
    font-style: italic;
}

.newsletter-section {
    margin-top: 4rem;
    text-align: center;
    padding: 4rem 3rem;
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.newsletter-section h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.newsletter-section p {
    color: #666666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-family: var(--font-secondary);
    background-color: #f8f8f8;
    color: #2c2c2c;
    font-size: 1rem;
}

.newsletter-form input:focus {
    background-color: #ffffff;
    border-color: #2c2c2c;
    outline: none;
}

.newsletter-form button {
    padding: 1.2rem 2.5rem;
    white-space: nowrap;
    border-radius: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        min-height: 400px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .hero-breadcrumb {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section,
    .contact-form-section,
    .map-section,
    .newsletter-section {
        padding: 2rem;
    }

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

    .newsletter-form button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.2rem 1rem;
        font-size: 0.95rem;
    }

    .appointment-form .btn-primary {
        padding: 1.3rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===== Products Page ===== */
.products-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--bg-white);
}

.products-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
}

.products-hero p {
    font-size: 1.3rem;
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.products-hero .hero-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1rem auto 0;
    opacity: 0.9;
}

.products-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background-color: var(--bg-light-beige);
    padding: 3rem;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card h2,
.product-card h3 {
    color: #ffffff;
}

.product-card p,
.product-card ul li {
    color: #cccccc;
}



.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.product-content {
    margin-bottom: 2rem;
}

.product-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-content ul li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.brands-list {
    color: var(--primary-color);
    font-weight: 500;
    font-style: italic;
}

.product-card .btn-primary {
    width: 100%;
    text-align: center;
}

.products-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-light-beige) 100%);
    border-radius: 0;
}

.products-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    transition: all 0.3s ease;
}



@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-hero h1 {
        font-size: 2.5rem;
    }

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

    .products-title {
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
    }

    .product-flip-container {
        height: 350px;
    }

    /* Auto-flip animation for mobile */
    .product-image-front {
        animation: mobileFlip 4s ease-in-out infinite;
    }

    .product-image-back {
        animation: mobileFlipBack 4s ease-in-out infinite;
    }
}

@keyframes mobileFlip {

    0%,
    45% {
        opacity: 1;
    }

    50%,
    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mobileFlipBack {

    0%,
    45% {
        opacity: 0;
    }

    50%,
    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ===== Gallery Page ===== */
.gallery-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--bg-white);
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
}

.gallery-hero p {
    font-size: 1.3rem;
    color: var(--bg-white);
    opacity: 0.95;
}

.gallery-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.gallery-intro p {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.8;
}

.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.gallery-item-page {
    background-color: var(--bg-light-beige);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item-page h3 {
    color: #ffffff;
}

.gallery-item-page p {
    color: #cccccc;
}



.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 59, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}



.gallery-icon {
    font-size: 3rem;
    color: var(--bg-white);
}

.gallery-item-page h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-item-page p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
}

.gallery-note {
    background-color: var(--bg-beige);
    padding: 2rem;
    border-radius: 0;
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-note p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.8;
}

.gallery-note code {
    background-color: var(--bg-white);
    padding: 0.2rem 0.5rem;
    border-radius: 0;
    font-family: monospace;
    color: var(--secondary-color);
}

.gallery-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-beige) 0%, var(--bg-light-beige) 100%);
    border-radius: 0;
}

.gallery-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .gallery-grid-page {
        grid-template-columns: 1fr;
    }

    .gallery-hero h1 {
        font-size: 2.5rem;
    }
}

/* ===== About Page - Team Section Responsive ===== */
@media (max-width: 768px) {

    /* Lead doctor section - stack vertically on mobile like other cards */
    .lead-doctor-section {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-bottom: 30px !important;
    }

    /* Lead doctor image height on mobile - same as other cards */
    .lead-doctor-section div[style*="height: 500px"] {
        height: 300px !important;
    }

    /* Lead doctor text padding on mobile - same as other cards */
    .lead-doctor-section div[style*="padding: 50px"] {
        padding: 20px !important;
    }

    /* Lead doctor heading size on mobile - same as other cards */
    .lead-doctor-section h3 {
        font-size: 1.5rem !important;
    }

    /* Lead doctor text size on mobile - same as other cards */
    .lead-doctor-section p {
        font-size: 1rem !important;
    }

    /* Lead doctor subtitle size on mobile */
    .lead-doctor-section p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Adjust team grid for mobile */
    section[style*="padding: 80px 0"] div[style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Reduce doctor image height on mobile */
    section[style*="padding: 80px 0"] div[style*="height: 400px"] {
        height: 300px !important;
    }

    /* Adjust Dr. Vasilikos image positioning for mobile to show face */
    .doctor-vasilikos-image {
        object-position: center top !important;
    }

    /* Adjust padding for mobile */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }

    /* Adjust heading size */
    section[style*="padding: 80px 0"] h2 {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }

    /* Adjust card padding */
    section[style*="padding: 80px 0"] div[style*="padding: 30px"] {
        padding: 20px !important;
    }

    /* Adjust doctor name size */
    section[style*="padding: 80px 0"] h3 {
        font-size: 1.5rem !important;
    }
}

/* ===== Botox Promotion Popup ===== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.promo-popup {
    background: white;
    border-radius: 0;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.promo-popup-overlay.active .promo-popup {
    transform: scale(1);
}

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promo-popup-close:hover {
    background: #f5f5f5;
    transform: rotate(90deg);
}

.promo-popup-close svg {
    color: #2c2c2c;
}

.promo-popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.promo-popup-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.promo-popup-text {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8b7355 0%, #6b5645 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    width: fit-content;
    font-family: 'Montserrat', sans-serif;
}

.promo-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.2;
}



.promo-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.promo-form input {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.promo-form input:focus {
    outline: none;
    border-color: #8b7355;
}

.promo-submit-btn {
    background: linear-gradient(135deg, #8b7355 0%, #6b5645 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.promo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.promo-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.promo-terms {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .promo-popup-content {
        grid-template-columns: 1fr;
    }

    .promo-popup-image {
        border-radius: 0;
    }

    .promo-popup-image img {
        min-height: 280px;
        max-height: 280px;
    }

    .promo-popup-text {
        padding: 25px 20px;
    }

    .promo-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .promo-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .promo-form input {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .promo-submit-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .promo-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

/* ===== Utility Classes ===== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* ===== Smooth Scrolling ===== */
html {
    scroll-padding-top: 80px;
}

/* ===== Selection ===== */
::selection {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

/* ===== Cookie Consent Bar ===== */
.cookie-consent-bar {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 25px 0;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.cookie-consent-bar.active {
    bottom: 0;
}

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

.cookie-content {
    flex: 1;
}

.cookie-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
}

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

.cookie-btn-accept:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(44, 44, 44, 0.2);
}

.cookie-btn-decline:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Cookie Bar */
@media (max-width: 991px) {
    .cookie-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 0 25px;
    }

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

    .cookie-btn {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-bar {
        padding: 20px 0;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        max-width: none;
    }
}