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

:root {
    --primary-color: #c6937e;
    --secondary-color: #d4a896;
    --accent-color: #b8846f;
    --dark-color: #1A1A1A;
    --light-color: #FDF5E6;
    --text-color: #2C2C2C;
    --gradient: linear-gradient(135deg, #c6937e 0%, #b8846f 100%);
    --button-color: #c6937e;
    --logo-beige: #c6937e;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    line-height: 1.2;
}

h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--logo-beige);
}

.nav-logo {
    height: 1.5rem;
    width: auto;
    object-fit: contain;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--logo-beige);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cta-button-nav {
    background: var(--button-color);
    color: var(--dark-color) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 20px 80px;
    background: var(--light-color);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s;
}

.hero-title .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s 0.4s backwards;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    object-fit: cover;
    max-height: 500px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--button-color);
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(198, 147, 126, 0.3);
}

.cta-button.primary:hover {
    background: #a67c6a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 147, 126, 0.4);
}

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

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

.cta-button.large {
    padding: 20px 50px;
    font-size: 1.1rem;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    border: 2px dashed #D2B48C;
    color: #8B7355;
    font-style: italic;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: white;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.service-text .lead {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.service-steps {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.steps-list {
    list-style: none;
    padding-left: 0;
}

.steps-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Benefits Grid */
.benefits {
    margin: 3rem 0;
}

.benefits h3 {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

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

.benefit-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: none;
    border: 1px solid #E5E5E5;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--dark-color);
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Quote */
.quote {
    background: var(--gradient);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    margin: 3rem 0;
}

.quote span {
    display: block;
    font-size: 1rem;
    margin-top: 1rem;
    font-style: normal;
}

/* Journey Section */
.journey {
    padding: 80px 20px;
    background: var(--light-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-number {
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.journey-message {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto 3rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 600px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 500px;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 400px;
}

.austin-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 400px;
}

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

.about-text .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.credentials {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.credentials h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.about-cta {
    margin-top: 2rem;
}

/* Austin Section */
.austin-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
}

.austin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

/* Booking Section */
.booking {
    padding: 80px 20px;
    background: white;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.booking-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

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

.booking-card .price {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.booking-select-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--button-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.booking-select-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.booking-card.active {
    border: 2px solid var(--primary-color);
    background: #fff;
    box-shadow: 0 5px 20px rgba(198, 147, 126, 0.3);
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-info h4 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.calendly-widget {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.calendly-widget h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendly-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0;
}

/* Final CTA */
.final-cta {
    padding: 100px 20px;
    background: var(--gradient);
    text-align: center;
    color: white;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta h2::after {
    display: none;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9CA3AF;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-content,
    .about-content,
    .austin-content,
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}