/* Base Styles */
:root {
    /* Color Palette */
    --ivory: #f8f5f0;
    --parchment: #f0e6d2;
    --taupe: #d8c7b7;
    --charcoal: #2a2118;
    --walnut: #8b7355;
    
    /* Theme Colors */
    --primary-color: var(--charcoal);
    --secondary-color: var(--walnut);
    --accent-color: var(--walnut);
    --light-bg: var(--parchment);
    --text-color: var(--charcoal);
    --border-color: #e0d6c7;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout */
    --header-height: 60px;
    --container-padding: 1.25rem;
    --transition-duration: 0.4s;
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Base Typography */
body {
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--ivory);
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
    margin: 1.5rem 0 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.25rem; }

/* Mobile Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(248, 245, 240, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: transform 0.4s var(--easing), 
                background-color 0.3s var(--easing),
                box-shadow 0.3s var(--easing);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transform: translateY(0);
}

/* Hide header when scrolling down */
.site-header.scroll-down {
    transform: translateY(-100%);
}

/* Show header when scrolling up */
.site-header.scroll-up {
    transform: translateY(0);
    background-color: rgba(248, 245, 240, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled {
    background-color: rgba(248, 245, 240, 0.98);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
    max-width: 100%;
}

.site-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-toggle {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    padding: 0;
    position: relative;
    z-index: 1001;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 14px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--primary-color);
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s var(--easing);
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 6px;
    opacity: 1;
}

.menu-icon span:nth-child(3) {
    top: 12px;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
}

.account-btn,
.cart-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.account-btn:hover,
.cart-btn:hover {
    opacity: 0.7;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    padding: 80px 0 2rem;
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.active {
    transform: translateX(0);
}

.nav-container {
    padding: 0;
    max-width: 100%;
    margin: 0;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 1.5rem;
    z-index: 1001;
}

.nav-close {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.nav-close span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--primary-color);
    top: 50%;
    left: 0;
    transform: rotate(45deg);
}

.nav-close span:last-child {
    transform: rotate(-45deg);
}

/* Navigation Menu */
.nav-actions {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.nav-cta {
    display: inline-block;
    background-color: var(--walnut);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.nav-cta:hover {
    background-color: #7a6549;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    flex: 1;
}

.nav-link {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--charcoal);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    text-decoration: none;
    padding: 1.2rem 0;
    transition: color 0.2s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-nav.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .nav-link:nth-child(5) { transition-delay: 0.3s; }

.nav-link:active,
.nav-link:focus,
.nav-link:hover {
    color: var(--accent-color);
    outline: none;
}

.nav-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.nav-footer p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
}

/* Page Content */
.page-content {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Hide scrollbar when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Header scroll effect */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
}

p, .tagline {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

/* Emotional CTA Section */
.emotional-cta {
    padding: 4rem 1.5rem;
    background-color: var(--ivory);
    text-align: center;
    position: relative;
    z-index: 2;
}

.emotional-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--charcoal);
    max-width: 26rem;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.2px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--walnut);
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s var(--easing);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #7a6549;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--charcoal);
    margin: 0;
    padding: 0;
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
    box-sizing: border-box;
    box-shadow: var(--shadow-md);
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(42, 33, 24, 0.2) 0%,
        rgba(42, 33, 24, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Fallback for browsers that don't support object-fit */
@supports not (object-fit: cover) {
    .hero-video {
        height: 100%;
        width: 100%;
    }
}

@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    text-align: center;
    padding: 0 1.25rem;
    margin: 0 auto;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 0.6rem;
    letter-spacing: -0.3px;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transform: translateY(8px);
    animation: fadeInUp 0.6s 0.1s ease-out forwards;
}

.hero-subhead {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.35;
    max-width: 22rem;
    margin: 0 auto 1.2rem;
    opacity: 0;
    transform: translateY(8px);
    animation: fadeInUp 0.5s 0.2s ease-out forwards;
    color: rgba(255, 255, 255, 0.85);
}

.hero-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--walnut);
    color: var(--ivory);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--easing);
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    animation: fadeInUp 0.5s 0.3s ease-out forwards;
    margin-top: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-cta:hover {
    background-color: #7a6549;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta:active {
    transform: translateY(0);
}

.hero-cta:active,
.hero-cta:focus,
.hero-cta:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px) scale(1.02);
    outline: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video playback optimization */
.hero-video {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .comparison-container {
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 0.25rem 0;
        font-size: 1.5rem;
    }
    
    .emotional-cta {
        padding: 3rem 1.25rem;
    }
    
    .emotional-text {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero {
        height: 45vh;
        min-height: 250px;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-position: center 30%;
    }
}

/* Adjust for very small devices */
@media (max-height: 600px) {
    .hero-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subhead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Showcase Section */
.showcase {
    padding: 2rem 0;
    background-color: #fff;
}

.before-after {
    margin: 1rem 0;
    padding: 1.5rem 0;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.comparison-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.comparison-media {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.comparison-media:hover {
    transform: scale(1.02);
}

.before, .after {
    text-align: center;
    width: 100%;
}

.before h3, .after h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.arrow {
    font-size: 2rem;
    color: #8b7355;
    margin: 1rem 0;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-family: var(--font-sans);
    font-size: 1rem;
    border-radius: 8px;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 3rem 1rem;
    background-color: #fff;
}

.pricing .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 2.5rem 0;
    background-color: #fff;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Price Ladder */
.price-ladder {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    background: #fff;
    border-radius: 8px;
    padding: 0.5rem 0;
}

.price-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    position: relative;
    transition: background-color 0.2s ease;
}

.price-tier:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: #f0f0f0;
}

.price-tier.best-value {
    background-color: #f9f5ff;
    border-radius: 8px;
    margin: 0.5rem 0;
    padding: 1rem;
    border: 1px solid #e9d8fd;
}

.tier-range {
    font-size: 0.95rem;
    color: #4a5568;
    font-weight: 500;
}

.tier-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.per-photo {
    font-size: 0.8rem;
    color: #718096;
    white-space: nowrap;
}

.save-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-weight: 500;
    margin-left: 0.3rem;
}

.price-tier.best-value .save-badge {
    background: #4caf50;
    color: white;
}

/* CTA Section */
.pricing-cta {
    text-align: center;
    padding: 0 1rem;
}

.cta-button.primary {
    display: inline-block;
    background-color: var(--walnut);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.cta-button.primary:hover {
    background-color: #8b7355;
}

.trust-line {
    color: #718096;
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile styles */
@media (max-width: 768px) {
    .pricing {
        padding: 2rem 0.5rem;
    }
    
    .pricing h2 {
        font-size: 1.5rem;
    }
    
    .pricing-row {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .pricing-row.header {
        display: none;
    }
    
    .pricing-col {
        width: 100% !important;
        padding: 0.5rem 1rem;
        text-align: left !important;
        justify-content: space-between;
    }
    
    .pricing-col::before {
        content: attr(data-label);
        font-weight: 500;
        color: #666;
        margin-right: 1rem;
    }
    
    .pricing-col.photos::before {
        content: "Photos:";
    }
    
    .pricing-col.price::before {
        content: "Price:";
    }
    
    .pricing-col.total::before {
        content: "Total:";
    }
    
    .save {
        margin-left: auto;
    }
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Contact Section - Mobile First */
.contact-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

.contact-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-section h2 {
    text-align: center;
    color: var(--charcoal);
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin: 0 auto 2rem;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.5;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(138, 120, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--walnut);
}

.contact-details h3 {
    color: var(--charcoal);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.contact-email a {
    color: var(--walnut);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: #7a6549;
    text-decoration: underline;
}

.response-time {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-form {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--walnut);
    box-shadow: 0 0 0 2px rgba(138, 120, 93, 0.2);
    background-color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--walnut);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    background-color: #7a6549;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .contact-section {
        padding: 3rem 2rem;
    }
    
    .contact-section h2 {
        font-size: 2.25rem;
    }
    
    .contact-content {
        flex-direction: row;
        gap: 3rem;
    }
    
    .contact-info {
        flex: 1;
        display: flex;
        align-items: center;
    }
    
    .contact-method {
        text-align: left;
        align-items: flex-start;
        max-width: 400px;
    }
    
    .contact-form {
        flex: 1;
        padding: 2rem;
    }
    
    .contact-icon {
        margin-bottom: 1.5rem;
    }
}

/* Desktop and larger screens */
@media (min-width: 1024px) {
    .contact-section .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .contact-content {
        gap: 4rem;
    }
    
    .contact-section h2 {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info p {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (min-width: 768px) {
    .comparison-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .before, .after {
        flex: 1;
        max-width: 45%;
    }
    
    .arrow {
        align-self: center;
        margin: 0 1rem;
    }
    
    .image-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .arrow {
        transform: rotate(0);
        margin: 0 2rem;
        align-self: center;
    }
    
    .step {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
