/* CSS Custom Properties */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #D4AF37;
    --accent-color-dark: #1e3a5f;
    --text-color: #1a1a1a;
    --background-color: #FFFFFF;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.4s;
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all var(--transition-speed) var(--easing);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.navbar.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: white;
    text-decoration: none;
    position: relative;
    transition: color var(--transition-speed);
}

.navbar.scrolled .nav-links a {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) var(--easing);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all var(--transition-speed);
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s var(--easing) forwards;
}

.hero .subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s var(--easing) forwards 0.3s;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: transparent;
    color: white;
    border: 2px solid var(--accent-color);
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-speed) var(--easing);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s var(--easing) forwards 0.6s;
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto 1rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background-color: var(--background-color);
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--primary-color);
}

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

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.service-slide {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-speed) var(--easing);
}

.service-slide.active {
    display: block;
    opacity: 1;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem;
    background: white;
}

.service-images {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.before-after, .before-after * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.before-after {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.before-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.book-now {
    display: inline-block;
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: none;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    cursor: pointer;
    transition: all var(--transition-speed) var(--easing);
    text-decoration: none;
}

.book-now:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 2rem;
}

.prev-slide,
.next-slide {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.prev-slide:hover,
.next-slide:hover {
    color: var(--accent-color);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.indicator.active {
    background: var(--accent-color);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background-color: #fafafa;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.image-frame {
    width: 100%;
    height: 600px;
    background: url('assets/about-image.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.bio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
}

.work-with-emma {
    padding: 1rem 2rem;
    font-size: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed) var(--easing);
}

.work-with-emma:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background-color: var(--background-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem 2rem;
}

.contact-form {
    flex: 1 1 260px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    margin: 0;
    display: flex;
    flex-direction: column;
}

.contact-divider {
    width: 2px;
    background: rgba(212, 175, 55, 0.15);
    height: 100%;
    margin: 0 2rem;
    border-radius: 2px;
    align-self: stretch;
    display: block;
}

.contact-info {
    flex: 1 1 260px;
    min-width: 260px;
    padding: 2.5rem 2rem;
    background: #fff;
    box-shadow: var(--card-shadow);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.6rem 1rem;
    font-size: 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f4f7fb;
    outline: none;
    transition: border-color 0.2s;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 0;
    width: calc(100% - 2rem);
    height: 100%;
    color: #888;
    font-size: 1.1rem;
    background: transparent;
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0.4,0,0.2,1), visibility 0.2s cubic-bezier(0.4,0,0.2,1);
    z-index: 2;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 0;
    visibility: hidden;
}

.form-group textarea + label {
    align-items: flex-start;
    padding-top: 0.7rem;
    height: auto;
}

.form-group textarea {
    resize: none;
    overflow-y: hidden;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all var(--transition-speed) var(--easing);
}

.submit-btn:hover {
    background-color: var(--accent-color-dark);
    transform: translateY(-2px);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.contact-name {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.3rem;
}

.consultation-note p {
    font-size: 1rem;
    font-weight: 400;
}

.consultation-note {
    margin-top: 1.5rem;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-info a:hover {
    color: var(--accent-color-dark);
}

.service-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.service-area h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-area p {
    margin-bottom: 0.5rem;
    color: #666;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.5rem 0 1rem 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s, transform 0.3s;
        z-index: 999;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .navbar:not(.scrolled) .nav-links.active {
        background: rgba(255,255,255,0.55);
        backdrop-filter: blur(16px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .navbar.scrolled .nav-links.active {
        background: #fff;
        backdrop-filter: none;
    }
    .nav-links a {
        color: var(--primary-color);
        padding: 1rem 2rem;
        width: 100%;
        font-size: 1.15rem;
        border: none;
        background: none;
        text-align: left;
        transition: background 0.2s;
    }
    .nav-links a:hover {
        background: #f7f7f7;
    }
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    .mobile-menu-btn span {
        background-color: white;
        transition: background 0.3s, transform 0.3s, opacity 0.3s;
    }
    .navbar.scrolled .mobile-menu-btn span {
        background-color: var(--primary-color);
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-divider {
        display: none;
    }

    .contact-info {
        max-width: 100%;
        padding: 1.5rem 0;
        box-shadow: none;
        border-radius: 0;
    }

    .image-frame {
        height: 400px;
    }

    .nav-links a::after {
        display: none !important;
    }

    .before-after {
        height: 0;
        padding-bottom: 100%; /* This creates a square aspect ratio */
    }
    
    .before-after img {
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        gap: .1rem;
        padding: 0;
    }
    .contact-divider {
        display: none;
    }
    .contact-info {
        max-width: 100%;
        padding: 2.5rem 1rem;
        box-shadow: var(--card-shadow);
        border-radius: 10px;
        margin: 2rem 0 0 0;
    }
    .contact-form {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 2.5rem 1rem;
    }
}

/* Utility Classes */
.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Redesigned Three 'S' System Section */
.system-section {
    padding: 8rem 2rem;
    background: #fafafa;
}

.system-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.system-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: .1rem;
    position: relative;
}

.system-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
    position: relative;
    z-index: 2;
}

.system-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(212,175,55,0.10);
    transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing);
}

.system-step:hover .system-step-circle {
    transform: scale(1.07);
    box-shadow: 0 4px 18px rgba(212,175,55,0.18);
}

.system-step-label {
    font-size: 1.7rem;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.system-step-desc {
    font-size: 1rem;
    color: #666;
    text-align: center;
    max-width: 220px;
    margin-bottom: 0.5rem;
}

.system-step-connector {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #f3e9c7 100%);
    z-index: 1;
}

.system-content h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 2.2rem;
    z-index: 2;
}

.system-content p {
    font-size: 1.13rem;
    color: #444;
    margin-bottom: 1.1rem;
    line-height: 1.7;
    z-index: 2;
}

.system-content strong {
    color: var(--accent-color);
    font-weight: 600;
}

.system-content blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin: 2.2rem 0 0 0;
    padding: 1.1rem 1.5rem 1.1rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: #f8f6f1;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(212,175,55,0.05);
    z-index: 2;
}

@media (max-width: 700px) {
    .system-content {
        padding: 2.2rem 1.5rem;
    }
    .system-content h2,
    .system-content > p,
    .system-content blockquote {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .system-content h2 {
        font-size: 1.5rem;
        width: 100%;
    }
    .system-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .system-step {
        width: 100%;
        max-width: 300px;
    }
    .system-step-connector {
        display: none;
    }
    .system-step-desc {
        max-width: 100%;
    }
    .system-content blockquote {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .system-content {
        padding: 2.2rem 0.7rem;
        max-width: 100%;
    }
}

.confirmation-message {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    margin-top: 1rem;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.site-footer {
    background: #fff;
    color: #1a1a1a;
    padding: 3rem 0 2.5rem 0;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.04);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo {
    height: 140px;
    width: auto;
    border-radius: 8px;
    background: transparent;
    padding: 0.3rem;
    box-shadow: none;
}

.footer-business {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--accent-color-dark);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1.05rem;
}

.footer-contact a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--accent-color-dark);
}

.footer-bottom {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    .footer-brand {
        justify-content: center;
    }
    .footer-nav {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        margin: 1rem 0;
    }
    .footer-contact {
        align-items: center;
    }
} 