/* ========================================
   HẰNG NGA FLOWER — Premium Rose Website
   Design: Rose gold, burgundy, cream
   Target: Elegant, feminine, luxury
   ======================================== */

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --rose-gold: #B76E79;
    --rose-gold-light: #D4A0A7;
    --rose-gold-dark: #8B4F57;
    --burgundy: #722F37;
    --burgundy-deep: #4A1C23;
    --cream: #FFF8F0;
    --cream-dark: #F5EDE4;
    --blush: #F5E6E0;
    --blush-light: #FAF0ED;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --text-dark: #2D1F21;
    --text-medium: #5A4347;
    --text-light: #8B7478;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(114, 47, 55, 0.08);
    --shadow-md: 0 8px 30px rgba(114, 47, 55, 0.12);
    --shadow-lg: 0 20px 60px rgba(114, 47, 55, 0.15);
    --shadow-xl: 0 30px 80px rgba(114, 47, 55, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lora', 'Georgia', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-tag {
    display: inline-block;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose-gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
    color: var(--burgundy-deep);
}

.section-title em {
    color: var(--rose-gold);
    font-style: italic;
}

.section-desc {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, var(--rose-gold), var(--burgundy));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(183, 110, 121, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(183, 110, 121, 0.6);
}

.btn--outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--burgundy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(183, 110, 121, 0.3));
    animation: floatSoft 3s ease-in-out infinite;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--burgundy-deep);
    letter-spacing: 1px;
}

.header.scrolled .logo-text,
.logo-text {
    color: var(--burgundy-deep);
}

.logo-text em {
    font-style: italic;
    color: var(--rose-gold);
    font-weight: 400;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.header:not(.scrolled) .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header__cta {
    padding: 10px 24px;
    font-size: 13px;
}

.header:not(.scrolled) .header__cta {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.header:not(.scrolled) .hamburger span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(74, 28, 35, 0.85) 0%,
            rgba(114, 47, 55, 0.7) 40%,
            rgba(183, 110, 121, 0.5) 100%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 700px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(40px, 7vw, 72px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero__title--accent {
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--rose-gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-size: 0.65em;
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat__number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-top: 4px;
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    right: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--rose-gold-light);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatSoft 4s ease-in-out infinite;
}

.float-card__icon {
    font-size: 32px;
}

.float-card__text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--burgundy);
}

.about__content .section-title {
    text-align: left;
}

.about__text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about__features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 12px;
    color: var(--rose-gold);
}

.feature h4 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== COLLECTION ===== */
.collection {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush-light) 100%);
}

/* Filter buttons */
.collection__filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--rose-gold-light);
    border-radius: 50px;
    background: transparent;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--rose-gold);
    color: var(--rose-gold);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--rose-gold), var(--burgundy));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
}

.collection__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

/* Origin tag */
.flower-card__origin {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--rose-gold);
    background: var(--blush-light);
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.flower-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.08);
}

.flower-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.flower-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.flower-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.flower-card:hover .flower-card__image img {
    transform: scale(1.08);
}

.flower-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 28, 35, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: var(--transition);
}

.flower-card:hover .flower-card__overlay {
    opacity: 1;
}

.flower-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--rose-gold), var(--burgundy));
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.flower-card__info {
    padding: 24px;
}

.flower-card__name {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--burgundy-deep);
}

.flower-card__desc {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.flower-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--blush);
}

.detail {
    font-size: 13px;
    color: var(--text-light);
    background: var(--blush-light);
    padding: 4px 12px;
    border-radius: 20px;
}

.detail strong {
    color: var(--rose-gold-dark);
}

.flower-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--blush);
}

.flower-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--burgundy);
}

.flower-card__price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
}

.flower-card__order {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--rose-gold);
    padding: 8px 20px;
    border: 1.5px solid var(--rose-gold);
    border-radius: 50px;
    transition: var(--transition);
}

.flower-card__order:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.collection__cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.collection__cta p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 40px 32px;
    background: var(--blush-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--gold), var(--rose-gold));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    border-color: var(--blush);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blush), var(--cream));
    border-radius: 50%;
    color: var(--rose-gold);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--rose-gold), var(--burgundy));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--burgundy-deep);
}

.service-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-card__tag {
    display: inline-block;
    padding: 4px 16px;
    background: var(--blush);
    color: var(--rose-gold-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '❀';
    position: absolute;
    top: -60px;
    right: -40px;
    font-size: 300px;
    opacity: 0.05;
    color: var(--white);
}

.testimonials .section-tag {
    color: var(--gold-light);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title em {
    color: var(--gold-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-gold), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card__author strong {
    display: block;
    color: var(--white);
    font-size: 15px;
}

.testimonial-card__author span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 40px 0;
    background: var(--cream);
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 72px;
    background: linear-gradient(135deg, var(--rose-gold), var(--burgundy));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-banner__inner::before {
    content: '✿';
    position: absolute;
    right: 120px;
    top: -20px;
    font-size: 200px;
    opacity: 0.1;
    color: var(--white);
}

.cta-banner__content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner__content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--blush-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--blush);
}

.contact-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 50%;
    color: var(--rose-gold);
}

.contact-card h4 {
    font-family: 'Lora', serif;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--burgundy-deep);
}

.contact-card p {
    font-size: 15px;
    color: var(--text-medium);
}

.contact-card a {
    color: var(--rose-gold);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--burgundy);
}

.contact__map {
    background: linear-gradient(135deg, var(--blush-light), var(--cream));
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 2px dashed var(--rose-gold-light);
}

.contact__map-overlay h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--burgundy-deep);
}

.contact__map-overlay p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--burgundy-deep);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .header__logo {
    margin-bottom: 16px;
}

.footer__brand .logo-text {
    color: var(--white);
}

.footer__brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--rose-gold);
    transform: translateY(-3px);
}

.footer__links h4 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a,
.footer__links li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--rose-gold-light);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-top: 0;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== FAB (Floating Action Button) ===== */
.fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0084ff, #00c6ff);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    animation: fabPulse 2s ease-in-out infinite;
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 132, 255, 0.6);
}

.fab__text {
    font-family: 'Lora', serif;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 998;
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 2px solid var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--rose-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--rose-gold);
    color: var(--white);
    border-color: var(--rose-gold);
    transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
@keyframes heroZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(0, 132, 255, 0.7), 0 0 0 12px rgba(0, 132, 255, 0.1);
    }
}

/* Scroll reveal animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about__grid {
        gap: 48px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 48px 32px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(74, 28, 35, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .header__nav.active {
        opacity: 1;
        visibility: visible;
    }

    .header__nav .nav-link {
        color: var(--white) !important;
        font-size: 20px;
    }

    .hamburger {
        display: flex;
    }

    .header__cta {
        display: none;
    }

    .hero__content {
        padding: 100px 0 60px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat__divider {
        width: 40px;
        height: 1px;
    }

    .hero__scroll {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image img {
        height: 350px;
    }

    .about__image-accent {
        display: none;
    }

    .collection__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .fab {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 36px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .flower-card__footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .section-title {
        font-size: 28px;
    }

    .collection__cta {
        padding: 32px 20px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }
}