/* Root Variables */
:root {
    --primary-gold: #D4AF37;
    --primary-pink: #E91E63;
    --light-gray: #F8F9FA;
    --dark-gray: #2C3E50;
    --white: #FFFFFF;
    --black: #000000;
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), var(--primary-pink));
    --gradient-overlay: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2));
    --shadow-light: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 25px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-color: #e9ecef;
    --text-light: #666;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-decoration: none;
}

.navbar-brand .logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark-gray) !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--gradient-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-overlay), url('assets/images/hero_woman.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.social-icons {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.social-icons a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

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

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

.about-content .lead {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.awards {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.awards h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.award-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.award-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.contact-info {
    margin-top: 2rem;
}

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

.contact-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    width: 20px;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

/* Procedures Section */
.procedures {
    padding: 5rem 0;
}

.procedure-category {
    height: 100%;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-gold);
}

.category-title i {
    color: var(--primary-pink);
    font-size: 2rem;
}

.procedure-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
}

.procedure-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.procedure-item.featured {
    border: 2px solid var(--primary-gold);
}

.procedure-image {
    height: 250px;
    overflow: hidden;
}

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

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

.procedure-content {
    padding: 1.5rem;
}

.procedure-content h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.procedure-content p {
    color: #666;
    margin-bottom: 1rem;
}

.procedure-content ul {
    list-style: none;
    padding: 0;
}

.procedure-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.procedure-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Brands Section */
.brands {
    padding: 5rem 0;
}

.brand-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.brand-image {
    height: 200px;
    overflow: hidden;
}

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

.brand-content {
    padding: 1.5rem;
}

.brand-content h4 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.brand-origin {
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--light-gray);
    color: var(--dark-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-options {
    margin-bottom: 3rem;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-decoration: none;
    color: var(--dark-gray);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    height: 120px;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    color: var(--primary-gold);
    text-decoration: none;
}

.contact-option i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-pink);
}

.contact-option:hover i {
    color: var(--primary-gold);
}

.contact-info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.contact-info-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary-pink);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
}

.booking-form {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.booking-form h4 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand .logo .footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand .logo i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

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

.footer-social a:hover {
    transform: scale(1.1);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .social-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
        transform: none;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .award-list {
        gap: 0.3rem;
    }
    
    .category-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}



/* Brand Card Clickable Styles */
.brand-card.clickable {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.brand-card.clickable:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.brand-info-icon {
    color: var(--primary-gold);
    margin-left: 8px;
    font-size: 0.9em;
    opacity: 0.8;
}

.click-hint {
    margin-top: 15px;
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
}

.brand-card.clickable:hover .click-hint {
    opacity: 1;
    color: var(--primary-pink);
}

.click-hint i {
    margin-right: 5px;
    color: var(--primary-gold);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 2rem;
}

/* Brand Modal Content Styles */
.brand-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-modal-title {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 0.5rem;
}

.brand-modal-origin {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.therapy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
}

.therapy-title {
    color: var(--primary-pink);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.therapy-subtitle {
    color: var(--primary-gold);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.therapy-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.therapy-benefits, .therapy-recommendations {
    margin-bottom: 1rem;
}

.therapy-benefits h5, .therapy-recommendations h5 {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.therapy-benefits ul, .therapy-recommendations ul {
    list-style: none;
    padding-left: 0;
}

.therapy-benefits li, .therapy-recommendations li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.therapy-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.therapy-recommendations li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
        max-height: 60vh;
    }
    
    .brand-modal-title {
        font-size: 1.5rem;
    }
    
    .therapy-title {
        font-size: 1.2rem;
    }
}

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

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

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 1rem;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideInRight 0.3s ease-out;
}

.notification-success {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.notification-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.notification-info {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background-color: rgba(0,0,0,0.1);
}

/* Form Styles */
.booking-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-form h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

