/* ============================================
   Health Calm Space - PREMIUM HEALTHCARE WEBSITE
   Modern 2026 UI/UX Design with Glassmorphism
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT STYLES
   ============================================ */
:root {
    /* Premium Agency Color Palette */
    --primary-black: #000000;
    --secondary-gray: #666666;
    --pure-white: #FFFFFF;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.7s ease;
    
    /* Typography */
    --font-primary: 'Inter', 'Helvetica', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Helvetica', 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--pure-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

input, textarea, select {
    font-family: var(--font-primary);
    outline: none;
    border: none;
}

::selection {
    background: var(--primary-black);
    color: var(--pure-white);
}

/* ============================================
   FLOATING BACKGROUND SHAPES
   ============================================ */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 20%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
}

.dark-section {
    background: var(--primary-black);
    color: var(--pure-white);
    position: relative;
    padding:100px;
}

/* ============================================
   GLASS CARD EFFECT
   ============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.dark-section .glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 15px;
    color: var(--secondary-gray);
    line-height: 1.8;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.8);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary1 {
    background: #3b82f6;
    color: var(--pure-white);
}


.btn-primary {
    background: var(--primary-black);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.dark-section .btn-secondary {
    color: var(--pure-white);
    border-color: var(--pure-white);
}

.btn-secondary:hover {
    background: var(--primary-black);
    color: var(--pure-white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 10px 25px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
}

.logo i {
    font-size: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-black);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--primary-black);
    color: var(--pure-white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 4.2rem;
    margin-bottom: 25px;
    color: var(--pure-white);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
}

.hero-image .glass-card {
    padding: 0;
    overflow: hidden;
    animation: floating 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.text-center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--secondary-gray);
}

.dark-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    padding: 40px 30px;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-card p {
    line-height: 1.8;
}

/* ============================================
   MILESTONES SECTION
   ============================================ */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.milestone-card {
    padding: 40px 30px;
    text-align: center;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
}

.milestone-card h3 {
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 10px;
}

.milestone-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pure-white);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-list {
    margin-top: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--secondary-gray);
}

.feature-list i {
    color: #667eea;
    font-size: 1.1rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, #667eea, transparent);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pure-white);
    box-shadow: var(--shadow-glow);
}

.step-content {
    padding: 30px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: 8px 25px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 14px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    margin: 30px 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .amount {
    font-size: 4rem;
    font-weight: 700;
}

.price .period {
    font-size: 1.2rem;
    color: var(--secondary-gray);
}

.pricing-features {
    text-align: left;
    margin: 30px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--secondary-gray);
}

.pricing-features i {
    color: #667eea;
    font-size: 1.1rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    overflow: hidden;
}

.service-image {
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 15px;
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
    margin-bottom: 25px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    color: var(--secondary-gray);
}

.dark-section .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-features i {
    color: #667eea;
    margin-top: 5px;
    font-size: 1.1rem;
}

.conditions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
}

.condition-tag {
    padding: 8px 20px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 500;
}

.service-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: var(--radius-md);
}

.benefit-item i {
    font-size: 1.8rem;
    color: #667eea;
}

.service-detail-image .glass-card {
    padding: 0;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-content {
    padding: 60px 40px;
    text-align: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   INSURANCE SECTION
   ============================================ */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.insurance-item {
    padding: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.insurance-item i {
    font-size: 1.5rem;
    color: #667eea;
}

.insurance-item span {
    font-weight: 600;
    color: var(--pure-white);
}

.insurance-cta {
    text-align: center;
}

.insurance-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   REQUIREMENT FORM SECTION
   ============================================ */
.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.requirement-form {
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.form-group i {
    color: #667eea;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-size: 16px;
    background: var(--pure-white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 35px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--secondary-gray);
}

.dark-section .testimonial-text {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--secondary-gray);
    margin: 0;
}

.dark-section .author-info p {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   DETAILED TESTIMONIALS (REVIEW PAGE)
   ============================================ */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.review-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.review-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-tag {
    padding: 6px 15px;
    background: rgba(102, 126, 234, 0.2);
    color: #a8b9ff;
    border-radius: var(--radius-lg);
    font-size: 0.85rem;
    font-weight: 500;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
}

.verified-badge i {
    font-size: 1rem;
}

/* ============================================
   RATING OVERVIEW
   ============================================ */
.rating-summary {
    padding: 50px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 50px;
    align-items: center;
}

.rating-score {
    text-align: center;
}

.rating-score h2 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.rating-score .stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.rating-score .stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-breakdown {
    flex: 1;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    gap: 15px;
    align-items: center;
    margin-bottom: 12px;
}

.rating-bar span:first-child {
    font-weight: 600;
}

.rating-bar .bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

.rating-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rating-stats .stat-item {
    text-align: center;
}

.rating-stats i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.rating-stats h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.rating-stats p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-card {
    padding: 0;
    overflow: hidden;
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.play-button i {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-left: 5px;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--pure-white);
}

.video-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.video-card p {
    padding: 0 20px 20px;
    margin: 0;
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.award-card {
    text-align: center;
    padding: 40px 30px;
}

.award-card i {
    font-size: 3.5rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.award-card h3 {
    font-size: 1.3rem;
    color: var(--pure-white);
    margin-bottom: 10px;
}

.award-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px;
    margin-bottom: 20px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--pure-white);
    margin: 0;
}

.faq-question i {
    font-size: 1.2rem;
    color: #667eea;
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    padding: 30px;
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pure-white);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-card p {
    margin-bottom: 10px;
}

.contact-card a {
    color: #667eea;
    font-weight: 600;
}

.contact-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-gray);
}

/* ============================================
   CONTACT INFO GRID
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-info-card {
    padding: 40px 30px;
    text-align: center;
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info-card span {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-gray);
    margin-bottom: 20px;
}

.btn-small {
    padding: 10px 25px;
    font-size: 14px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
    background: var(--primary-black);
    color: var(--pure-white);

}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.contact-features {
    margin-bottom: 40px;
}

.contact-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-features i {
    color: #667eea;
    font-size: 1.2rem;
}

.contact-features p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.emergency-notice {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
}

.emergency-notice i {
    color: #ef4444;
    font-size: 1.8rem;
}

.emergency-notice h4 {
    color: #ef4444;
    margin-bottom: 10px;
}

.emergency-notice p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.main-contact-form {
    padding: 40px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--secondary-gray);
}

.checkbox-label a {
    color: #667eea;
    text-decoration: underline;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-container {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* ============================================
   OFFICE HOURS
   ============================================ */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hours-card {
    padding: 40px;
}

.hours-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 25px;
}

.hours-card i {
    color: #667eea;
    font-size: 1.8rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list span:first-child {
    font-weight: 600;
}

/* ============================================
   FAQ QUICK SECTION
   ============================================ */
.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faq-quick-card {
    padding: 30px;
    text-align: center;
}

.faq-quick-card i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.faq-quick-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-quick-card p {
    font-size: 0.95rem;
    color: var(--secondary-gray);
    margin: 0;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 180px 0 100px;
    background: var(--primary-black);
    color: var(--pure-white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image .glass-card {
    padding: 0;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.story-stats .stat {
    text-align: center;
}

.story-stats h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 5px;
}

.story-stats p {
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   MVV SECTION (Mission Vision Values)
   ============================================ */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.mvv-card {
    padding: 40px;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
    margin-bottom: 25px;
}

.mvv-card h3 {
    font-size: 1.8rem;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.mvv-card > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.8;
}

.mvv-list {
    margin-top: 20px;
}

.mvv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.mvv-list i {
    color: #667eea;
    font-size: 1.1rem;
}

/* ============================================
   PRINCIPLES SECTION
   ============================================ */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.principle-card {
    padding: 40px 30px;
    position: relative;
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.principle-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pure-white);
    margin-bottom: 25px;
}

.principle-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.principle-card p {
    line-height: 1.8;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.3rem;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.team-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: var(--pure-white);
    transform: translateY(-3px);
}

/* ============================================
   TECH FEATURES
   ============================================ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    padding: 35px 25px;
    text-align: center;
}

.tech-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--pure-white);
}

.tech-card h3 {
    font-size: 1.3rem;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   CARE FEATURES
   ============================================ */
.care-features {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.care-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.care-feature-item.reverse {
    direction: rtl;
}

.care-feature-item.reverse > * {
    direction: ltr;
}

.care-feature-image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.care-feature-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

.care-feature-content h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.care-feature-content i {
    color: #667eea;
    font-size: 2rem;
}

.care-feature-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.care-feature-content ul {
    margin-top: 20px;
}

.care-feature-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--secondary-gray);
}

.care-feature-content li::before {
    content: '✓';
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   CONVENIENCE SECTION
   ============================================ */
.convenience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 30px;
}

.convenience-card {
    padding: 35px 25px;
    text-align: center;
}

.convenience-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.convenience-card h3 {
    font-size: 1.3rem;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.convenience-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   QUALITY SECTION
   ============================================ */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 40px;
}

.quality-item {
    text-align: center;
}

.quality-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
}

.quality-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.quality-item p {
    margin: 0;
}

/* ============================================
   BENEFITS GRID
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 40px 30px;
    text-align: center;
}

.benefit-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    margin: 0;
}

/* ============================================
   LEGAL PAGES (PRIVACY & TERMS)
   ============================================ */
.legal-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.sidebar-card {
    padding: 25px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-nav a {
    color: var(--secondary-gray);
    font-size: 0.95rem;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: var(--transition-fast);
}

.legal-nav a:hover,
.legal-nav a.active {
    color: #667eea;
    border-left-color: #667eea;
    padding-left: 20px;
}

.legal-main {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.legal-section i {
    color: #667eea;
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0 20px 25px;
}

.legal-section li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--secondary-gray);
    list-style: disc;
}

.legal-section ol li {
    list-style: decimal;
}

.info-box,
.warning-box {
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.info-box i {
    color: #3b82f6;
    font-size: 1.5rem;
}

.info-box p {
    color: var(--primary-black);
    margin: 0;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.warning-box i {
    color: #ef4444;
    font-size: 1.5rem;
}

.warning-box p {
    color: var(--primary-black);
    margin: 0;
}

.contact-details-box {
    padding: 30px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-md);
    margin: 25px 0;
}

.contact-details-box h3 {
    color: #667eea;
    margin-top: 0;
}

.contact-details-box p {
    margin-bottom: 10px;
}

.contact-details-box a {
    color: #667eea;
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--pure-white);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    border-radius: var(--radius-lg);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-contact i {
    color: #667eea;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--pure-white);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-bottom,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-bottom {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-bottom.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-content,
    .story-content,
    .service-detail,
    .care-feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail.reverse,
    .care-feature-item.reverse {
        direction: ltr;
    }

    .contact-wrapper,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        background-color: #000000;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .rating-summary {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rating-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-large {
        width: 100%;
        justify-content: center;
    }

    .about-grid,
    .features-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .story-stats,
    .service-benefits {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step:not(:last-child)::after {
        left: 30px;
        top: 60px;
        height: calc(100% - 60px);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-large {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .glass-card {
        padding: 25px 20px;
    }

    .page-header {
        padding: 150px 0 80px;
    }

    .milestone-card h3 {
        font-size: 2.5rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .scroll-top,
    .floating-shapes,
    .cta-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .glass-card {
        background: white;
        border: 1px solid #ddd;
    }
}