/* Dermeds - Skin & Hair Care */
/* Multi-Color Professional Theme with Mixed Light & Dark Sections */

:root {
    --primary: #2dd4bf;
    --primary-dark: #0d9488;
    --secondary: #f472b6;
    --secondary-light: #fbcfe8;
    --accent: #fbbf24;
    --accent-warm: #f97316;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --skin: #ffddd2;
    --skin-dark: #e29578;
    --hair: #a8dadc;
    --hair-dark: #457b9d;
    --success: #22c55e;
    --gradient-1: linear-gradient(135deg, #2dd4bf 0%, #0d9488 100%);
    --gradient-2: linear-gradient(135deg, #f472b6 0%, #db2777 100%);
    --gradient-3: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0d9488 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;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.navbar.scrolled .logo-text {
    color: var(--primary-dark) !important;
}

.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;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    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(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION - DARK MIX ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 30%, #312e81 60%, #0d9488 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
/* ===== HERO SECTION - VIBRANT COLORFUL MIX ===== */
/* ===== HERO SECTION - VIBRANT COLORFUL MIX ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e1b4b 15%, 
        #312e81 30%, 
        #5b21b6 45%, 
        #7e22ce 55%, 
        #0d9488 70%, 
        #14b8a6 85%, 
        #f472b6 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Enhanced glowing orbs for depth */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.22) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e1b4b 15%, 
        #312e81 30%, 
        #5b21b6 45%, 
        #7e22ce 55%, 
        #0d9488 70%, 
        #14b8a6 85%, 
        #f472b6 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Enhanced subtle overlays for depth and professionalism */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.22) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 1;
}

/* Soft light overlay to maintain text readability */
.hero .hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .highlight-2 {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    max-width: 500px;
    line-height: 1.8;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--gradient-3);
    color: white;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-pink {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 10px 30px rgba(244, 114, 182, 0.3);
}

.btn-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 114, 182, 0.4);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-img-main {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.hero-float-card {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

.float-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.float-icon.skin {
    background: var(--skin);
    color: var(--skin-dark);
}

.float-icon.hair {
    background: var(--hair);
    color: var(--hair-dark);
}

.float-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.float-text {
    font-size: 12px;
    color: #64748b;
}

/* ===== STATS BAR - LIGHT MIX ===== */
.stats-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #fdf4ff 100%);
    padding: 40px 0;
    position: relative;
    z-index: 10;
    margin-top: -60px;
    border-radius: var(--radius);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 212, 191, 0.1);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #e2e8f0;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* ===== 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: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-label.teal {
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary-dark);
}

.section-label.orange {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-warm);
}

.section-title {
    font-size: 48px;
    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: 18px;
    color: #64748b;
    line-height: 1.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== SERVICES SECTION - LIGHT PINK/TEAL MIX ===== */
.services-section {
    background: linear-gradient(180deg, #fdf4ff 0%, #f0fdfa 50%, #ffffff 100%);
}

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

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon.teal {
    background: rgba(45, 212, 191, 0.1);
}

.service-icon.pink {
    background: rgba(244, 114, 182, 0.1);
}

.service-icon.orange {
    background: rgba(251, 191, 36, 0.1);
}

.service-icon.purple {
    background: rgba(168, 85, 247, 0.1);
}

.service-icon.blue {
    background: rgba(59, 130, 246, 0.1);
}

.service-icon.green {
    background: rgba(34, 197, 94, 0.1);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    color: var(--accent-warm);
}

/* ===== ABOUT SECTION - DARK MIX ===== */
.about-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #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(45, 212, 191, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.about-img-float {
    position: absolute;
    width: 200px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    border: 5px solid white;
}

.about-img-float.img-1 {
    bottom: -30px;
    right: -30px;
}

.about-img-float.img-2 {
    top: -20px;
    left: -20px;
    width: 150px;
}

.about-content .section-label {
    background: rgba(45, 212, 191, 0.1);
    color: var(--primary);
}

.about-content .section-title {
    color: white;
}

.about-content .section-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature-text {
    color: white;
    font-weight: 600;
    font-size: 15px;
}

/* ===== PRODUCTS SECTION - LIGHT WARM MIX ===== */
.products-section {
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 50%, #fefce8 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: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--gradient-1);
    color: white;
}

.badge-sale {
    background: var(--gradient-2);
    color: white;
}

.badge-hot {
    background: var(--gradient-3);
    color: white;
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: var(--accent);
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: #64748b;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
}

.product-price .old-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 8px;
}

.add-cart {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.3);
}

.add-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.4);
}

/* ===== WHY CHOOSE US - DARK MIX ===== */
.why-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(244, 114, 182, 0.08) 0%, transparent 50%);
}

.why-section .section-title {
    color: white;
}

.why-section .section-desc {
    color: rgba(255,255,255,0.7);
}

.why-section .section-label {
    background: rgba(45, 212, 191, 0.15);
    color: var(--primary);
}

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

.why-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 35px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.why-card:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(45, 212, 191, 0.2);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.why-content p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== SKIN GALLERY - LIGHT COOL MIX ===== */
.gallery-section {
    background: linear-gradient(180deg, #f0fdfa 0%, #fdf4ff 50%, #ffffff 100%);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(15, 23, 42, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ===== HAIR CARE SECTION - DARK WITH WARM GLOW ===== */
#hair-care {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #0f172a 100%) !important;
    position: relative;
    overflow: hidden;
}

#hair-care::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

#hair-care::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#hair-care .section-title {
    color: white;
}

#hair-care .section-desc {
    color: rgba(255,255,255,0.7);
}

#hair-care .section-label {
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent);
}

#hair-care .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 2;
}

#hair-care .gallery-item {
    height: 400px;
}

/* ===== TESTIMONIALS - DARK MIX ===== */
.testimonials-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-desc {
    color: rgba(255,255,255,0.6);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 35px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(45, 212, 191, 0.2);
    background: rgba(255,255,255,0.08);
}

.testimonial-quote {
    font-size: 50px;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-name {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-role {
    color: var(--primary);
    font-size: 13px;
}

.testimonial-stars {
    color: var(--accent);
    margin-top: 5px;
    font-size: 13px;
}

/* ===== TEAM SECTION - LIGHT WARM MIX ===== */
.team-section {
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 50%, #fdf4ff 100%);
}

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

.team-card {
    text-align: center;
    position: relative;
}

.team-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.team-card:hover .team-overlay {
    transform: translateY(0);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
}

/* ===== BLOG SECTION - LIGHT COOL MIX ===== */
.blog-section {
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 50%, #fdf4ff 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: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-dark);
}

.blog-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 12px;
    color: var(--accent-warm);
}

/* ===== APPOINTMENT/CONTACT - DARK MIX ===== */
.appointment-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
}

.appointment-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    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: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 212, 191, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-text h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-info-text p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.appointment-form {
    background: white;
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
}

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

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

.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: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.4);
}

/* ===== FOOTER - DARKEST MIX ===== */
.footer {
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    padding-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2dd4bf 0%, #f472b6 50%, #fbbf24 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo-text {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--dark-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* ===== 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); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .products-grid, .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .hero-container, .about-grid, .appointment-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-title { font-size: 48px; }
    .services-grid, .products-grid, .testimonials-grid, .team-grid, .gallery-grid, .blog-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after { display: none; }
    .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); }
}

@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, .why-grid, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stat-item::after { display: none; }
    .appointment-form { padding: 30px; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    #hair-care .gallery-grid { grid-template-columns: 1fr; }
    #hair-care .gallery-item { height: 300px; }
}

/* ===== 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 ease;
    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: all 0.4s ease;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

.mobile-nav-links { list-style: none; }

.mobile-nav-links li { margin-bottom: 5px; }

.mobile-nav-links a {
    display: block;
    padding: 15px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover { background: var(--light); color: var(--primary-dark); }

/* ===== SUCCESS/ERROR MESSAGES ===== */
.success-message {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
    color: #166534;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.error-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}


/* ===== HERO TITLE MIXED LIGHT/DARK GRADIENT ===== */
.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    background: linear-gradient(
        90deg,
        #2dd4bf 0%,
        #f472b6 25%,
        #fbbf24 50%,
        #a78bfa 75%,
        #2dd4bf 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* ===== LOGO RESPONSIVE FIT ===== */
.logo-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(45, 212, 191, 0.4);
    transition: all 0.3s ease;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.navbar.scrolled .logo-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-text {
    font-size: 24px;
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .logo-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }
    .logo-text {
        font-size: 22px;
    }
    .hero-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }
    .logo-text {
        font-size: 20px;
    }
    .hero-title {
        font-size: 32px;
        letter-spacing: -1px;
    }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #fdf4ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.google-reviews-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(234, 67, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.reviews-container {
    position: relative;
    z-index: 2;
    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.08);
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
}

.reviews-badge img {
    width: 30px;
    height: 30px;
}

.reviews-badge span {
    font-weight: 700;
    color: var(--dark);
    font-size: 16px;
}

.reviews-stars {
    font-size: 36px;
    color: #fbbf24;
    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: #64748b;
    font-weight: 500;
}

.reviews-count {
    color: #64748b;
    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: all 0.3s ease;
}

.reviews-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.reviews-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    opacity: 0;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.whatsapp-label {
    background: white;
    color: #128c7e;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-right: 15px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile WhatsApp adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .whatsapp-label {
        display: none;
    }
}

/* ===== PHONE CONTACT IN NAVBAR ===== */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(255,255,255,0.2);
    color: var(--accent);
}

.nav-phone .phone-icon {
    font-size: 18px;
}

.navbar.scrolled .nav-phone {
    color: var(--dark);
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
}

.navbar.scrolled .nav-phone:hover {
    background: rgba(15, 23, 42, 0.1);
    color: var(--primary-dark);
}

@media (max-width: 1200px) {
    .nav-phone span {
        display: none;
    }
    .nav-phone {
        padding: 8px 12px;
    }
}

@media (max-width: 992px) {
    .nav-phone {
        display: none;
    }
}

/* Mobile phone display in contact bar */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    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: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
}

.mobile-contact-bar .mobile-phone-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.mobile-contact-bar .mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.mobile-contact-bar .mobile-phone-btn:hover,
.mobile-contact-bar .mobile-whatsapp-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: flex;
    }
    body {
        padding-bottom: 70px;
    }
    .whatsapp-float {
        bottom: 90px;
    }
}
