/* ============================================
   SİMİLA GÜZELLİK SALONU - Açık/Pastel Tema
   Soft Lila & Warm Gold Design
   ============================================ */

:root {
    --sg-primary: #faf9f7;
    --sg-secondary: #f0ebe4;
    --sg-card: #ffffff;
    --sg-glass: rgba(255,255,255,0.8);

    --rose-primary: #c9a0dc;
    --rose-light: #e8d5f5;
    --rose-dark: #a87bc0;
    --rose-glow: rgba(201,160,220,0.3);

    --gold-accent: #c9a96e;
    --gold-light: #e8d5a3;

    --text-primary: #2d2d2d;
    --text-secondary: #6b6b6b;
    --text-muted: #9e9e9e;

    --gradient-rose: linear-gradient(135deg, #c9a0dc 0%, #e8a4c8 100%);
    --gradient-gold: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 100%);
    --gradient-light: linear-gradient(180deg, #faf9f7 0%, #f0ebe4 100%);

    --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 40px var(--rose-glow);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--sg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

/* Utility Classes */
.hidden { display: none !important; }

/* ============================================
   PRELOADER
   ============================================ */
.sg-preloader {
    position: fixed; inset: 0;
    background: var(--sg-primary);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    animation: preloader-hide 0.3s ease 2s forwards;
}
@keyframes preloader-hide { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.sg-preloader-content { text-align: center; }
.sg-preloader-logo {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    background: var(--gradient-rose);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 2rem;
}
.sg-preloader-waves { display: flex; gap: 6px; justify-content: center; }
.sg-preloader-waves span {
    width: 4px; height: 30px;
    background: var(--gradient-rose);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}
.sg-preloader-waves span:nth-child(2) { animation-delay: 0.1s; }
.sg-preloader-waves span:nth-child(3) { animation-delay: 0.2s; }
.sg-preloader-waves span:nth-child(4) { animation-delay: 0.3s; }
.sg-preloader-waves span:nth-child(5) { animation-delay: 0.4s; }
@keyframes wave { 0%, 100% { transform: scaleY(0.5); opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.sg-section-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 0.875rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--rose-primary); margin-bottom: 1rem;
}
.sg-section-label::before { content: ''; width: 40px; height: 2px; background: var(--gradient-rose); border-radius: 2px; }
.sg-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.sg-gradient-text {
    background: var(--gradient-rose);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sg-text-center { text-align: center; }
.sg-section-label-center::before { display: none; }
.sg-section-label-center::after { content: ''; width: 40px; height: 2px; background: var(--gradient-rose); border-radius: 2px; margin-left: 12px; }

/* ============================================
   LAYOUT
   ============================================ */
.sg-container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.sg-section { padding: 100px 0; }

/* ============================================
   HEADER
   ============================================ */
.sg-header {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 48px); max-width: 1320px;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-xl);
    padding: 16px 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.sg-header.scrolled {
    top: 10px;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow-md);
}
.sg-header-inner { display: flex; align-items: center; justify-content: space-between; }
.sg-logo { display: flex; flex-direction: column; line-height: 1.1; }
.sg-logo-main {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 700;
    background: var(--gradient-rose);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sg-logo-sub { font-size: 0.65rem; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); }

/* Desktop Nav */
.sg-nav { display: flex; align-items: center; gap: 4px; }
.sg-nav-link {
    padding: 10px 16px; font-size: 0.9rem; font-weight: 500;
    color: var(--text-secondary); border-radius: var(--radius-md); transition: var(--transition);
}
.sg-nav-link:hover, .sg-nav-link.active { color: var(--rose-primary); background: var(--rose-light); }
.sg-nav-link-cta-new {
    background: var(--gradient-rose); color: #fff !important;
    font-weight: 600; padding: 10px 18px;
    display: flex; align-items: center; gap: 6px;
}
.sg-nav-link-cta-new:hover { box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.sg-nav-link-cta-new .cta-icon { font-size: 1rem; }

/* Dropdown */
.sg-nav-dropdown { position: relative; }
.sg-nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.sg-nav-dropdown-menu {
    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
    background: #fff; border: 1px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-md);
    display: none; min-width: 700px;
    grid-template-columns: repeat(4, 1fr); gap: 24px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.sg-nav-dropdown:hover .sg-nav-dropdown-menu { 
    display: grid;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sg-dropdown-column h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--rose-primary); margin-bottom: 12px; }
.sg-dropdown-column a { display: block; font-size: 0.875rem; color: var(--text-secondary); padding: 5px 0; transition: var(--transition); }
.sg-dropdown-column a:hover { color: var(--rose-primary); padding-left: 6px; }

/* Analiz Button & Panel */
.sg-nav-analiz-btn-wrapper { position: relative; }
.sg-nav-analiz-btn {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #c9a0dc 0%, #e8a4c8 100%);
    color: #fff !important;
    font-weight: 600; padding: 10px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.sg-nav-analiz-btn:hover { 
    box-shadow: var(--shadow-glow); 
    transform: translateY(-2px);
}
.sg-analiz-icon { font-size: 1rem; }
.sg-analiz-text { font-size: 0.9rem; }

.sg-nav-analiz-panel {
    position: absolute; top: calc(100% + 12px); right: 0;
    background: #fff; border: 2px solid var(--rose-primary);
    border-radius: var(--radius-md); padding: 12px;
    box-shadow: var(--shadow-md);
    display: none; min-width: 240px; z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}
.sg-nav-analiz-btn-wrapper:hover .sg-nav-analiz-panel { 
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sg-analiz-option { 
    display: flex; align-items: center; gap: 12px; 
    padding: 12px 14px; border-radius: var(--radius-sm); 
    font-size: 0.9rem; color: var(--text-secondary); 
    transition: var(--transition);
    background: transparent;
}
.sg-analiz-option:hover { 
    background: var(--rose-light); 
    color: var(--rose-primary);
    padding-left: 18px;
}
.sg-analiz-option svg { width: 18px; height: 18px; }


/* Header Actions */
.sg-header-actions { display: flex; align-items: center; gap: 16px; }
.sg-header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--text-primary);
    padding: 8px 16px; border: 1px solid rgba(201,160,220,0.3);
    border-radius: var(--radius-md); transition: var(--transition);
}
.sg-header-phone:hover { border-color: var(--rose-primary); color: var(--rose-primary); }

/* Menu Toggle */
.sg-menu-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.sg-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.sg-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sg-menu-toggle.active span:nth-child(2) { opacity: 0; }
.sg-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.sg-mobilenav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 9998; opacity: 0; visibility: hidden; transition: var(--transition) !important;
}
.sg-mobilenav-overlay.active { opacity: 1; visibility: visible; }
.sg-mobilenav-drawer {
    position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
    background: #fff; z-index: 9999; overflow: hidden;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: var(--shadow-md);
    -webkit-overflow-scrolling: touch;
}
.sg-mobilenav-drawer.active { right: 0 !important; }
.sg-mobilenav-closebtn {
    position: absolute; top: 20px; right: 20px;
    background: var(--sg-secondary); border: none; border-radius: 50%;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--text-primary); transition: var(--transition);
}
.sg-mobilenav-closebtn:hover { background: var(--rose-light); color: var(--rose-primary); }
.sg-mobilenav-content { padding: 70px 24px 120px; overflow-y: auto; height: 100vh; -webkit-overflow-scrolling: touch; }
.sg-mobilenav-brand { margin-bottom: 32px; }
.sg-mobilenav-brand-name { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; background: var(--gradient-rose); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sg-mobilenav-brand-tagline { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }
.sg-mobilenav-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.sg-mobilenav-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border-radius: var(--radius-md);
    color: var(--text-secondary); font-size: 0.95rem; font-weight: 500;
    background: none; border: none; cursor: pointer; width: 100%; text-align: left;
    transition: var(--transition);
}
.sg-mobilenav-item:hover { background: var(--rose-light); color: var(--rose-primary); }
.sg-mobilenav-item-icon { width: 20px; height: 20px; flex-shrink: 0; }
.sg-mobilenav-item-arrow { margin-left: auto; }
.sg-mobilenav-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sg-mobilenav-cta-primary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; background: var(--gradient-rose); color: #fff;
    border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem;
}
.sg-mobilenav-cta-secondary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px; border: 1px solid rgba(201,160,220,0.3);
    border-radius: var(--radius-md); color: var(--text-primary); font-size: 0.9rem;
}
.sg-mobilenav-footer { padding-top: 24px; border-top: 1px solid var(--sg-secondary); }
.sg-mobilenav-phone { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 16px; }
.sg-mobilenav-social { display: flex; gap: 12px; }
.sg-mobilenav-social a { width: 36px; height: 36px; background: var(--sg-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); transition: var(--transition); }
.sg-mobilenav-social a:hover { background: var(--rose-light); color: var(--rose-primary); }

/* Mobile Services Panel - New Styling */
.sg-mobilenav-services { 
    position: absolute; top: 0; left: 100%; width: 100%; height: 100%; 
    background: linear-gradient(135deg, var(--sg-primary) 0%, var(--sg-secondary) 100%);
    padding: 24px 24px 120px 24px; overflow-y: auto; 
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-overflow-scrolling: touch;
}
.sg-mobilenav-services.active { left: 0; }
.sg-mobilenav-services-header { 
    display: flex; align-items: center; gap: 12px; 
    margin-bottom: 24px; padding-bottom: 16px; 
    border-bottom: 2px solid var(--rose-primary);
}
.sg-mobilenav-backbtn { 
    background: none; border: none; cursor: pointer; 
    display: flex; align-items: center; gap: 6px; 
    color: var(--rose-primary); font-size: 0.9rem; font-weight: 600;
    transition: var(--transition);
}
.sg-mobilenav-backbtn:hover { gap: 10px; }
.sg-mobilenav-services-title { 
    font-family: var(--font-display); font-size: 1.3rem; 
    font-weight: 700; color: var(--text-primary);
}
.sg-mobilenav-allservices { 
    display: flex; align-items: center; gap: 10px; 
    padding: 14px 16px; 
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-md); color: #fff; font-weight: 600; 
    margin-bottom: 24px;
    transition: var(--transition);
}
.sg-mobilenav-allservices:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.sg-mobilenav-allservices svg:last-child { margin-left: auto; }
.sg-mobilenav-category { margin-bottom: 24px; }
.sg-mobilenav-category-head { 
    display: flex; align-items: center; gap: 10px; 
    margin-bottom: 12px; padding: 12px; 
    background: #fff; border-radius: var(--radius-md);
    border-left: 4px solid var(--rose-primary);
}
.sg-mobilenav-category-icon { font-size: 1.3rem; }
.sg-mobilenav-category-name { 
    font-weight: 700; font-size: 0.95rem; 
    color: var(--text-primary);
}
.sg-mobilenav-category-links { 
    display: flex; flex-direction: column; gap: 4px; 
    padding-left: 32px;
}
.sg-mobilenav-category-links a { 
    padding: 10px 12px; border-radius: var(--radius-sm); 
    color: var(--text-secondary); font-size: 0.875rem; 
    transition: var(--transition);
    border-left: 2px solid transparent;
}
.sg-mobilenav-category-links a:hover { 
    background: var(--rose-light); 
    color: var(--rose-primary);
    border-left-color: var(--rose-primary);
    padding-left: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sg-hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 140px 0 80px;
    background: var(--gradient-light);
    position: relative; overflow: hidden;
}
.sg-hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,160,220,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.sg-hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.sg-hero-content { position: relative; z-index: 1; max-width: 700px; }
.sg-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--rose-light); color: var(--rose-dark);
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 24px;
}
.sg-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700; line-height: 1.1;
    color: var(--text-primary); margin-bottom: 24px;
}
.sg-hero-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 40px; max-width: 500px; line-height: 1.8; }
.sg-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.sg-hero-stats { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(201,160,220,0.2); }
.sg-hero-stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; background: var(--gradient-rose); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sg-hero-stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   BUTTONS
   ============================================ */
.sg-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 28px; font-family: var(--font-body); font-weight: 600;
    font-size: 0.95rem; border: none; border-radius: var(--radius-md);
    cursor: pointer; transition: var(--transition); text-decoration: none;
}
.sg-btn-primary {
    background: var(--gradient-rose); color: #fff;
}
.sg-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.sg-btn-outline {
    background: transparent; color: var(--rose-primary);
    border: 2px solid var(--rose-primary);
}
.sg-btn-outline:hover { background: var(--rose-light); }
.sg-btn-gold { background: var(--gradient-gold); color: #fff; }
.sg-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(201,169,110,0.4); }
.sg-btn-lg { padding: 18px 36px; font-size: 1rem; }
.sg-btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.sg-btn-block { width: 100%; }

/* ============================================
   SERVICES
   ============================================ */
.sg-services { background: var(--sg-secondary); }
.sg-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.sg-service-card {
    background: var(--sg-card); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition);
    border: 1px solid rgba(201,160,220,0.1);
    box-shadow: var(--shadow-sm);
}
.sg-service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201,160,220,0.3); }
.sg-service-card-image { aspect-ratio: 4/3; overflow: hidden; }
.sg-service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.sg-service-card:hover .sg-service-card-image img { transform: scale(1.05); }
.sg-service-card-content { padding: 24px; }
.sg-service-card-icon {
    width: 56px; height: 56px; background: var(--rose-light);
    border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
    color: var(--rose-primary); margin-bottom: 16px;
}
.sg-service-card-icon svg { width: 28px; height: 28px; }
.sg-service-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.sg-service-card-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.sg-service-card-link { font-size: 0.875rem; font-weight: 600; color: var(--rose-primary); display: flex; align-items: center; gap: 6px; }

/* Services Category */
.sg-services-category { margin-bottom: 60px; }
.sg-category-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--rose-light); }
.sg-category-icon { width: 56px; height: 56px; background: var(--rose-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--rose-primary); flex-shrink: 0; }
.sg-category-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text-primary); }

/* ============================================
   PAGE HEADER
   ============================================ */
.sg-page-header {
    padding: 160px 0 60px;
    background: linear-gradient(135deg, var(--sg-secondary) 0%, var(--rose-light) 100%);
    text-align: center;
}
.sg-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.sg-breadcrumb a { color: var(--rose-primary); }
.sg-breadcrumb span { color: var(--text-muted); }
.sg-page-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.sg-page-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto; }

/* ============================================
   ABOUT
   ============================================ */
.sg-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sg-about-images { position: relative; }
.sg-about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.sg-about-image:first-child { margin-bottom: 20px; }
.sg-about-image img { width: 100%; height: 300px; object-fit: cover; }
.sg-about-badge {
    position: absolute; bottom: 40px; right: -20px;
    background: var(--gradient-rose); color: #fff;
    padding: 20px 24px; border-radius: var(--radius-md);
    text-align: center; box-shadow: var(--shadow-md);
}
.sg-about-badge-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; }
.sg-about-badge-text { font-size: 0.8rem; font-weight: 500; opacity: 0.9; }
.sg-about-text { color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; }

/* ============================================
   CONTACT
   ============================================ */
.sg-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.sg-contact-info-card { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding: 20px; background: var(--sg-card); border-radius: var(--radius-md); border: 1px solid rgba(201,160,220,0.1); }
.sg-contact-info-icon { width: 48px; height: 48px; background: var(--rose-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--rose-primary); flex-shrink: 0; }
.sg-contact-info-title { font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.sg-contact-info-text { font-size: 0.9rem; color: var(--text-secondary); }
.sg-contact-info-text a { color: var(--rose-primary); }

/* Form */
.sg-form-group { margin-bottom: 20px; }
.sg-form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-primary); margin-bottom: 8px; }
.sg-form-input, .sg-form-select, .sg-form-textarea {
    width: 100%; padding: 14px 18px;
    background: var(--sg-card); border: 1px solid rgba(201,160,220,0.3);
    border-radius: var(--radius-sm); color: var(--text-primary);
    font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition);
}
.sg-form-input:focus, .sg-form-select:focus, .sg-form-textarea:focus {
    outline: none; border-color: var(--rose-primary);
    box-shadow: 0 0 0 3px rgba(201,160,220,0.15);
}
.sg-form-input::placeholder, .sg-form-textarea::placeholder { color: var(--text-muted); }
.sg-form-textarea { min-height: 120px; resize: vertical; }
.sg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================
   BLOG
   ============================================ */
.sg-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.sg-blog-card { background: var(--sg-card); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(201,160,220,0.1); box-shadow: var(--shadow-sm); display: block; }
.sg-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.sg-blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.sg-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.sg-blog-card:hover .sg-blog-card-image img { transform: scale(1.05); }
.sg-blog-card-content { padding: 24px; }
.sg-blog-card-category { display: inline-block; background: var(--rose-light); color: var(--rose-dark); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; }
.sg-blog-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; line-height: 1.4; }
.sg-blog-card-excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.sg-blog-card-date { font-size: 0.8rem; color: var(--text-muted); }
.sg-blog-loading { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 60px; color: var(--text-muted); }
.sg-blog-loading-spinner { width: 24px; height: 24px; border: 2px solid var(--rose-light); border-top-color: var(--rose-primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.sg-blog-empty { text-align: center; padding: 80px 20px; }
.sg-blog-empty-icon { width: 80px; height: 80px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose-primary); margin: 0 auto 24px; }
.sg-blog-empty h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.sg-blog-empty p { color: var(--text-secondary); }

/* Blog Post */
.sg-blog-post { padding-top: 0; }
.sg-blog-content-wrapper { max-width: 800px; margin: 0 auto; }
.sg-blog-featured-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.sg-blog-featured-image img { width: 100%; max-height: 500px; object-fit: cover; }
.sg-blog-body { font-size: 1.05rem; line-height: 1.9; color: var(--text-secondary); }
.sg-blog-body h2, .sg-blog-body h3 { font-family: var(--font-display); color: var(--text-primary); margin: 32px 0 16px; }
.sg-blog-body p { margin-bottom: 20px; }
.sg-blog-body img { border-radius: var(--radius-md); margin: 24px 0; }
.sg-blog-post-meta { display: flex; align-items: center; gap: 16px; margin-top: 12px; }
.sg-blog-post-date { font-size: 0.875rem; color: var(--text-muted); }
.sg-blog-post-category { background: var(--rose-light); color: var(--rose-dark); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; }
.sg-blog-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--sg-secondary); }
.sg-blog-tags span { font-size: 0.875rem; color: var(--text-muted); }
.sg-blog-tags a { background: var(--sg-secondary); color: var(--text-secondary); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; transition: var(--transition); }
.sg-blog-tags a:hover { background: var(--rose-light); color: var(--rose-primary); }
.sg-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.sg-related-card { background: var(--sg-card); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.sg-related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sg-related-card img { width: 100%; height: 180px; object-fit: cover; }
.sg-related-content { padding: 16px; }
.sg-related-content h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 8px; color: var(--text-primary); }
.sg-related-content p { font-size: 0.85rem; color: var(--text-secondary); }

/* ============================================
   CTA SECTION
   ============================================ */
.sg-cta {
    background: linear-gradient(135deg, var(--rose-light) 0%, #f5e6ff 100%);
    padding: 100px 0; text-align: center;
}
.sg-cta-content { max-width: 600px; margin: 0 auto; }
.sg-cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.sg-cta-text { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.05rem; }
.sg-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.sg-footer { background: var(--text-primary); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.sg-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.sg-footer-brand .sg-logo-main { color: #fff; background: var(--gradient-rose); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sg-footer-brand .sg-logo-sub { color: rgba(255,255,255,0.5); }
.sg-footer-brand-text { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 16px 0 24px; }
.sg-footer-social { display: flex; gap: 12px; }
.sg-footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); }
.sg-footer-social a:hover { background: var(--rose-primary); color: #fff; }
.sg-footer-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fff; margin-bottom: 20px; }
.sg-footer-links { display: flex; flex-direction: column; gap: 10px; }
.sg-footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.sg-footer-links a:hover { color: var(--rose-primary); padding-left: 4px; }
.sg-footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.sg-footer-contact-item svg { flex-shrink: 0; color: var(--rose-primary); margin-top: 2px; }
.sg-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; }
.sg-footer-copyright { font-size: 0.875rem; color: rgba(255,255,255,0.4); }

/* WhatsApp Float */
.sg-whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 56px; height: 56px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition);
}
.sg-whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }


.sg-promo-code { font-family: monospace; font-size: 1.8rem; font-weight: 700; color: var(--rose-primary); letter-spacing: 3px; }
.sg-copy-btn {
    position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; font-size: 1.2rem;
    transition: var(--transition);
}
.sg-btn-whatsapp {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 14px; background: #25D366; color: #fff;
    border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem;
    border: none; cursor: pointer; transition: var(--transition);
}
.sg-btn-whatsapp:hover { background: #1da851; }

/* ============================================
   SKIN/HAIR ANALYSIS FORM
   ============================================ */
.sg-analysis-page { min-height: 100vh; padding: 140px 0 80px; background: var(--sg-primary); }
.sg-analysis-header { text-align: center; margin-bottom: 50px; }
.sg-analysis-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--text-primary); }
.sg-analysis-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.sg-analysis-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 60px; }
.sg-benefit-card {
    background: var(--sg-card); border: 1px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-md); padding: 28px; text-align: center;
    transition: var(--transition); box-shadow: var(--shadow-sm);
}
.sg-benefit-card:hover { border-color: var(--rose-primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.sg-benefit-icon { width: 60px; height: 60px; margin: 0 auto 16px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose-primary); }
.sg-benefit-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.sg-benefit-card p { font-size: 0.875rem; color: var(--text-secondary); }
.sg-analysis-form-container {
    max-width: 700px; margin: 0 auto;
    background: var(--sg-card); border: 1px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-lg); padding: 50px;
    box-shadow: var(--shadow-md);
}
.sg-progress-container { margin-bottom: 40px; }
.sg-progress-steps { display: flex; justify-content: space-between; margin-bottom: 15px; }
.sg-progress-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.sg-progress-step::after { content: ''; position: absolute; top: 15px; left: 50%; width: 100%; height: 2px; background: var(--sg-secondary); z-index: 0; }
.sg-progress-step:last-child::after { display: none; }
.sg-step-number { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: var(--sg-secondary); border: 2px solid var(--sg-secondary); border-radius: 50%; font-size: 0.8rem; font-weight: 600; z-index: 1; transition: var(--transition); color: var(--text-muted); }
.sg-progress-step.active .sg-step-number, .sg-progress-step.completed .sg-step-number { background: var(--rose-primary); border-color: var(--rose-primary); color: #fff; }
.sg-step-label { font-size: 0.7rem; margin-top: 8px; color: var(--text-muted); text-align: center; }
.sg-progress-step.active .sg-step-label { color: var(--rose-primary); }
.sg-form-step { display: none; }
.sg-form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.sg-step-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; text-align: center; color: var(--text-primary); }
.sg-step-desc { color: var(--text-secondary); text-align: center; margin-bottom: 30px; font-size: 0.95rem; }
.sg-form-group-analysis { margin-bottom: 25px; }
.sg-form-group-analysis label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; color: var(--text-primary); }
.sg-form-input-analysis {
    width: 100%; padding: 15px 20px;
    background: var(--sg-secondary); border: 1px solid rgba(201,160,220,0.3);
    border-radius: var(--radius-sm); color: var(--text-primary);
    font-family: var(--font-body); font-size: 1rem; transition: var(--transition);
}
.sg-form-input-analysis:focus { outline: none; border-color: var(--rose-primary); box-shadow: 0 0 0 3px rgba(201,160,220,0.15); }
.sg-form-input-analysis::placeholder { color: var(--text-muted); }
.sg-privacy-box {
    background: var(--sg-secondary); border: 1px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-sm); padding: 24px; max-height: 300px;
    overflow-y: auto; margin-bottom: 24px; font-size: 0.85rem; line-height: 1.8; color: var(--text-secondary);
}
.sg-privacy-box h4 { color: var(--text-primary); margin-bottom: 12px; font-size: 0.95rem; }
.sg-privacy-box ul { padding-left: 20px; margin: 12px 0; }
.sg-privacy-box ul li { list-style: disc; margin-bottom: 6px; }
.sg-checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.sg-checkbox-group input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--rose-primary); }
.sg-checkbox-group label { font-size: 0.9rem; cursor: pointer; color: var(--text-secondary); }
.sg-question-options { display: grid; gap: 12px; }
.sg-option-card {
    background: var(--sg-secondary); border: 2px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-md); padding: 18px; cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; gap: 14px;
}
.sg-option-card:hover { border-color: rgba(201,160,220,0.5); }
.sg-option-card.selected { border-color: var(--rose-primary); background: rgba(201,160,220,0.08); }
.sg-option-radio { width: 22px; height: 22px; border: 2px solid rgba(201,160,220,0.4); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.sg-option-card.selected .sg-option-radio { border-color: var(--rose-primary); }
.sg-option-card.selected .sg-option-radio::after { content: ''; width: 12px; height: 12px; background: var(--rose-primary); border-radius: 50%; }
.sg-option-content h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--text-primary); }
.sg-option-content p { font-size: 0.8rem; color: var(--text-muted); }
.sg-form-nav { display: flex; justify-content: space-between; gap: 15px; margin-top: 40px; }
.sg-form-nav .sg-btn { flex: 1; }
.sg-btn-prev { background: transparent; border: 1px solid var(--text-muted); color: var(--text-primary); }
.sg-btn-prev:hover { border-color: var(--rose-primary); color: var(--rose-primary); }
.sg-photo-method-tabs { display: flex; gap: 10px; margin-bottom: 24px; justify-content: center; }
.sg-photo-tab { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--sg-secondary); border: 2px solid rgba(201,160,220,0.2); color: var(--text-secondary); font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: var(--transition); border-radius: var(--radius-sm); }
.sg-photo-tab:hover { border-color: rgba(201,160,220,0.5); }
.sg-photo-tab.active { border-color: var(--rose-primary); background: rgba(201,160,220,0.1); color: var(--rose-primary); }
.sg-camera-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.sg-camera-area { position: relative; width: 300px; height: 380px; background: var(--sg-secondary); border: 2px solid var(--rose-primary); overflow: hidden; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
.sg-camera-area video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transform: scaleX(-1); z-index: 0; }
.sg-camera-preview { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.sg-camera-error { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: var(--text-muted); z-index: 5; }
.sg-camera-controls { display: flex; gap: 15px; justify-content: center; }
.sg-camera-btn { display: flex; align-items: center; gap: 8px; }
.sg-upload-container { display: flex; justify-content: center; }
.sg-photo-upload-area { position: relative; width: 300px; height: 380px; margin: 0 auto 30px; background: var(--sg-secondary); border: 2px dashed rgba(201,160,220,0.4); border-radius: var(--radius-md); display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); overflow: hidden; }
.sg-photo-upload-area:hover { border-color: var(--rose-primary); }
.sg-photo-upload-area.has-image { border-style: solid; border-color: var(--rose-primary); }
.sg-face-mask { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 270px; border: 3px solid rgba(201,160,220,0.7); border-radius: 50% 50% 45% 45%; pointer-events: none; z-index: 2; box-shadow: 0 0 0 9999px rgba(0,0,0,0.2); }
.sg-face-guide-text { position: absolute; bottom: 20px; font-size: 0.75rem; color: var(--rose-primary); text-align: center; z-index: 3; padding: 5px 10px; background: rgba(255,255,255,0.9); border-radius: var(--radius-sm); }
.sg-upload-preview { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.sg-upload-icon { color: var(--rose-primary); margin-bottom: 15px; z-index: 3; }
.sg-upload-text { font-size: 0.9rem; color: var(--text-muted); text-align: center; z-index: 3; }
.sg-upload-text span { color: var(--rose-primary); text-decoration: underline; }
.sg-photo-input { display: none; }
.sg-photo-tips { background: rgba(201,160,220,0.08); border: 1px solid rgba(201,160,220,0.2); border-radius: var(--radius-sm); padding: 20px; margin-top: 20px; }
.sg-photo-tips h4 { font-size: 0.9rem; margin-bottom: 10px; color: var(--rose-primary); }
.sg-photo-tips ul { font-size: 0.85rem; color: var(--text-secondary); }
.sg-photo-tips ul li { margin-bottom: 5px; padding-left: 15px; position: relative; }
.sg-photo-tips ul li::before { content: '✓'; position: absolute; left: 0; color: var(--rose-primary); }
.sg-success-message { text-align: center; padding: 40px 0; }
.sg-success-icon { width: 100px; height: 100px; margin: 0 auto 30px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--rose-primary); }
.sg-success-message h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 15px; color: var(--text-primary); }
.sg-success-message p { color: var(--text-secondary); margin-bottom: 20px; }
.sg-how-it-works { margin-top: 80px; text-align: center; }
.sg-how-it-works h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 40px; color: var(--text-primary); }
.sg-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.sg-work-step { position: relative; padding: 30px; }
.sg-work-step-number { font-family: var(--font-display); font-size: 3rem; color: rgba(201,160,220,0.2); position: absolute; top: 0; left: 50%; transform: translateX(-50%); }
.sg-work-step h3 { font-size: 1.1rem; margin: 30px 0 10px; color: var(--text-primary); }
.sg-work-step p { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.sg-service-detail { padding: 60px 0; }
.sg-service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.sg-service-detail-content { }
.sg-service-detail-img { margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.sg-service-detail-img img { width: 100%; height: auto; display: block; }
.sg-service-detail-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 16px; }
.sg-service-detail-content h2:first-of-type { margin-top: 0; }
.sg-service-detail-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; font-size: 1rem; }
.sg-service-list { list-style: none; margin: 24px 0; }
.sg-service-list li { padding: 12px 0; padding-left: 28px; position: relative; color: var(--text-secondary); line-height: 1.7; }
.sg-service-list li::before { content: '✓'; position: absolute; left: 0; color: var(--rose-primary); font-weight: 700; }
.sg-service-list li a { color: var(--rose-primary); font-weight: 600; transition: var(--transition); }
.sg-service-list li a:hover { text-decoration: underline; }

.sg-service-cta-box {
    background: var(--rose-light); border-radius: var(--radius-md);
    padding: 32px; margin: 40px 0; text-align: center;
}
.sg-service-cta-box h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--text-primary); margin-bottom: 16px; }

.sg-service-detail-sidebar { }
.sg-sidebar-card {
    background: var(--sg-card); border: 1px solid rgba(201,160,220,0.2);
    border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.sg-sidebar-card h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--text-primary); margin-bottom: 16px; }
.sg-sidebar-card .sg-btn { width: 100%; margin-bottom: 12px; }
.sg-sidebar-card .sg-btn:last-child { margin-bottom: 0; }

.sg-related-services { display: flex; flex-direction: column; gap: 12px; }
.sg-related-services a {
    display: block; padding: 12px 16px; background: var(--sg-secondary);
    border-radius: var(--radius-sm); color: var(--text-secondary);
    transition: var(--transition); font-size: 0.9rem;
}
.sg-related-services a:hover { background: var(--rose-light); color: var(--rose-primary); }

/* Service Detail Responsive */
@media (max-width: 768px) {
    .sg-service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
    .sg-service-detail-content h2 { font-size: 1.4rem; }
}

/* ============================================
   RELATED SERVICES GRID
   ============================================ */
.sg-related-services-section { margin: 80px 0; }
.sg-related-services-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-primary); text-align: center; margin-bottom: 48px; }
.sg-related-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.sg-related-service-card {
    background: var(--sg-card); border-radius: var(--radius-lg);
    overflow: hidden; transition: var(--transition);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(201,160,220,0.1);
    display: flex; flex-direction: column;
}
.sg-related-service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.sg-related-service-card-image { aspect-ratio: 4/3; overflow: hidden; }
.sg-related-service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.sg-related-service-card:hover .sg-related-service-card-image img { transform: scale(1.05); }
.sg-related-service-card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.sg-related-service-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; }
.sg-related-service-card-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; flex-grow: 1; }
.sg-related-service-card-link { color: var(--rose-primary); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.sg-related-service-card-link:hover { gap: 10px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.sg-testimonials { background: var(--sg-secondary); }
.sg-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.sg-testimonial-card { background: var(--sg-card); border-radius: var(--radius-lg); padding: 32px; border: 1px solid rgba(201,160,220,0.1); box-shadow: var(--shadow-sm); }
.sg-testimonial-stars { display: flex; gap: 4px; color: var(--gold-accent); margin-bottom: 16px; }
.sg-testimonial-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.sg-testimonial-author { display: flex; align-items: center; gap: 12px; }
.sg-testimonial-avatar { width: 44px; height: 44px; background: var(--rose-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--rose-primary); }
.sg-testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.sg-testimonial-service { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.sg-faq-item { border: 1px solid rgba(201,160,220,0.2); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.sg-faq-item.active { border-color: var(--rose-primary); }
.sg-faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--text-primary); background: var(--sg-card); }
.sg-faq-question svg { transition: var(--transition); flex-shrink: 0; color: var(--rose-primary); }
.sg-faq-item.active .sg-faq-question svg { transform: rotate(180deg); }
.sg-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--sg-card); }
.sg-faq-item.active .sg-faq-answer { max-height: 300px; }
.sg-faq-answer-inner { padding: 0 24px 20px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sg-nav { display: none; }
    .sg-menu-toggle { display: flex; }
    .sg-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .sg-contact-grid { grid-template-columns: 1fr; }
    .sg-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .sg-header-actions { display: flex; }
    .sg-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
    .sg-section { padding: 60px 0; }
    .sg-hero { padding: 120px 0 60px; }
    .sg-hero-stats { gap: 20px; flex-wrap: wrap; }
    .sg-analysis-form-container { padding: 30px 20px; }
    .sg-step-label { display: none; }
    .sg-photo-upload-area, .sg-camera-area { width: 100%; max-width: 300px; }
    .sg-form-row { grid-template-columns: 1fr; }
    .sg-footer-grid { grid-template-columns: 1fr; }
    .sg-floating-popup { width: calc(100vw - 40px); }
    .sg-floating-popup.active { right: 20px; }
    .sg-floating-popup-left.active { left: 20px; }
    .sg-services-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .sg-header { width: calc(100% - 24px); padding: 12px 20px; }
    .sg-header-phone { font-size: 0.75rem; padding: 6px 12px; }
    .sg-header-phone-text { display: none; }
    .sg-header-phone svg { width: 16px; height: 16px; }
    .sg-hero-buttons { flex-direction: column; }
    .sg-cta-buttons { flex-direction: column; align-items: center; }
}


/* ============================================
   FLOATING TABS & POPUPS - Simila Theme
   ============================================ */

/* Floating Tab Container */
.sg-floating-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
}

.sg-floating-tab.hidden {
    display: none;
}

/* Floating Tab Trigger Button */
.sg-floating-tab-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-rose);
    color: white;
    padding: 12px 8px;
    cursor: pointer;
    border: none;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    min-height: 180px;
}

.sg-floating-tab-trigger:hover {
    padding-right: 15px;
    box-shadow: -6px 6px 30px var(--rose-glow);
}

.sg-floating-tab-trigger svg {
    transform: rotate(90deg);
}

.sg-floating-tab-trigger .sg-pulse-dot {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: sg-pulse-animation 2s ease-in-out infinite;
}

@keyframes sg-pulse-animation {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Tab Attention Animation */
@keyframes sg-tab-attention {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(0); }
}

.sg-floating-tab-trigger {
    animation: sg-tab-attention 3s ease-in-out infinite;
    animation-delay: 2s;
}

.sg-floating-tab-trigger:hover {
    animation: none;
}

/* LEFT SIDE Floating Tab */
.sg-floating-tab-left {
    left: 0;
    right: auto;
}

.sg-floating-tab-trigger-left {
    border-radius: 0 8px 8px 0;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sg-floating-tab-trigger-left:hover {
    padding-left: 15px;
    padding-right: 8px;
    box-shadow: 6px 6px 30px rgba(37, 211, 102, 0.3);
}

@keyframes sg-tab-attention-left {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(8px); }
    75% { transform: translateX(0); }
}

.sg-floating-tab-trigger-left {
    animation: sg-tab-attention-left 3s ease-in-out infinite;
    animation-delay: 3s;
}

.sg-floating-tab-trigger-left:hover {
    animation: none;
}

/* Floating Popup Container */
.sg-floating-popup {
    position: fixed;
    right: 0;
    top: 50%;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: var(--sg-card);
    border: 1px solid var(--rose-primary);
    border-radius: 12px 0 0 12px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%) translateX(100%);
    overflow: hidden;
}

.sg-floating-popup.active {
    transform: translateY(-50%) translateX(0);
}

/* LEFT Floating Popup */
.sg-floating-popup-left {
    position: fixed;
    left: 0;
    right: auto;
    top: 50%;
    border-radius: 0 12px 12px 0;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%) translateX(-100%);
}

.sg-floating-popup-left.active {
    transform: translateY(-50%) translateX(0);
}

/* Popup Header */
.sg-floating-popup-header {
    background: var(--gradient-rose);
    padding: 20px;
    position: relative;
    color: white;
}

.sg-floating-popup-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 5px;
}

.sg-floating-popup-header p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Close Button */
.sg-floating-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.sg-floating-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Badge */
.sg-floating-popup-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.sg-badge-fire {
    background: #ff4444 !important;
    color: white !important;
}

/* Popup Body */
.sg-floating-popup-body {
    padding: 25px;
}

.sg-floating-popup-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.sg-floating-popup-feature:last-child {
    margin-bottom: 0;
}

.sg-floating-popup-feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 160, 220, 0.15);
    border-radius: 50%;
    color: var(--rose-primary);
}

.sg-floating-popup-feature h4 {
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 3px;
    font-weight: 600;
}

.sg-floating-popup-feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Popup CTA */
.sg-floating-popup-cta {
    padding: 0 25px 25px;
}

.sg-floating-popup-cta .sg-btn {
    width: 100%;
    justify-content: center;
}

/* Promo Specific Styles */
.sg-promo-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sg-promo-code-box {
    background: var(--sg-primary);
    border: 2px dashed var(--rose-primary);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.sg-promo-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sg-promo-code {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-primary);
    letter-spacing: 4px;
}

.sg-copy-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.sg-copy-btn:hover {
    color: var(--rose-primary);
}

/* WhatsApp Button in Popups */
.sg-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.sg-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

/* Ticket Perforation Effect */
.sg-ticket-tear {
    position: relative;
    height: 20px;
    background: var(--sg-secondary);
    margin: 0 -1px;
}

.sg-ticket-tear::before,
.sg-ticket-tear::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--sg-card);
    border-radius: 50%;
}

.sg-ticket-tear::before {
    left: -10px;
    border: 1px solid var(--rose-primary);
    border-left: none;
}

.sg-ticket-tear::after {
    right: -10px;
    border: 1px solid var(--rose-primary);
    border-right: none;
}

/* Floating Overlay */
.sg-floating-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sg-floating-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sg-floating-tab-trigger {
        min-height: auto;
        font-size: 0.8rem;
        padding: 12px 10px;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        border-radius: 8px 0 0 8px;
        right: -5px;
        gap: 6px;
        flex-direction: column;
        width: auto;
        max-width: 55px;
        transform: translateX(0);
        transition: transform 0.3s ease, right 0.3s ease;
    }
    
    .sg-floating-tab-trigger:hover {
        right: 0;
    }
    
    .sg-floating-tab-trigger span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        white-space: nowrap;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .sg-floating-tab-trigger svg {
        width: 22px;
        height: 22px;
        transform: rotate(0);
    }
    
    .sg-floating-tab-trigger .sg-pulse-dot {
        top: 6px;
        right: 6px;
    }
    
    @keyframes sg-tab-attention-mobile {
        0%, 100% { right: -5px; }
        50% { right: 5px; }
    }
    
    .sg-floating-tab-trigger {
        animation: sg-tab-attention-mobile 2.5s ease-in-out infinite;
        animation-delay: 1s;
    }
    
    .sg-floating-tab-trigger:hover,
    .sg-floating-tab-trigger:active {
        animation: none;
        right: 0;
    }
    
    .sg-floating-tab-trigger-left {
        min-height: auto;
        font-size: 0.8rem;
        padding: 12px 10px;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        border-radius: 0 8px 8px 0;
        left: -5px;
        gap: 6px;
        flex-direction: column;
        width: auto;
        max-width: 55px;
    }
    
    .sg-floating-tab-trigger-left span {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        white-space: nowrap;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    @keyframes sg-tab-attention-mobile-left {
        0%, 100% { left: -5px; }
        50% { left: 5px; }
    }
    
    .sg-floating-tab-trigger-left {
        animation: sg-tab-attention-mobile-left 2.5s ease-in-out infinite;
        animation-delay: 1.5s;
    }
    
    .sg-floating-tab-trigger-left:hover,
    .sg-floating-tab-trigger-left:active {
        animation: none;
        left: 0;
    }
    
    .sg-floating-popup,
    .sg-floating-popup-left {
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
    }
    
    .sg-floating-popup.active,
    .sg-floating-popup-left.active {
        transform: translateY(0);
    }
}
