/* Modern Wedding-Inspired Design Variables */
:root {
    /* Primary Colors - Elegant Wedding Palette */
    --primary-color: #2C3E50;        /* Deep navy blue */
    --secondary-color: #E8D5C0;      /* Warm cream */
    --accent-color: #C89F7C;         /* Rose gold */
    --success-color: #27AE60;        /* Elegant green */
    --background-light: #FAFAFA;     /* Off-white */
    --background-cream: #F7F4F0;     /* Cream background */
    
    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #5D6D7E;
    --text-light: #85929E;
    --text-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Crimson Text', serif;
    
    /* Spacing & Layout */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* Section Styles */
.section-padding {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--background-cream);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-color);
    color: white !important;
    border-radius: 25px;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--accent-color);
    color: white !important;
    transform: translateY(-1px);
}

/* About Paragraph */
.about-paragraph {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta-content {
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(200, 159, 124, 0.05) 100%);
    border: 1px solid rgba(44, 62, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #2C3E50 !important;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    color: #C89F7C !important;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 1.5rem;
}

.cta-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.cta-buttons .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-buttons .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-note {
    font-size: 1rem;
    color: #C89F7C !important;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #FAFAFA 0%, #F7F4F0 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
}

.badge-text {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 2rem;
}

.btn-hero {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-hero:hover {
    background: #34495E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.hero-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(200, 159, 124, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 200px;
    height: 200px;
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}





/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Cards */
.process-steps {
    margin-top: 3rem;
}

.process-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid rgba(44, 62, 80, 0.05);
}

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

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.process-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(44, 62, 80, 0.05);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.value-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.value-highlight {
    background: var(--background-light);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin: 2rem 0;
}

.comparison-table {
    margin: 0;
    border: none;
}

.comparison-table thead th {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: center;
}

.comparison-table thead th.everlist-col,
.comparison-table thead th.traditional-col {
    text-align: center;
}

.comparison-table thead th.everlist-col,
.comparison-table thead th.traditional-col,
.comparison-table tbody td.everlist-feature,
.comparison-table tbody td.traditional-feature {
    width: 40%;
}

.comparison-table thead th.feature-col,
.comparison-table tbody td.feature-name {
    width: 20%;
}

.comparison-table {
    table-layout: fixed;
}

.comparison-table tbody td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    vertical-align: middle;
}

.feature-name {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--background-light);
}

.everlist-feature {
    background: rgba(39, 174, 96, 0.05);
    color: var(--success-color);
    font-weight: 500;
}

.traditional-feature {
    background: rgba(231, 76, 60, 0.05);
    color: #E74C3C;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495E 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::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 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta {
    padding: 15px 30px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    min-width: 200px;
    justify-content: center;
}

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

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

.btn-outline-primary.btn-cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 2rem 0;
    text-align: center;
}

.footer-text {
    margin: 0;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .process-card,
    .value-card {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .process-card,
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .decoration-element {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Animation for scroll-triggered elements */
@media (prefers-reduced-motion: no-preference) {
    .process-card,
    .value-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .process-card:nth-child(1) { animation-delay: 0.1s; }
    .process-card:nth-child(2) { animation-delay: 0.2s; }
    .process-card:nth-child(3) { animation-delay: 0.3s; }
    
    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }
}

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