
/* ============================================
   CSS VARIABLES & GLOBAL STYLES
   ============================================ */
:root {
    /* Colors */
    --primary: #c04e4e;
    --primary-dark: #8a3636;
    --primary-light: #d67676;
    --bg-light: #fffaf7;
    --bg-dark: #121212;
    --bg-card: #ffffff;
    --bg-secondary: #fdf1ea;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --border-color: #e5e5e5;
    --soft-green: #5c735b;
    
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 2.5rem;    /* 40px */
    --spacing-2xl: 2rem;     /* 32px */
    --spacing-3xl: 4rem;     /* 64px */
    
    /* Border Radius */
    --radius: 8px;
    --radius-large: 16px;
    
    /* Shadows */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Card Hover - Unified */
    --card-hover-lift: -4px;
}

.dark {
    --bg-card: #18181b;
    --bg-secondary: #27272a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: #3f3f46;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 0.875rem; /* 14px mobile base */
    color: var(--text-primary);
    background: var(--bg-light);
}

.dark body {
    background: var(--bg-dark);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Mobile First (320px+) */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;           /* 32px */
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.2;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;         /* 24px */
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.3;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;       /* 14px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    line-height: 1.4;
}

h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;           /* 16px */
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    line-height: 1.4;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;       /* 14px */
    line-height: 1.6;
    color: var(--text-secondary);
}

section.perfect-spot {
    padding: 3% 13%;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
    max-width: 1200px!important;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f3f4f6;
    transition: var(--transition);
}

.dark .navbar {
    background: rgba(24, 24, 27, 0.9);
    border-bottom-color: #27272a;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.dark .navbar.scrolled {
    background: rgba(24, 24, 27, 0.98);
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.navbar-links {
    display: none;
}

.navbar-links .nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    padding-bottom: 4px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-links .nav-link:hover,
.navbar-links .nav-link.active {
    color: var(--primary);
}

.navbar-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar-links .nav-link:hover::after,
.navbar-links .nav-link.active::after {
    width: 100%;
}

.dark .navbar-links .nav-link {
    color: #ffffff;
}

.dark .navbar-links .nav-link:hover,
.dark .navbar-links .nav-link.active {
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-button {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-button:hover {
    color: var(--primary);
    transform: scale(1.05);
}

.cart-button i {
    font-size: 1.1rem;
}

#cartBtn {
    position: relative;
    cursor: pointer;
    pointer-events: auto !important;
    z-index: 10;
}

.cart-count,
#cartCount {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#cartCount.hidden {
    display: none !important;
}

.language-switcher {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 6px;
}

.dark .language-switcher {
    background: #27272a;
}

.lang-btn {
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    color: #666;
}

.dark .lang-btn {
    color: #a1a1aa;
}

.lang-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dark .lang-btn.active {
    background: #18181b;
}

.theme-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f3f4f6;
    transition: var(--transition);
}

.dark .theme-toggle {
    background: #27272a;
}

.theme-toggle:hover {
    background: var(--primary);
    color: white;
}

.theme-toggle i {
    font-size: 16px;
}

.btn-book {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-block;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 78, 78, 0.3);
}

.mobile-menu-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 100;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: var(--transition);
}

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

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

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

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-content {
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    background: white;
    border-top: 1px solid #f3f4f6;
}

.dark .mobile-menu-content {
    background: #18181b;
    border-top-color: #27272a;
}

.mobile-nav-link {
    display: block;
    transition: color 0.3s ease;
    font-size: 14px;
    padding: 8px 0;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

/* ============================================
   HERO SECTION - FIXED MOBILE SIZING
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 var(--spacing-sm);
    max-width: 56rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Hero Typography - Improved */
.hero-welcome {
    font-family: 'Great Vibes', cursive;
    color: white;
    font-size: 1.5rem;        /* 24px - better for mobile */
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 2.25rem;       /* 36px - better for mobile */
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;       /* 12px - readable on mobile */
    margin-bottom: var(--spacing-lg);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.15em;   /* Reduced for mobile */
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.75rem 1.5rem;  /* Smaller on mobile */
    font-size: 0.625rem;      /* 10px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}

.hero-btn-primary {
    background: white;
    color: #111827;
}

.hero-btn-primary:hover {
    background: var(--primary);
    color: white;
}

.hero-btn-secondary {
    border: 2px solid white;
    color: white;
}

.hero-btn-secondary:hover {
    background: white;
    color: #111827;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
    background: white;
    overflow: hidden;
}

.dark .about-section {
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    height: 350px;            /* Adjusted for mobile */
}

.about-image-main {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-secondary {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    align-self: end;
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image-secondary:hover img {
    transform: scale(1.05);
}

.about-experience {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    text-align: center;
    min-width: 100px;
}

.dark .about-experience {
    background: var(--bg-card);
}

.experience-number {
    font-size: 28px;          /* Adjusted for mobile */
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.experience-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.about-text {
    padding-left: 0;
    text-align: center;
}

.about-text .section-label {
    text-align: center;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.about-text .section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;      /* Adjusted for mobile */
    line-height: 1.2;
}

.about-description {
    font-size: 0.875rem;     /* 14px */
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.dark .feature-icon {
    background: var(--bg-card);
}

.feature-icon i {
    color: var(--primary);
    font-size: 18px;
}

.feature-content h3 {
    font-size: 0.8125rem;    /* 13px */
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 0.75rem;      /* 12px */
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 140px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 78, 78, 0.3);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
    background: white;
    text-align: center;
}

.dark .services-section {
    background: #09090b;
}

.section-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;     /* 18px */
    font-style: italic;
    color: var(--primary);
    display: block;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;       /* Consistent */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-sm);
}

.services-grid {
    max-width: 60rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
}

.service-card:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--shadow-strong);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: var(--spacing-sm);
    text-align: center;
}

.service-description {
    color: #6b7280;
    font-size: 0.75rem;      /* 12px */
    line-height: 1.625;
}

.dark .service-description {
    color: #9ca3af;
}

/* ============================================
   BLOOM BANNER
   ============================================ */
.bloom-banner {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-lg) var(--spacing-sm);
}

.bloom-background {
    position: absolute;
    inset: 0;
}

.bloom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.bloom-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 var(--spacing-sm);
}

.bloom-btn {
    background: var(--primary);
    color: white;
    padding: 0.75rem 2rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    border-radius: 6px;
    display: inline-block;
    margin-top: var(--spacing-sm);
    min-width: 140px;
}

.bloom-btn:hover {
    background: white;
    color: var(--primary);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
    background: white;
    text-align: center;
}

.dark .gallery-section {
    background: #09090b;
}

.gallery-container {
    max-width: 80rem;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    padding: 0 40px;
}

.slider-container {
    overflow: hidden;
    border-radius: var(--radius);
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
    min-width: calc(100% - 0.5rem);
    margin: 0 0.25rem;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-sm);
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    font-weight: bold;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.dark .slider-btn {
    background: #27272a;
    color: white;
}

.slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.slider-prev {
    left: 0;
}

.slider-btn.slider-next {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.dark .slider-dot {
    background: #3f3f46;
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   ARRANGEMENTS SECTION
   ============================================ */
.arrangements {
    background: var(--bg-secondary);
    padding: var(--spacing-2xl) var(--spacing-sm);
    text-align: center;
}

.products {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.product-card {
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(var(--card-hover-lift));
}

.product-card img {
    width: 80%;
    height: 200px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: var(--radius);
}

.product-card h3 {
    margin-top: var(--spacing-sm);
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
    text-align: center;
    background: white;
}

.dark .pricing-section {
    background: var(--bg-dark);
}

.pricing-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-slider-container {
    overflow: hidden;
    padding: 0 40px;
}

.pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--spacing-sm);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow);
}

.dark .pricing-slider-btn {
    background: #27272a;
    color: white;
}

.pricing-slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.pricing-slider-btn.pricing-prev {
    left: 0;
}

.pricing-slider-btn.pricing-next {
    right: 0;
}

.pricing-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.pricing-card {
    flex: 0 0 100%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    min-height: 320px;
}

.pricing-card:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--shadow-strong);
}

.pricing-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.dark .price-box {
    background: rgba(24, 24, 27, 0.95);
}

.price-box h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary);
}

.price-box p {
    margin: 0;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dark .price-box p {
    color: #a1a1aa;
}

.pricing-content {
    padding: var(--spacing-sm);
}

.pricing-content p {
    font-size: 0.75rem;      /* 12px */
    color: var(--text-secondary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.btn {
    margin-top: var(--spacing-sm);
    padding: 0.5rem 1rem;
    border: 2px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-block;
    min-width: 100px;
}

.btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   PERFECT SPOT SECTION
   ============================================ */
.perfect-spot {
    background: var(--bg-secondary);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-2xl) var(--spacing-sm);
    text-align: center;
}

.perfect-spot .content p {
    font-size: 0.875rem;     /* 14px */
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.perfect-spot .image {
    display: flex;
    justify-content: center;
}

.perfect-spot .image img {
    width: 100%;
    max-width: 320px;        
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-strong);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
    background: var(--bg-light);
    text-align: center;
}

.dark .testimonials-section {
    background: var(--bg-dark);
}

.section-description {
    font-size: 0.875rem;     /* 14px */
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
    background: var(--bg-card);
    padding: var(--spacing-md);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-strong);
}

.testimonial.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    text-align: center;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: var(--spacing-sm);
    font-size: 16px;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial p {
    font-size: 0.875rem;     /* 14px */
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    position: relative;
}

.testimonial p::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.2;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-author h3 {
    font-size: 0.875rem;     /* 14px */
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.75rem;      /* 12px */
    color: var(--text-secondary);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.testimonial-prev,
.testimonial-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-secondary);
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   LOCATION & MAP SECTION - FIXED MOBILE
   ============================================ */
.location-map {
    padding: var(--spacing-2xl) var(--spacing-sm);
    background: white;
}

.dark .location-map {
    background: var(--bg-dark);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.location-info {
    text-align: center;
}

.location-info .section-label {
    text-align: center;
}

.location-info .section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.location-details {
    margin: var(--spacing-md) 0;
    display: grid;
    gap: var(--spacing-sm);
}

.location-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
    padding: var(--spacing-sm);
    border-radius: var(--radius);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: left;
}

.location-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.location-item i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.location-item h3 {
    font-size: 0.75rem;      /* 12px */
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
}

.location-item p {
    color: var(--text-secondary);
    font-size: 0.8125rem;    /* 13px */
    line-height: 1.6;
}

.location-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.btn-outline-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-primary);
    border-radius: var(--radius);
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    transition: var(--transition);
    min-width: 140px;
    justify-content: center;
}

.btn-outline-location:hover {
    background: var(--text-primary);
    color: var(--bg-light);
}

.btn-outline-location i {
    font-size: 14px;
}

/* FIXED MAP CONTAINER - Mobile Responsive */
.map-container {
    width: 100%;
    height: 300px;          /* Mobile: 300px */
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--border-color);
    margin: 0 auto;
}

.map-embed {
    width: 100%;
    height: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--spacing-2xl) var(--spacing-sm);
    text-align: center;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(192, 78, 78, 0.85) 0%,
        rgba(138, 54, 54, 0.85) 100%
    );
    backdrop-filter: blur(2px);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    font-family: 'Great Vibes', cursive;
    font-size: 0.75rem;     
    margin-bottom: var(--spacing-xs);
    color: white;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.55rem;      
    margin-bottom: var(--spacing-md);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid white;
    transition: var(--transition);
    cursor: pointer;
    border-radius: var(--radius);
    background: transparent;
    color: white;
    min-width: 100px;
}

.cta-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =========================
   FOOTER (MOBILE FIRST)
========================= */

.footer {
    background-color: #18181b;
    color: #a1a1aa;
    padding: 2rem 1rem;
    font-size: 0.675rem;
}

/* Layout */
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

/* =========================
   BRAND
========================= */

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-description {
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-link i {
    font-size: 0.85rem;
}

.social-link:hover {
    color: #fff;
    transform: scale(1.1);
}

/* =========================
   HEADINGS
========================= */

.footer-heading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    color: #d4d4d8;
}

/* =========================
   WORKING HOURS
========================= */

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #27272a;
    padding-bottom: 0.4rem;
}

.hours-item:last-child {
    border-bottom: none;
}

/* =========================
   CONTACT
========================= */

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.65rem;
}

.contact-item a {
    color: inherit;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #fff;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    font-size: 0.68rem;
    margin-top: 2rem;
    padding-top: 0.75rem;
    border-top: 1px solid #27272a;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    margin-left: 100px;
    color: #71717a;
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    padding: var(--spacing-md);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transform: translateY(12px);
    transition: transform 0.25s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    color: #71717a;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--primary);
    color: #fff;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-right: 30px;
}

.form-section {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 0.875rem;     /* 14px */
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--primary);
}

.dark .form-section h3 {
    color: #e5e7eb;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.dark .form-group label {
    color: #d1d5db;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition);
}

.dark .form-group input,
.dark .form-group textarea,
.dark .form-group select {
    background-color: #374151;
    border-color: #4b5563;
    color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 78, 78, 0.1);
}

input[type="radio"] {
    display: none;
}

.style-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.style-option label {
    display: block;
    padding: 12px 8px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 11px;
}

.style-option label:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.style-option input:checked + label {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.custom-order-label {
    display: block;
    padding: 12px;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
    background: var(--bg-secondary);
    cursor: pointer;
    font-size: 11px;
}

.form-group input:checked + .custom-order-label {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.04);
}

.custom-order-note {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

.price-summary {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 12px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.price-line.total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
}

.form-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.form-submit:hover {
    opacity: 0.9;
}

.hidden {
    display: none;
}

/* ============================================
   CART STYLES
   ============================================ */
.cart-item {
    display: flex;
    /* flex-direction: column; */
    gap: 12px;
    padding: var(--spacing-sm);
    background-color: #f9fafb;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.dark .cart-item {
    background-color: #27272a;
    border-color: #3f3f46;
}

.cart-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(192, 78, 78, 0.1);
}

.cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.cart-item-controls {
    align-items: center;
    width: 17%;
    display: flex;
    justify-content: end;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    background-color: #f4f4f5;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: var(--transition);
    color: #18181b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .quantity-btn {
    background-color: #27272a;
    border-color: #3f3f46;
    color: #e4e4e7;
}

.quantity-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.quantity {
    font-size: 14px;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 6px;
    transition: var(--transition);
    font-size: 15px;
}

.remove-btn:hover {
    color: #dc2626;
    transform: scale(1.1);
}

.cart-item-info {
    width: 80%;
}

.empty-cart {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--text-secondary);
    font-size: 14px;
}

.cart-total {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm);
    background-color: #fef2f2;
    border-radius: 8px;
    border: 2px solid #fecaca;
    text-align: right;
}

.dark .cart-total {
    background-color: #3f1f1f;
    border-color: #7f1d1d;
}

.cart-total h3 {
    font-size: 18px;
    color: var(--text-primary);
}

.cart-total span {
    color: var(--primary);
    font-weight: bold;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-light);
    border-color: var(--text-primary);
}

.cart-item-details {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

.dark .cart-item-details {
    color: #9ca3af;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    background: #27272a;
    color: white;
    padding: var(--spacing-xs);
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    border-radius: 8px;
    box-shadow: var(--shadow-strong);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.scroll-to-top.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.scroll-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 0.75rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-white {
    color: white;
}

/* TABLET (576px - 767px) */
@media (min-width: 576px) {
    /* Typography Scale Up */
    body {
        font-size: 0.9375rem;  /* 15px */
    }
    
    h1 {
        font-size: 2.25rem;    /* 36px */
    }
    
    h2 {
        font-size: 1.625rem;   /* 26px */
    }
    
    h3 {
        font-size: 1rem;       /* 16px */
    }
    
    h4 {
        font-size: 1.125rem;   /* 18px */
    }
    
    p {
        font-size: 0.9375rem;  /* 15px */
    }
    
    /* Hero Section */
    .hero-welcome {
        font-size: 1.75rem;    /* 28px */
    }
    
    .hero-title {
        font-size: 2.75rem;    /* 44px */
    }
    
    .hero-subtitle {
        font-size: 0.875rem;   /* 14px */
        letter-spacing: 0.18em;
    }
    
    .hero-buttons {
        gap: var(--spacing-md);
    }
    
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.6875rem;  /* 11px */
    }
    
    /* Spacing - Progressive Increase */
    .about-section,
    .services-section,
    .arrangements,
    .pricing-section,
    .perfect-spot,
    .testimonials-section,
    .location-map,
    .cta-section {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .gallery-section,
    .bloom-banner {
        padding: var(--spacing-2xl) var(--spacing-md);
    }
    
    .navbar-container {
        padding: 0.875rem var(--spacing-md);
    }
    
    /* About Section */
    .about-images {
        height: 400px;
    }
    
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .service-image {
        height: 220px;
    }
    
    /* Gallery */
    .gallery-item {
        min-width: calc(50% - 0.5rem);
    }
    
    /* Products */
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Pricing */
    .pricing-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
    
    /* Perfect Spot */
    .perfect-spot .image img {
        max-width: 400px;
    }
    
    /* Map Container */
    .map-container {
        height: 350px;
    }
    
    /* Footer - Still Column on Tablet */
    .footer {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

   
    .cta-label {
        font-size: 0.9rem;
    }

    .cta-description {
        font-size: 0.75rem;
    }

    .cta-btn {
        font-size: 0.65rem;
    }


}

/*  (768px - 1199px) */
@media (min-width: 768px) {
    body {
        font-size: 1rem;       /* 16px */
    }
    
    h1 {
        font-size: 2.5rem;     /* 40px */
    }
    
    h2 {
        font-size: 1.75rem;    /* 28px */
    }
    
    h3 {
        font-size: 1.125rem;   /* 18px */
    }
    
    h4 {
        font-size: 1.25rem;    /* 20px */
    }
    
    p {
        font-size: 0.9375rem;       /* 16px */
    }
    
    /* Section Elements */
    .section-label {
        font-size: 1.25rem;    /* 20px */
    }
    
    .section-title {
        font-size: 1.75rem;    /* 28px */
    }
    
    /* Hero Section */
    .hero-welcome {
        font-size: 2rem;       /* 32px */
    }
    
    .hero-title {
        font-size: 3rem;       /* 48px */
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;  /* 15px */
        letter-spacing: 0.2em;
    }
    
    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 0.75rem;    /* 12px */
    }
    
    /* Desktop Navigation */
    .navbar-links {
        display: flex;
        gap: 24px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Spacing - Intermediate */
    .about-section,
    .services-section,
    .arrangements,
    .pricing-section,
    .perfect-spot,
    .testimonials-section,
    .location-map,
    .cta-section {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    .about-images {
        height: 500px;
    }
    
    .about-text {
        padding-left: var(--spacing-lg);
        text-align: left;
    }
    
    .about-text .section-label,
    .about-text .section-title {
        text-align: left;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
    
    .service-image {
        height: 240px;
    }
    
    /* Gallery */
    .gallery-item {
        min-width: calc(33.333% - 0.5rem);
    }
    
    .gallery-slider {
        padding: 0 50px;
    }
    
    /* Products */
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Pricing */
    .pricing-card {
        flex: 0 0 calc(33.333% - 0.75rem);
    }
    
    /* Perfect Spot */
    .perfect-spot {
        grid-template-columns: 1.1fr 1fr;
        text-align: left;
        gap: var(--spacing-2xl);
    }
    
    .perfect-spot .image img {
        max-width: 500px;
    }
    
    /* Location */
    .location-content {
        grid-template-columns: 1fr 1.2fr;
        text-align: left;
    }
    
    .location-info {
        text-align: left;
    }
    
    .location-info .section-label,
    .location-info .section-title {
        text-align: left;
    }
    
    .location-cta {
        justify-content: flex-start;
    }
    
    /* Map Container - Laptop Size */
    .map-container {
        height: 450px;
        max-width: 600px;
    }
    
    /* Footer - Grid on Laptop */
    .footer{
        font-size: 0.87rem;
    }
    .footer-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 100px;
    }
    
    .footer-brand,
    .footer-hours,
    .footer-contact {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-heading {
        text-align: left;
    }
    
    .footer-bottom {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cta-section{
        font-size: 1.5rem;
    }

    .cta-label{
        font-size: 1.1rem;
    }
   
}

/* DESKTOP LARGE (1200px+) */
@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;       /* 48px */
    }
    
    h2 {
        font-size: 2rem;       /* 32px */
    }
    
    h3 {
        font-size: 1.25rem;    /* 20px */
    }
    
    h4 {
        font-size: 1.5rem;     /* 24px */
    }
    
    /* Section Elements */
    .section-label {
        font-size: 1.5rem;     /* 24px */
    }
    
    .section-title {
        font-size: 2rem;       /* 32px */
    }
    
    /* Hero Section */
    .hero-welcome {
        font-size: 2.25rem;    /* 36px */
    }
    
    .hero-title {
        font-size: 3.75rem;    /* 60px */
    }
    
    .hero-subtitle {
        font-size: 1rem;       /* 16px */
    }
    
    /* Spacing - Maximum */
    .about-section,
    .services-section,
    .arrangements,
    .pricing-section,
    .perfect-spot,
    .testimonials-section,
    .location-map,
    .cta-section {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
    
    .gallery-section {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
    
    .bloom-banner {
        padding: var(--spacing-3xl) var(--spacing-lg);
    }
    
    /* Navigation */
    .navbar-links {
        gap: 32px;
    }
    
    /* Hero */
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.75rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1100px;
    }
    
    .service-image {
        height: 260px;
    }
    
    /* Products */
    .products {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Pricing - Grid on Desktop */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }
    
    .pricing-card {
        flex: none;
        min-height: 380px;
    }
    
    .pricing-img {
        height: 200px;
    }
    
    .pricing-slider-btn {
        display: none;
    }
    
    .pricing-dots {
        display: none;
    }
    
    /* Perfect Spot */
    .perfect-spot .image img {
        max-width: 400px;
    }
    .perfect-spot .content{
        max-width: 900px;
    }
    
    /* Modals */
    .modal-content {
        max-width: 600px;
        padding: var(--spacing-lg);
    }
      .cta-label {
        font-size: 1.25rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    .cta-btn {
        font-size: 0.75rem;
    }
}

/*   TOUCH DEVICE OPTIMIZATIONS */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .hero-btn,
    .bloom-btn,
    .cta-btn,
    .btn-outline-location,
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card:hover,
    .product-card:hover,
    .pricing-card:hover,
    .about-feature:hover {
        transform: translateY(-2px);
    }
    
    input,
    select,
    textarea {
        font-size: 16px;
    }
}

/* ANIMATION ADJUSTMENTS FOR PERFORMANCE */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media screen and (max-width: 768px) {
    .fade-in {
        animation-duration: 0.4s;
    }
}