/* ===================================
   SHORE LUXE LINENS - MASTER STYLESHEET
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #2C5F7E;
    --primary-dark: #1E4159;
    --secondary-color: #D4A574;
    --accent-color: #7FA6B0;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --text-lighter: #718096;
    --bg-light: #F7FAFC;
    --bg-cream: #FAF8F5;
    --border-color: #E2E8F0;
    --white: #FFFFFF;
    --success: #48BB78;
    --error: #F56565;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition-base: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.btn-primary-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 6px;
    border: none !important;
}

.btn-primary-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(44, 95, 126, 0.7) 0%, rgba(127, 166, 176, 0.6) 100%), url('images/lifestyle/bedroom-lifestyle.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.95rem;
}

.feature-badge svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary,
.btn-secondary,
.btn-package {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #C1935F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-package {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    margin-top: 1.5rem;
}

.btn-package:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   SECTIONS
   =================================== */
.why-choose,
.how-it-works,
.fabric-options,
.pricing-section,
.packages,
.about-content,
.booking-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-lighter);
}

/* ===================================
   FEATURES GRID
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    background: var(--bg-cream);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
}

/* ===================================
   FABRIC OPTIONS
   =================================== */
.fabrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fabric-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition-base);
    position: relative;
}

.fabric-card.featured {
    border-color: var(--secondary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.fabric-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fabric-description ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.fabric-description li {
    list-style: disc;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.color-palette {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.color-palette h3 {
    margin-bottom: 1.5rem;
}

.colors {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.fabric-colors {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.fabric-colors p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.fabric-colors .colors {
    justify-content: flex-start;
    gap: 0.75rem;
}

.fabric-colors .color-swatch {
    width: 40px;
    height: 40px;
}

/* ===================================
   PRICING SECTIONS
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.pricing-comparison {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--secondary-color);
}

.comparison-table td.highlight {
    background: rgba(212, 165, 116, 0.1);
    font-weight: 600;
    color: var(--primary-dark);
}

.comparison-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-description {
    color: var(--text-lighter);
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.pricing-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--text-lighter);
    font-weight: 400;
}

.pricing-item .features {
    margin-top: 1.5rem;
    padding-left: 0;
}

.pricing-item .features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-item .features li:last-child {
    border-bottom: none;
}

.item-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Package Cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.package-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.package-card.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.package-price {
    margin-top: 1rem;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-content {
    padding: 2rem;
}

.package-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.package-includes {
    padding-left: 0;
}

.package-includes li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.package-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-lighter);
}

.savings-badge {
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    background: var(--success);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.multi-bed-note {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.multi-bed-note h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.multi-bed-note p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Services Pricing */
.services-pricing {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-price span {
    font-size: 1rem;
    color: var(--text-lighter);
    font-weight: 400;
}

.service-features {
    margin-top: 1.5rem;
    padding-left: 0;
}

.service-features li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Pricing FAQ */
.pricing-faq {
    background: var(--bg-light);
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   BOOKING FORM
   =================================== */
.booking-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.booking-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.booking-form h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-section h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

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

.quantity-input {
    max-width: 100px;
    text-align: center;
}

.quantity-group small {
    display: block;
    margin-top: 0.3rem;
    color: var(--text-lighter);
    font-size: 0.85rem;
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.8rem;
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-weight: 500;
}

.checkbox-description {
    margin-left: 26px;
    margin-top: 0.3rem;
    color: var(--text-lighter);
    font-size: 0.95rem;
}

.form-actions {
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-lighter);
    font-size: 0.95rem;
    text-align: center;
}

.form-success {
    background: var(--success);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.form-success p {
    margin-bottom: 1rem;
}

.form-success a {
    color: var(--white);
    text-decoration: underline;
}

/* Booking Summary Sidebar */
.booking-summary {
    position: relative;
}

.summary-sticky {
    position: sticky;
    top: 100px;
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.booking-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-placeholder {
    color: var(--text-lighter);
    text-align: center;
    padding: 2rem 0;
}

#summary-content {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-color);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.summary-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.booking-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.booking-benefits h4 {
    margin-bottom: 1rem;
}

.booking-benefits ul {
    padding-left: 0;
}

.booking-benefits li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Contact Methods */
.contact-info-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-method .hours {
    margin-top: 0.5rem;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-mission {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.mission-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-difference {
    margin-bottom: 4rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.difference-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.difference-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.values-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-promise {
    margin: 4rem 0;
}

.promise-box {
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: 12px;
    border-left: 6px solid var(--secondary-color);
}

.promise-list {
    padding-left: 0;
    margin: 2rem 0;
}

.promise-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.promise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.promise-footer {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

.team-section {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .pricing-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-layout {
        grid-template-columns: 1fr;
    }
    
    .booking-summary {
        order: -1;
    }
    
    .summary-sticky {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
    
    .feature-card,
    .pricing-item,
    .service-card {
        padding: 1.5rem;
    }
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: 4rem 0;
    background: var(--bg-cream);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.delivery-note {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
}

.delivery-note p {
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
    }
}

/* ===================================
   MULTI-BEDROOM EXAMPLES
   =================================== */
.multi-bed-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.multi-bed-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.multi-bed-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
}

.multi-bed-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.multi-bed-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.example-config {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.multi-bed-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.multi-bed-card .price span {
    font-size: 1rem;
    color: var(--text-lighter);
}

.multi-bed-card .savings {
    color: var(--text-lighter);
    font-size: 0.9rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .multi-bed-examples {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   UPDATED BOOKING FORM STYLES
   =================================== */
.pricing-reference {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.pricing-reference h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-row span:first-child {
    color: var(--text-light);
}

.price-row span:last-child {
    font-weight: bold;
    color: var(--primary-color);
}

.example-box {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.example-box h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.example-box p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.help-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.help-box h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.help-box p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.help-box strong {
    display: block;
    margin-top: 0.5rem;
}

.section-note {
    color: var(--text-lighter);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.checkbox-description {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    margin-left: 1.5rem;
}

/* Form validation styles */
input:invalid:focus,
select:invalid:focus,
textarea:invalid:focus {
    border-color: var(--error);
}

input:valid,
select:valid,
textarea:valid {
    border-color: var(--success);
}
