/* ============================================
   BELLORA - Luxury Greenery Website
   Converted from React/TypeScript to Pure HTML/CSS/JS
   ============================================ */

:root {
    --olive-50: #f6f7f5;
    --olive-100: #eceee9;
    --olive-200: #d9dec7;
    --olive-300: #c2c9a6;
    --olive-400: #9ea97a;
    --olive-500: #7e8a5b;
    --olive-600: #626d47;
    --olive-700: #4c5439;
    --olive-800: #3f4531;
    --olive-900: #1a1c18;
    --gold: #6b8e23;
    --gold-light: #7ba02a;
    --gold-dark: #556b2f;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--olive-900);
    color: var(--olive-100);
    font-family: var(--font-sans);
    overflow-x: hidden;
    line-height: 1.6;
}

body.preloader-active {
    overflow: hidden;
}

/* ============================================
   PRELOADER
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--olive-900);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo-wrapper {
    position: relative;
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
    will-change: transform;
}

.preloader-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(107, 142, 35, 0.3));
    animation: logoPulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: rgba(107, 142, 35, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    animation: progressLoad 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(107, 142, 35, 0.5);
    will-change: width;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Preloader fade out animation */
.preloader.fade-out {
    animation: preloaderFadeOut 0.6s ease-out forwards;
}

@keyframes preloaderFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Preloader Responsive */
@media (max-width: 767px) {
    .preloader-logo {
        height: 60px;
        filter: drop-shadow(0 0 15px rgba(107, 142, 35, 0.2));
        animation: logoPulseMobile 2.5s ease-in-out infinite;
    }

    .preloader-logo-wrapper {
        margin-bottom: 30px;
        animation: logoFloatMobile 4s ease-in-out infinite;
    }

    .preloader-progress {
        width: 150px;
        height: 2px;
    }

    .preloader-progress-bar {
        animation: progressLoadMobile 1.5s ease-out forwards;
    }
}

@media (max-width: 480px) {
    .preloader-logo {
        height: 50px;
    }

    .preloader-logo-wrapper {
        margin-bottom: 24px;
    }

    .preloader-progress {
        width: 120px;
    }
}

/* Mobile optimized animations */
@keyframes logoFloatMobile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes logoPulseMobile {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.95;
    }
}

@keyframes progressLoadMobile {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

::selection {
    background: var(--gold);
    color: var(--olive-900);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--olive-900);
}

::-webkit-scrollbar-thumb {
    background: var(--olive-800);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 32px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 28, 24, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--olive-800);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 0.8;
}

.nav-menu-desktop {
    display: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--olive-100);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    color: var(--gold);
}

.btn-nav {
    padding: 8px 24px;
    background: var(--gold);
    color: var(--olive-900);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--gold-dark);
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 4px;
}

.menu-icon {
    stroke: currentColor;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--olive-900);
    z-index: 60;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    padding: 4px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    letter-spacing: 0.2em;
    color: var(--olive-100);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.btn-mobile-nav {
    margin-top: 16px;
    padding: 12px 40px;
    background: var(--gold);
    color: var(--olive-900);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-decoration: none;
}

@media (min-width: 768px) {
    .nav-menu-desktop {
        display: flex;
    }
    .nav-toggle {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.05);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--olive-900), rgba(26, 28, 24, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-text {
    max-width: 768px;
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
}

.hero-label {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 24px;
    font-weight: 500;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-family: var(--font-serif);
    line-height: 1;
    margin-bottom: 32px;
    color: var(--olive-100);
}

.hero-title-italic {
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--olive-200);
    font-weight: 300;
    max-width: 36rem;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--olive-900);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-icon {
    stroke: currentColor;
}

.btn-secondary {
    padding: 16px 40px;
    border: 1px solid rgba(236, 238, 233, 0.3);
    color: var(--olive-100);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 96px 0;
}

.section-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--olive-100);
}

.section-title-italic {
    font-style: italic;
    color: var(--gold);
}

.section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.section-heading-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-family: var(--font-serif);
    color: var(--olive-100);
    margin-bottom: 24px;
}

.section-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--olive-900);
    overflow: visible;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
    min-height: 800px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 1000px;
    }
}

.about-image-wrapper {
    position: relative;
    min-height: 800px;
    height: 100%;
}

@media (min-width: 768px) {
    .about-image-wrapper {
        min-height: 1000px;
    }
}

.about-image-bg {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background: rgba(63, 69, 49, 0.3);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    filter: grayscale(30%);
    transition: filter 0.7s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}

.about-quote {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    padding: 32px;
    display: none;
    z-index: 20;
}

@media (min-width: 768px) {
    .about-quote {
        display: block;
    }
}

.quote-icon {
    color: var(--olive-900);
    margin-bottom: 8px;
}

.quote-text {
    color: var(--olive-900);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    max-width: 200px;
    font-weight: 500;
}

.about-text-wrapper {
    animation: fadeInRight 0.8s ease-out;
    position: sticky;
    top: 200px;
    align-self: start;
}

.about-text p {
    color: var(--olive-200);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 24px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   OFFERS SECTION
   ============================================ */

.offers-section {
    background: #141613;
}

.offers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.offer-card {
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.offer-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 2px;
    aspect-ratio: 10 / 24;
}

@media (max-width: 767px) {
    .offer-image-wrapper {
        overflow: visible !important;
        margin-bottom: 0;
    }
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    display: block;
}

.offer-card:hover .offer-image {
    transform: scale(1.1);
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 28, 24, 0.2);
    transition: background 0.5s ease;
    opacity: 0;
}

.offer-card:hover .offer-overlay {
    opacity: 1;
    background: rgba(26, 28, 24, 0.1);
}

.offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 28, 24, 0.95);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.offer-card:hover .offer-content {
    transform: translateY(0);
    opacity: 1;
}

/* Mobile - always show offer-content */
@media (max-width: 767px) {
    .offer-content {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        background: rgba(26, 28, 24, 0.98) !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        border-radius: 0 0 2px 2px;
        display: flex !important;
        visibility: visible !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        padding: 16px 20px !important;
    }
    
    .offer-card:hover .offer-content {
        transform: none !important;
        opacity: 1 !important;
    }
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.offer-icon {
    color: var(--gold);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.offer-title {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
}

.offer-description {
    color: var(--olive-200);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    margin-top: 8px;
}

/* ============================================
   WHY SECTION
   ============================================ */

.why-section {
    background: var(--olive-900);
}

.why-wrapper {
    background: #1f221c;
    padding: 48px 24px;
    position: relative;
    overflow: visible;
}

@media (min-width: 768px) {
    .why-wrapper {
        padding: 96px 48px;
    }
}

.why-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(26, 28, 24, 0.8) 0%, rgba(26, 28, 24, 0.4) 100%);
}

.why-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
    min-height: 800px;
}

@media (min-width: 768px) {
    .why-content {
        grid-template-columns: 1fr 1fr;
        min-height: 1000px;
    }
}

.why-text {
    position: sticky;
    top: 200px;
    align-self: start;
}

.why-description {
    color: var(--olive-200);
    font-weight: 300;
    margin-bottom: 48px;
    font-size: 1.125rem;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInLeft 0.6s ease-out;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(107, 142, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--gold);
}

.feature-text {
    color: var(--olive-100);
    font-size: 0.875rem;
    font-weight: 300;
}

.why-image-wrapper {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
    min-height: 800px;
    height: 100%;
}

@media (min-width: 768px) {
    .why-image-wrapper {
        min-height: 1000px;
    }
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    transition: transform 0.7s ease;
}

.why-image-wrapper:hover .why-image {
    transform: scale(1.02);
}

.why-image-border {
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(107, 142, 35, 0.3);
    border-radius: 2px;
    z-index: -10;
    transition: all 0.7s ease;
}

.why-image-wrapper:hover .why-image-border {
    inset: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   AESTHETICS SECTION
   ============================================ */

.aesthetics-section {
    background: var(--olive-900);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.aesthetics-content {
    text-align: center;
    max-width: 1024px;
    margin: 0 auto;
    animation: fadeInScale 1s ease-out;
}

.aesthetics-label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.875rem;
    letter-spacing: 0.4em;
    margin-bottom: 32px;
}

.aesthetics-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-family: var(--font-serif);
    line-height: 1.1;
    margin-bottom: 64px;
    color: var(--olive-100);
}

.aesthetics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
}

@media (min-width: 768px) {
    .aesthetics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aesthetics-card {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.aesthetics-card:hover {
    border-color: rgba(107, 142, 35, 0.3);
}

.aesthetics-card-title {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.aesthetics-card-text {
    color: var(--olive-200);
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: 300;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: #141613;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-description {
    color: var(--olive-200);
    margin-bottom: 48px;
    max-width: 28rem;
    font-weight: 300;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--olive-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.5s ease;
}

.contact-detail-item:hover .contact-icon-wrapper {
    background: var(--gold);
    color: var(--olive-900);
}

.contact-icon {
    stroke: currentColor;
}

.contact-detail-label {
    color: var(--olive-300);
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1.125rem;
    color: var(--olive-100);
    font-family: var(--font-sans);
}

.contact-social {
    display: flex;
    gap: 16px;
    padding-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-300);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.contact-form-wrapper {
    background: var(--olive-900);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: fit-content;
}
#formFields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 48px;
    }
}

.form-success {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    animation: fadeInScale 0.5s ease-out;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(107, 142, 35, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}

.success-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: white;
    margin-bottom: 16px;
}

.success-text {
    color: var(--olive-200);
}

.success-reset {
    margin-top: 32px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    font-weight: 700;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.success-reset:hover {
    color: var(--gold-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: var(--olive-300);
    text-transform: uppercase;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #141613;
    border: none;
    color: var(--olive-100);
    padding: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 0 0 1px var(--gold);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    padding: 20px;
    color: var(--olive-900);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-submit:hover {
    background: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--olive-900);
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 24px;
    opacity: 0.9;
}

.footer-description {
    color: var(--olive-200);
    font-weight: 300;
    max-width: 24rem;
    line-height: 1.75;
    font-size: 0.875rem;
}

.footer-heading {
    color: white;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-list li,
.footer-list a {
    color: var(--olive-300);
    font-size: 0.875rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    color: var(--olive-400);
    font-size: 0.75rem;
    font-weight: 300;
    text-align: center;
    width: 100%;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--olive-400);
    font-size: 0.75rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================
   MOBILE CTA BUTTON
   ============================================ */

.mobile-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
    display: block;
}

@media (min-width: 768px) {
    .mobile-cta {
        display: none;
    }
}

.mobile-cta-button {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--olive-900);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */

.fade-in {
    animation: fadeInUp 1s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Intersection Observer animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ============================================ */

/* Mobile First - Base styles are mobile */

/* Tablet and up (768px+) */
@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }

    .navbar {
        padding: 24px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .brand-logo {
        height: 45px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .about-text-wrapper {
        top: 120px;
    }

    .why-text {
        top: 120px;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .brand-logo {
        height: 50px;
    }
}

/* Mobile specific (max-width: 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 12px 0;
    }

    .brand-logo {
        height: 32px;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-label {
        font-size: 0.625rem;
        letter-spacing: 0.3em;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        gap: 16px;
        padding: 0 10px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 0.7rem;
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-label {
        font-size: 0.65rem;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 24px;
    }

    .section-heading-title {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
    }

    /* About Section Mobile */
    .about-grid {
        gap: 40px;
        min-height: auto;
    }

    .about-image-wrapper {
        min-height: 400px;
    }

    .about-text-wrapper {
        position: static;
        top: auto;
    }

    .about-quote {
        display: none;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .philosophy-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .philosophy-text {
        font-size: 1.1rem;
    }

    /* Offers Section Mobile */
    .offers-container {
        padding: 0 16px;
    }

    .offers-grid {
        gap: 24px;
    }

    .offer-image-wrapper {
        margin-bottom: 0 !important;
        overflow: visible !important;
        position: relative;
    }

    .offer-image {
        border-radius: 2px 2px 0 0;
    }

    .offer-content {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        background: rgba(26, 28, 24, 0.98) !important;
        margin-top: 0 !important;
        padding: 16px 20px !important;
        border-radius: 0 0 2px 2px;
        display: flex !important;
        visibility: visible !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
    }
    
    .offer-card:hover .offer-content {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .offer-title {
        font-size: 1rem;
    }

    .offer-description {
        font-size: 0.8rem;
    }

    /* Why Section Mobile */
    .why-wrapper {
        padding: 32px 16px;
    }

    .why-content {
        gap: 40px;
        min-height: auto;
    }

    .why-text {
        position: static;
        top: auto;
    }

    .why-image-wrapper {
        min-height: 400px;
    }

    .why-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .features-grid {
        gap: 16px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-text {
        font-size: 0.8rem;
    }

    /* Aesthetics Section Mobile */
    .aesthetics-content {
        padding: 0 10px;
    }

    .aesthetics-label {
        font-size: 0.7rem;
        margin-bottom: 24px;
    }

    .aesthetics-title {
        font-size: clamp(1.5rem, 7vw, 2.25rem);
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .aesthetics-grid {
        gap: 24px;
        margin-top: 40px;
    }

    .aesthetics-card {
        padding: 24px;
    }

    .aesthetics-card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .aesthetics-card-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Contact Section Mobile */
    .contact-grid {
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .contact-details {
        gap: 24px;
    }

    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .contact-icon-wrapper {
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .form-row {
        gap: 16px;
    }

    .form-input,
    .form-textarea {
        padding: 14px;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 16px;
        font-size: 0.7rem;
    }

    /* Footer Mobile */
    .footer {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .footer-grid {
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-logo {
        height: 40px;
        margin: 0 auto 20px;
    }

    .footer-description {
        max-width: 100%;
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

/* Tablet specific (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 24px;
    }

    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-grid {
        min-height: 800px;
    }

    .about-image-wrapper {
        min-height: 700px;
    }

    .why-content {
        min-height: 800px;
    }

    .why-image-wrapper {
        min-height: 700px;
    }

    .aesthetics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .contact-social{
        justify-content: center;
    }
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 12vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.65rem;
    }

    .offer-content {
        padding: 12px 16px !important;
        position: relative !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        display: flex !important;
        visibility: visible !important;
    }

    .offer-title {
        font-size: 0.9rem;
    }

    .offer-description {
        font-size: 0.75rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .section-divider {
        width: 60px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .offer-content {
        position: relative !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        display: flex !important;
        visibility: visible !important;
    }
    
    .offer-card:hover .offer-content {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .offer-card:active .offer-content {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.98);
    }

    .nav-link:active {
        color: var(--gold);
    }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: 100vh;
    }

    .hero-content {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .section {
        padding: 40px 0;
    }
}
