/* Dermeds - Skin & Hair Care */
/* Professional Theme with Brand Image Background */

:root {
    --primary: #0ea5e9;
    --primary-dark: #0369a1;
    --primary-light: #7dd3fc;
    --secondary: #8b5cf6;
    --secondary-light: #c4b5fd;
    --accent: #f59e0b;
    --accent-warm: #d97706;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --skin: #ffddd2;
    --skin-dark: #e29578;
    --hair: #a8dadc;
    --hair-dark: #457b9d;
    --success: #22c55e;
    --gradient-1: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-4: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gray-100);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-200);
}
::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 4px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 27, 75, 0.92) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.navbar.scrolled .logo-text {
    color: var(--primary-dark) !important;
}

.navbar.scrolled .nav-phone {
    color: var(--dark);
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.1);
}

.navbar.scrolled .nav-phone:hover {
    background: rgba(15, 23, 42, 0.12);
    color: var(--primary-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.navbar.scrolled .logo-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-color: rgba(14, 165, 233, 0.2);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    white-space: nowrap;
    transition: var(--transition);
}

.logo-text span {
    color: var(--accent);
}

.navbar.scrolled .logo-text {
    font-size: 24px;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-cta {
    background: var(--gradient-3);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.nav-cta::after {
    display: none;
}

/* ===== PHONE CONTACT IN NAVBAR ===== */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.nav-phone:hover {
    background: rgba(255,255,255,0.15);
    color: var(--accent);
}

.nav-phone .phone-icon {
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px 10px;
}

.mobile-menu-btn:hover {
    color: var(--accent);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--dark);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 35%, #312e81 65%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Background Image as Navbar Theme - Professional Light Pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hcn1.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

/* Overlay gradient for readability */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.85) 0%, 
        rgba(30, 27, 75, 0.75) 40%, 
        rgba(49, 46, 129, 0.6) 70%,
        rgba(30, 27, 75, 0.8) 100%
    );
    z-index: 0;
}

/* Glow effects */
.hero-glow-1 {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow1 12s ease-in-out infinite;
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow2 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes heroGlow1 {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes heroGlow2 {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-badge span {
    font-size: 16px;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: white;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #0ea5e9 0%, #7dd3fc 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.4));
}

.hero-title .highlight-2 {
    background: linear-gradient(135deg, #8b5cf6 0%, #c4b5fd 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-main {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.float-icon.skin {
    background: rgba(14, 165, 233, 0.2);
}

.float-icon.hair {
    background: rgba(139, 92, 246, 0.2);
}

.float-title {
    font-weight: 700;
    color: white;
    font-size: 15px;
}

.float-text {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--radius);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
}

.stat-item {
    text-align: center;
    padding: 10px 0;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-label.teal {
    background: rgba(6, 182, 212, 0.08);
    color: #0891b2;
}

.section-label.orange {
    background: rgba(245, 158, 11, 0.08);
    color: var(--accent-warm);
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-title .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-icon.teal {
    background: rgba(14, 165, 233, 0.1);
}

.service-icon.pink {
    background: rgba(236, 72, 153, 0.1);
}

.service-icon.orange {
    background: rgba(245, 158, 11, 0.1);
}

.service-icon.purple {
    background: rgba(139, 92, 246, 0.1);
}

.service-icon.green {
    background: rgba(34, 197, 94, 0.1);
}

.service-icon.blue {
    background: rgba(99, 102, 241, 0.1);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section .section-title {
    color: white;
}

.about-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.about-section .section-label {
    background: rgba(14, 165, 233, 0.15);
    color: #7dd3fc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.05);
}

.about-img-float {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.about-img-float.img-1 {
    bottom: -30px;
    right: -30px;
}

.about-img-float.img-2 {
    top: -30px;
    left: -30px;
}

.about-content .btn-primary {
    margin-top: 10px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.about-feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-feature-text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--gray-100);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: var(--gradient-1);
    color: white;
}

.badge-bestseller {
    background: var(--gradient-3);
    color: white;
}

.badge-sale {
    background: var(--gradient-2);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    margin-bottom: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 12px;
    color: var(--gray-400);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.old-price {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-400);
    text-decoration: line-through;
    margin-left: 8px;
}

.add-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-1);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.why-section .section-title {
    color: white;
}

.why-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.why-section .section-label {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(8px);
    border-color: rgba(255,255,255,0.1);
}

.why-card .service-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 24px;
    margin-bottom: 0;
}

.why-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.why-content p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--gray-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 27, 75, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-desc {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

/* ===== HAIR CARE SECTION ===== */
#hair-care {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 70%, #1e1b4b 100%) !important;
}

#hair-care .section-title {
    color: white;
}

#hair-care .section-desc {
    color: rgba(255,255,255,0.7);
}

#hair-care .section-label {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
}

#hair-care .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}

#hair-care .gallery-item {
    height: 400px;
    aspect-ratio: auto;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.reviews-container {
    text-align: center;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
}

.reviews-badge span {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.reviews-stars {
    font-size: 36px;
    color: #f59e0b;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.reviews-rating {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.reviews-rating span {
    font-size: 24px;
    color: var(--gray-400);
    font-weight: 500;
}

.reviews-count {
    color: var(--gray-500);
    font-size: 16px;
    margin-bottom: 30px;
}

.reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    transition: var(--transition);
}

.reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.testimonials-section .section-label {
    background: rgba(6, 182, 212, 0.15);
    color: #67e8f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
}

.testimonial-quote {
    font-size: 40px;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.testimonial-name {
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.testimonial-role {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-top: 3px;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: var(--gray-100);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    padding: 20px 20px 5px;
}

.team-role {
    font-size: 13px;
    color: var(--gray-500);
    padding: 0 20px 20px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    background: var(--gray-100);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ===== APPOINTMENT SECTION ===== */
.appointment-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section .section-title {
    color: white;
}

.appointment-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.appointment-section .section-label {
    background: rgba(6, 182, 212, 0.15);
    color: #67e8f9;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.appointment-content .section-title {
    color: white;
}

.appointment-content .section-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #7dd3fc;
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-text a {
    color: #7dd3fc;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: #38bdf8;
}

.appointment-form {
    background: white;
    border-radius: var(--radius);
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition);
    background: var(--gray-100);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

/* ===== SUCCESS/ERROR MESSAGES ===== */
.success-message {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.error-message {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a0a;
    padding-top: 70px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9 0%, #8b5cf6 40%, #f59e0b 70%, #0ea5e9 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo-text {
    color: white;
    font-size: 28px;
}

.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
    max-width: 350px;
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item span:first-child {
    color: rgba(255,255,255,0.3);
    min-width: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.float-btn {
    display: flex !important;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.float-btn-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    transition: var(--transition);
    flex-shrink: 0;
    animation: floatPulse 2.5s infinite;
}

@keyframes floatPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.float-btn.whatsapp .float-btn-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn.whatsapp:hover .float-btn-icon {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.float-btn.phone .float-btn-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.float-btn.phone:hover .float-btn-icon {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.float-btn-label {
    background: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    pointer-events: none;
}

.float-btn.whatsapp .float-btn-label {
    color: #128c7e;
}

.float-btn.phone .float-btn-label {
    color: #1d4ed8;
}

.float-btn:hover .float-btn-label {
    opacity: 1;
    transform: translateX(0);
}

/* ===== MOBILE CONTACT BAR ===== */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #0f172a 0%, #1e1b4b 100%);
    padding: 12px 20px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.mobile-contact-bar .mobile-phone-btn,
.mobile-contact-bar .mobile-whatsapp-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    color: white;
    transition: var(--transition);
}

.mobile-contact-bar .mobile-phone-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.mobile-contact-bar .mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-contact-bar .mobile-phone-btn:hover,
.mobile-contact-bar .mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active { right: 0; }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark);
    padding: 10px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li { margin-bottom: 5px; }

.mobile-nav-links a {
    display: block;
    padding: 14px 18px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 44px; }
    .hero-img-main { max-width: 100%; }
    .hero-float-card.card-1 { right: 5%; }
    .hero-float-card.card-2 { left: 5%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .appointment-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    #hair-care .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .gallery-grid,
    .blog-grid,
    .footer-grid,
    .stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .appointment-form { padding: 30px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .hero-float-card { display: none; }
    #hair-care .gallery-grid { grid-template-columns: 1fr; }
    #hair-care .gallery-item { height: 300px; }
    .floating-contacts {
        bottom: 90px;
        right: 15px;
        gap: 10px;
    }
    .float-btn-icon {
        width: 50px;
        height: 50px;
    }
    .float-btn-icon svg {
        width: 24px;
        height: 24px;
    }
    .float-btn-label { display: none; }
    .mobile-contact-bar { display: flex; }
    body { padding-bottom: 80px; }
    .stat-item { padding: 10px 0; }
    .stat-number { font-size: 30px; }
    .about-img-float { width: 100px; height: 100px; }
    .about-img-float.img-1 { bottom: -15px; right: -15px; }
    .about-img-float.img-2 { top: -15px; left: -15px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .logo-icon { width: 38px; height: 38px; min-width: 38px; min-height: 38px; }
    .logo-text { font-size: 20px; }
    .navbar.scrolled .logo-text { font-size: 18px; }
    .navbar.scrolled .logo-icon { width: 34px; height: 34px; min-width: 34px; min-height: 34px; }
    .container { padding: 0 15px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 26px; }
}