/* === PREMIUM OLYRA TEMPLATE === */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* === CSS VARIABLES === */
:root {
    /* Primary Colors */
    --primary-purple: #6b46c1;
    --light-purple: #a855f7;
    --dark-purple: #4c1d95;
    --navy: #0f172a;

    /* Accent Colors */
    --gold: #f59e0b;
    --silver: #e5e7eb;
    --platinum: #f8fafc;

    /* Neutrals */
    --white: #ffffff;
    --light-gray: #f1f5f9;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6b46c1 0%, #a855f7 100%);
    --gradient-luxury: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #6b46c1 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-luxury: 0 20px 60px rgba(107, 70, 193, 0.15);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === PRELOADER === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.water-wave {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(96, 165, 250, 0.3);
    border-top: 3px solid #a855f7;
    border-radius: 50%;
    animation: wave-spin 1.5s linear infinite;
    margin: 0 auto 2rem;
}

.loading-text {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.8;
    text-transform: uppercase;
}

@keyframes wave-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    line-height: 1;
}

.navbar.scrolled .brand-name {
    color: var(--navy);
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-link {
    color: var(--dark-gray);
}

.nav-link.active,
.nav-link:hover {
    color: #a855f7;
}

.navbar.scrolled .nav-link.active,
.navbar.scrolled .nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-premium {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-medium);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
    background: var(--navy);
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.mountain-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 50%, #a855f7 100%);
}

.water-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.3) 0%, rgba(107, 70, 193, 0.6) 100%);
    animation: water-flow 8s ease-in-out infinite;
}

.clouds-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 800px 400px at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 600px 300px at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 400px 200px at 60% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: clouds-drift 20s ease-in-out infinite;
}

@keyframes water-flow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes clouds-drift {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(30px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.badge-separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-family: var(--font-serif);
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    line-height: 1.1;
}

.title-line:first-child {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.title-line.main {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line:last-child {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #a855f7;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-luxury);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* === BOTTLE SHOWCASE === */
.bottle-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bottle-container {
    position: relative;
    width: 400px;
    height: 600px;
}

.bottle-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    filter: blur(20px);
}

.bottle-main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 500px;
    animation: bottle-float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(107, 70, 193, 0.3));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottle-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse, rgba(107, 70, 193, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow 4s ease-in-out infinite;
    z-index: -1;
}

.bottle-cap {
    position: relative;
    width: 60px;
    height: 40px;
    margin: 0 auto;
    margin-bottom: -5px;
    z-index: 3;
}

.cap-top {
    width: 60px;
    height: 25px;
    background: linear-gradient(145deg, #e5e7eb 0%, #9ca3af 100%);
    border-radius: 8px 8px 15px 15px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

.cap-ring {
    width: 65px;
    height: 20px;
    background: linear-gradient(145deg, #d1d5db 0%, #6b7280 100%);
    border-radius: 10px;
    margin: -5px auto 0;
    position: relative;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bottle-neck {
    width: 50px;
    height: 80px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(96, 165, 250, 0.1) 30%,
        rgba(37, 99, 235, 0.2) 100%);
    margin: 0 auto;
    border-radius: 0 0 15px 15px;
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 5px 15px rgba(255, 255, 255, 0.8),
        inset 0 -5px 15px rgba(37, 99, 235, 0.1);
}

.bottle-body {
    width: 180px;
    height: 400px;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 20%,
        rgba(96, 165, 250, 0.1) 50%,
        rgba(37, 99, 235, 0.2) 100%);
    border-radius: 25px 25px 35px 35px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(37, 99, 235, 0.2),
        inset 0 5px 20px rgba(255, 255, 255, 0.9),
        inset 0 -5px 20px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(20px);
}

.label-premium {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.label-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    letter-spacing: 4px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.label-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 8px auto;
    border-radius: 1px;
}

.label-text {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.water-content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    height: 280px;
    background: linear-gradient(180deg,
        rgba(96, 165, 250, 0.6) 0%,
        rgba(37, 99, 235, 0.7) 50%,
        rgba(29, 78, 216, 0.8) 100%);
    border-radius: 20px;
    overflow: hidden;
    animation: water-level 4s ease-in-out infinite;
}

.water-surface {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px 20px 0 0;
    animation: water-ripple 3s ease-in-out infinite;
}

.water-bubbles {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: bubble-rise 4s ease-in-out infinite;
}

.water-bubbles::before,
.water-bubbles::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubble-rise 4s ease-in-out infinite;
}

.water-bubbles::before {
    top: 40px;
    left: 30px;
    animation-delay: 1s;
}

.water-bubbles::after {
    top: 80px;
    right: 20px;
    animation-delay: 2s;
}

.bottle-light {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 30px;
    height: 60%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    border-radius: 15px;
    animation: light-shimmer 5s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.element {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.8) 0%, rgba(37, 99, 235, 0.4) 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.element-1 {
    top: 20%;
    left: 15%;
    animation: float-1 8s ease-in-out infinite;
}

.element-2 {
    top: 60%;
    right: 20%;
    animation: float-2 10s ease-in-out infinite;
}

.element-3 {
    bottom: 30%;
    left: 30%;
    animation: float-3 6s ease-in-out infinite;
}

@keyframes bottle-float {
    0%, 100% { transform: translate(-50%, -50%) rotateY(0deg); }
    50% { transform: translate(-50%, -55%) rotateY(5deg); }
}

@keyframes water-level {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.98); }
}

@keyframes water-ripple {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(0.95); }
}

@keyframes bubble-rise {
    0% { opacity: 0; transform: translateY(0px) scale(0.5); }
    20% { opacity: 1; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.8; transform: translateY(-60px) scale(0.8); }
    100% { opacity: 0; transform: translateY(-100px) scale(0.3); }
}

@keyframes light-shimmer {
    0%, 100% { opacity: 0.4; transform: translateX(0px); }
    50% { opacity: 0.8; transform: translateX(10px); }
}

@keyframes float-1 {
    0%, 100% { transform: translate(0px, 0px) scale(1); opacity: 0.6; }
    33% { transform: translate(30px, -40px) scale(1.2); opacity: 1; }
    66% { transform: translate(-20px, -20px) scale(0.8); opacity: 0.8; }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0px, 0px) scale(1); opacity: 0.5; }
    50% { transform: translate(-40px, 30px) scale(1.1); opacity: 0.9; }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0px, 0px) scale(1); opacity: 0.7; }
    25% { transform: translate(20px, -30px) scale(0.9); opacity: 1; }
    75% { transform: translate(-30px, 10px) scale(1.1); opacity: 0.6; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* === SECTION STYLES === */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-glass);
    border: 1px solid var(--silver);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === STORY SECTION === */
.story-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-purple);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--primary-purple);
    z-index: 2;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 3;
    box-shadow: var(--shadow-medium);
}

.timeline-content {
    width: 40%;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60%;
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* === COLLECTION SECTION === */
.collection-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.product-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-luxury);
    border: 2px solid var(--gold);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 0 0 15px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-luxury);
}

.product-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.bottle-3d {
    position: relative;
    width: 120px;
    height: 200px;
    transition: transform 0.4s ease;
}

.product-card:hover .bottle-3d {
    transform: rotateY(15deg) scale(1.1);
}

.bottle-product-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 15px 35px rgba(107, 70, 193, 0.2));
}

.bottle-product-image.premium {
    filter: drop-shadow(0 15px 35px rgba(245, 158, 11, 0.3));
}

.bottle-product-image.family {
    filter: drop-shadow(0 15px 35px rgba(34, 197, 94, 0.2));
}

.product-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse, rgba(107, 70, 193, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: product-glow 4s ease-in-out infinite;
    z-index: -1;
}

.premium-glow {
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
}

@keyframes product-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-size {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.btn-select {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* === PURITY SECTION === */
.purity-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
}

.purity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.purity-left {
    max-width: 500px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.purity-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
}

.metric-value {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
}

.cert-item i {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.cert-item span {
    font-weight: 500;
    color: var(--navy);
}

.lab-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.lab-container {
    position: relative;
    width: 400px;
    height: 400px;
    background: linear-gradient(145deg, var(--white) 0%, var(--platinum) 100%);
    border-radius: 25px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-tube {
    width: 60px;
    height: 200px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(229, 231, 235, 0.5) 100%);
    border-radius: 10px 10px 25px 25px;
    position: relative;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tube-liquid {
    position: absolute;
    bottom: 10px;
    left: 8px;
    right: 8px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 0 0 20px 20px;
    animation: liquid-bubble 3s ease-in-out infinite;
}

.tube-bubbles {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: lab-bubbles 2s ease-in-out infinite;
}

@keyframes liquid-bubble {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.95); }
}

@keyframes lab-bubbles {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0px); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-20px); }
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.data-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-purple);
    animation: data-pulse 3s ease-in-out infinite;
}

.point {
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
}

@keyframes data-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === SUSTAINABILITY SECTION === */
.sustainability-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sustain-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sustain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sustain-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.sustain-card:hover::before {
    transform: scaleX(1);
}

.sustain-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.sustain-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sustain-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.progress-bar {
    height: 8px;
    background: var(--silver);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progress-shimmer 2s ease-in-out infinite;
}

@keyframes progress-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--gray);
    line-height: 1.6;
}

.social-media {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--silver);
}

.social-media h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.premium-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--silver);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--silver);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-luxury);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.3);
}

/* === CONTACT CTA STYLES === */
.contact-cta {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--silver);
}

.cta-content {
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.cta-content h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.feature-item i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section Layout */
.contact-left {
    padding: 2rem;
}

/* === FOOTER === */
.premium-footer {
    background: var(--gradient-luxury);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo .logo-icon {
    background: var(--gradient-primary);
}

.footer-logo .brand-name {
    color: white;
    font-size: 2rem;
}

.footer-logo .brand-tagline {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.link-group a:hover {
    color: #a855f7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #a855f7;
}

/* === RESPONSIVE DESIGN === */

/* Tablet and Mobile */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* Mobile Only */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 0 0 1.5rem 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        color: #1f2937 !important;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
        display: block;
    }

    .nav-link:hover {
        color: #2563eb !important;
        background: rgba(37, 99, 235, 0.05);
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #2563eb;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .navbar.scrolled .menu-toggle span {
        background: #1f2937;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        min-height: 100vh;
        background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 50%, #a855f7 100%) !important;
        position: relative;
    }

    .hero-background {
        display: block !important;
        opacity: 1 !important;
    }

    .mountain-layer {
        background: linear-gradient(135deg, #4c1d95 0%, #6b46c1 50%, #a855f7 100%) !important;
        opacity: 1 !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        color: white !important;
        z-index: 10;
        position: relative;
    }

    .hero-left {
        color: white !important;
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .title-line.main {
        font-size: 3rem;
        background: linear-gradient(45deg, #ffffff 0%, #a855f7 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .title-line {
        color: white !important;
    }

    .hero-description {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-direction: column;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 1rem;
        color: white;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .bottle-container {
        width: 300px;
        height: 400px;
    }

    .bottle-main {
        width: 140px;
        height: 350px;
    }

    .scroll-indicator {
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 80% !important;
        margin: 0 !important;
    }

    .story-timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: 20px !important;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        justify-items: center;
        text-align: center;
    }

    .contact-left {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        padding: 0;
    }

    .contact-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-cta {
        order: -1;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        justify-content: center;
        text-align: center;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 300px;
    }

    .contact-cta {
        padding: 2rem;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        max-width: 100%;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
        align-items: center;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-description {
        text-align: center;
        margin: 0 auto 2rem;
        max-width: 400px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-cta {
        padding: 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}