/*
 * LUXTEN - Premium Deglet Noor Dates Website
 * Stylesheet
 * Author: LUXTEN Team
 * Version: 1.0
 */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary: #8B4513;
    --secondary: #A0522D;
    --accent: #DAA520;
    --gold: #FFD700;
    --cream: #FFF8DC;
    --dark: #1a0f0a;
    --white: #FFFFFF;
    --gray: #F9F9F9;
    --text: #333333;
    --text-light: #666666;
    --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 50px rgba(0, 0, 0, 0.2);
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   Custom Cursor
   ============================================ */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor.active {
    width: 50px;
    height: 50px;
    background: rgba(218, 165, 32, 0.2);
    border-color: var(--gold);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    display: none;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.85) 0%, rgba(139, 69, 19, 0.6) 100%);
    z-index: 1;
}

.floating-dates {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-date {
    position: absolute;
    font-size: 40px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 50px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

.hero-badge i {
    font-size: 14px;
}

.hero h1 {
    font-size: 72px;
    margin-bottom: 25px;
    color: var(--white);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: none;
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}
.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-normal);
}

.about-image-wrapper:hover .about-image-main {
    transform: scale(1.02);
}

.about-image-overlay {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
    background: url('../images/luxten-bg2.png') center/cover;
    border-radius: var(--border-radius-md);
    box-shadow: none;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -40px;
    background: var(--accent);
    padding: 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: none;
}

.experience-badge .number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark);
    margin-top: 5px;
}

.about-content h3 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

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

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

.about-feature .icon {
    width: 50px;
    height: 50px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
}

.about-feature span {
    font-weight: 500;
    color: var(--dark);
}

/* ============================================
   Dates Info Section
   ============================================ */
.dates-info {
    background: var(--white);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.dates-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.date-circle {
    position: absolute;
    border: 1px solid var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.date-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.date-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.date-line {
    position: absolute;
    background: linear-gradient(90deg, var(--accent), transparent);
    height: 1px;
    opacity: 0.1;
}

.date-line-1 {
    width: 200px;
    top: 30%;
    left: 5%;
}

.date-line-2 {
    width: 150px;
    bottom: 25%;
    right: 10%;
    background: linear-gradient(-90deg, var(--gold), transparent);
}

.dates-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.dates-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dates-badge i {
    color: var(--gold);
    font-size: 16px;
}

.dates-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.dates-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.dates-intro strong {
    color: var(--accent);
    font-weight: 600;
}

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

.date-card {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: var(--cream);
    overflow: hidden;
}

.date-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.date-card:hover .date-video {
    transform: scale(1.05);
}

.date-card-content {
    padding: 28px 30px 30px;
}

.date-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.date-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.date-card:hover {
    transform: translateY(-8px);
}

.date-card:hover .card-accent {
    transform: scaleX(1);
}

.date-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.date-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
    background: linear-gradient(135deg, var(--dark) 0%, #2C1810 100%);
    color: var(--white);
}

.why-us .section-header h2 {
    color: var(--white);
}

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

.why-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.why-item .icon {
    font-size: 36px;
    color: var(--accent);
    flex-shrink: 0;
}

.why-item h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 20px;
}

.why-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    background: var(--cream);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.products-header .section-header {
    text-align: left;
    margin-bottom: 0;
}

.products-header .section-header p {
    margin: 0;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap var(--transition-fast);
}

.view-all:hover {
    gap: 15px;
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 35px;
}

.product-info h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 22px;
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.product-features span::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    position: relative;
    padding: 100px 0;
    background: var(--primary);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: url('../images/luxten-bg.png') center/cover;
    opacity: 0.03;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-suffix {
    font-size: 36px;
    color: var(--gold);
    margin-left: 4px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================
   Health Benefits Section
   ============================================ */
.health {
    background: var(--gray);
    position: relative;
}

.health-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Deglet-Noor-Dates-Oasis-2.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.07;
    pointer-events: none;
}

.health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.health-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: none;
}

.health-content h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 15px;
}

.health-intro {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.health-list {
    display: flex;
    flex-direction: column;
}

.health-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.health-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    min-width: 70px;
}

.health-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.health-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 0 0 100px;
}

/* ============================================
   Vision Section
   ============================================ */
.vision {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Deglet-Noor-Dates-Oasis.png') center/cover;
    opacity: 0.05;
}

.vision .container {
    position: relative;
    z-index: 2;
}

.vision-quote {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Choose Us Section
   ============================================ */
.choose-us {
    background: var(--white);
}

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

.choose-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--gray);
    border-radius: var(--border-radius-md);
    transition: all 0.4s ease;
}

.choose-card:hover {
    background: var(--white);
    box-shadow: none;
}

.choose-card .icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.choose-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.choose-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--cream) 0%, #FFE4B5 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: none;
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
}

.contact-item-text h4 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item-text p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: none;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #eee;
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-20px) rotate(3deg);
    }
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 56px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }

    .stat-divider {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .health-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dates-grid,
    .products-grid,
    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }

    .about-image-overlay {
        display: none;
    }

    .experience-badge {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .dates-grid,
    .products-grid,
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
        gap: 0;
    }

    .stat-item {
        flex: none;
        max-width: none;
        width: 100%;
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cursor {
        display: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .health-number {
        font-size: 36px;
        min-width: 55px;
    }

    .health-divider {
        margin-left: 85px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 12px;
    }

    .about-image-main,
    .health-image img {
        height: 400px;
    }

    .health-content h3 {
        font-size: 32px;
    }

    .health-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .health-number {
        font-size: 32px;
        min-width: auto;
    }

    .health-divider {
        margin-left: 0;
        width: 100%;
    }

    .stat-number {
        font-size: 42px;
    }

    .contact-form {
        padding: 30px;
    }
}
