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

:root {
    /* 落ち着いたカラーパレット */
    --primary-dark: #2C2C2C;
    --primary-gray: #6B6B6B;
    --accent-beige: #F5F3F0;
    --accent-light-gray: #E8E8E8;
    --accent-dark-gray: #4A4A4A;
    --accent-atmos-green: #A2B589;
    --white: #ffffff;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --text-medium: #4A4A4A;
    --bg-light: #FAFAFA;
    --bg-white: #ffffff;
    --bg-beige: #F5F3F0;
    --border-color: #E0E0E0;
    --border-dark: #D0D0D0;
    --shadow-sm: 0 2px 8px 0 rgba(44, 44, 44, 0.08);
    --shadow-md: 0 4px 12px -1px rgba(44, 44, 44, 0.12);
    --shadow-lg: 0 10px 20px -3px rgba(44, 44, 44, 0.15);
    --shadow-xl: 0 20px 30px -5px rgba(44, 44, 44, 0.18);
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    position: relative;
}

body::before {
    display: none;
}

body > * {
    position: relative;
    z-index: 1;
}

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

/* Japanese Pattern Background */
.japanese-pattern {
    display: none;
}

/* Header */
.header {
    background: var(--accent-atmos-green);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    position: relative;
    font-family: 'Noto Serif JP', serif;
    margin: 0;
    padding: 0;
}

.nav-brand img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.nav-brand h1::after {
    display: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s;
}

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

.nav-menu a:hover::after {
    width: 100%;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    transform-origin: center;
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background-image: url('素材/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
    padding: 12rem 4rem 3rem 4rem;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-beige);
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

.hero-content {
    max-width: 600px;
    margin: 0;
    margin-left: 0;
    margin-bottom: 0;
    margin-top: 2rem;
    padding-left: 0;
    position: relative;
    z-index: 1;
    align-self: flex-end;
    text-align: left;
}

.hero-location {
    font-size: 1.68rem;
    margin-bottom: 0.4rem;
    margin-left: 0;
    padding-left: 0;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 2.94rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    margin-left: 0;
    padding-left: 0;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .mobile-break {
    display: none;
}

.hero-subtitle {
    font-size: 1.26rem;
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-price {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    position: relative;
    display: block;
    padding: 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-price::before,
.hero-price::after {
    display: none;
}

.btn-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--accent-atmos-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid var(--accent-atmos-green);
    cursor: pointer;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    display: none;
}

.btn-primary::after {
    display: none;
}

.btn-primary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Noto Serif JP', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--text-dark);
}

.section-title::before {
    display: none;
}

/* Service Section */
.service-section {
    background: var(--bg-light);
    position: relative;
}

.service-section::before {
    display: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    display: none;
}

.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-dark);
}

.service-card > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 2;
    font-size: 0.95rem;
}

.pricing-info {
    background: var(--white);
    padding: 4rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

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

.pricing-info::before {
    display: none;
}

.pricing-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.pricing-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-amount {
    font-size: 4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.pricing-unit {
    font-size: 1.5rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 0;
    font-size: 1rem;
}

.pricing-features li:before {
    display: none;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* Booking Section */
.booking-section {
    background: var(--bg-white);
    position: relative;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-form h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.calendar-container {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.calendar-container::before {
    display: none;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-header h4 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.calendar-nav {
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 4px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-family: 'Noto Serif JP', 'Noto Serif', serif;
    box-shadow: var(--shadow-sm);
}

.calendar-nav:hover {
    background: var(--primary-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-family: 'Noto Serif JP', 'Noto Serif', serif;
    position: relative;
    padding: 0.25rem;
}

.calendar-day .day-number {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.calendar-day .day-status {
    font-size: 0.875rem;
    line-height: 1;
    margin-top: 0.125rem;
    font-weight: 700;
}

.calendar-day .status-available {
    color: var(--text-medium);
}

.calendar-day .status-booked {
    color: var(--text-medium);
    font-size: 1rem;
}

.calendar-day.empty {
    border: none;
    cursor: default;
}

.calendar-day.available {
    background: var(--bg-white);
    color: var(--text-dark);
}

.calendar-day.available:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.calendar-day.available:hover .status-available {
    color: white;
}

.calendar-day.unavailable {
    background: var(--bg-light);
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
    border-color: var(--border-color);
}

.calendar-day.unavailable .day-number {
    opacity: 0.7;
}

.calendar-day.unavailable .status-booked {
    opacity: 1;
    color: var(--text-medium);
}

.calendar-day.selected {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.calendar-day.selected .day-number {
    color: white;
}

.calendar-day.selected .status-available {
    color: white;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-family: 'Noto Serif JP', 'Noto Serif', serif;
}

.legend-available,
.legend-unavailable,
.legend-selected {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.legend-available {
    background: var(--bg-white);
}

.legend-unavailable {
    background: var(--bg-light);
    border-color: var(--border-color);
}

.legend-selected {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: white;
}

.form-details {
    background: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.form-details::before {
    display: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Noto Serif JP', 'Noto Serif', serif;
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 2px rgba(44, 44, 44, 0.1);
}

.form-total {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.form-total::before {
    display: none;
}

.total-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    background: var(--text-dark);
    color: white;
    border: 1px solid var(--text-dark);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.btn-submit::before {
    display: none;
}

.btn-submit:hover {
    background: var(--primary-gray);
    border-color: var(--primary-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Flow Section */
.flow-section {
    background: var(--bg-white);
    position: relative;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

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

.flow-number {
    font-size: 5rem;
    font-weight: 600;
    color: var(--accent-atmos-green);
    background: transparent;
    line-height: 1;
    font-family: 'Noto Serif JP', serif;
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.flow-step p {
    color: var(--text-light);
    line-height: 2;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--bg-light);
    position: relative;
}

.pricing-section::before {
    display: none;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.faq-item::before {
    display: none;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-dark);
}

.faq-question {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 0;
}

.faq-question::before {
    display: none;
}

.faq-answer {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    padding-left: 0;
    position: relative;
}

.faq-answer::before {
    display: none;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    position: relative;
}

.testimonials-section::before {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    display: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-dark);
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #FFD700;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 2;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.testimonial-author-details {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Locations Section */
.locations-section {
    background: var(--bg-light);
    position: relative;
}

.locations-section::before {
    display: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.location-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.location-card::before {
    display: none;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-dark);
}

.location-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    object-fit: cover;
    display: block;
}

.location-image::after {
    display: none;
}

.location-image.osaka {
    background: var(--bg-beige);
}

.location-image.kyoto {
    background: var(--bg-beige);
}

.location-image.nara {
    background: var(--bg-beige);
}

.location-content {
    padding: 2.5rem;
}

.location-content h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Noto Serif JP', serif;
}

.location-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--text-dark);
}

.location-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 2;
    font-size: 1rem;
}

.location-spots {
    list-style: none;
}

.location-spots li {
    padding: 0.75rem 0;
    padding-left: 0;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.location-spots li:last-child {
    border-bottom: none;
}

.location-spots li::before {
    display: none;
}

/* Footer */
.footer {
    background: var(--accent-atmos-green);
    color: var(--text-dark);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    display: none;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--white);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
}

.footer-section p {
    margin-bottom: 0.75rem;
    opacity: 0.95;
    line-height: 2;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.social-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-white);
    padding: 4rem 3rem;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: slideDown 0.3s;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.modal-content::before {
    display: none;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.close-modal:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.modal-content p {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

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

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 1.5rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        width: 100%;
        font-size: 0.9rem;
        color: var(--accent-atmos-green);
    }

    .nav-menu a.btn-primary {
        text-align: center;
        margin: 0.75rem 0;
        width: 100%;
        display: block;
    }


    .hero-content {
        margin-top: 1rem;
    }

    .hero-location {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        margin-top: 1rem;
        margin-left: 0;
        padding-left: 0;
        color: var(--white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
        margin-left: 0;
        padding-left: 0;
        line-height: 1.3;
        color: var(--white);
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0;
        margin-left: 0;
        padding-left: 0;
        line-height: 1.5;
        color: var(--white);
    }

    .hero .btn-primary {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }

    .service-grid,
    .locations-grid,
    .flow-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .flow-step {
        padding: 1.5rem 1rem;
    }

    .flow-number {
        font-size: 3rem;
        width: auto;
        height: auto;
        border-radius: 0;
        background: transparent;
    }

    .flow-step h3 {
        font-size: 1.25rem;
    }

    .flow-step p {
        font-size: 0.875rem;
    }

    .faq-item {
        padding: 1.5rem 1rem;
    }

    .faq-question {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .calendar-day {
        font-size: 0.75rem;
    }

    .form-details {
        padding: 1.5rem 1rem;
    }

    .pricing-info {
        padding: 2rem 1.5rem;
    }

    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 6rem 1rem 1.5rem 1rem;
        min-height: 35vh;
        text-align: left;
        align-items: flex-end;
    }
    
    .hero-content {
        margin-left: 0;
        margin-bottom: 0;
        padding-left: 0;
        text-align: left;
        padding-bottom: 0.5rem;
    }

    .hero-title .mobile-break {
        display: block;
    }

    section {
        padding: 3rem 0;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }
    
    .nav-brand img {
        height: 60px;
    }

    .navbar .container {
        position: relative;
    }

    .navbar {
        padding: 1rem 0;
    }

    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.875rem;
        line-height: 1.8;
    }

    .location-content {
        padding: 1.5rem 1rem;
    }

    .location-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .location-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .location-spots li {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        padding-left: 0;
    }

    .location-card {
        overflow: hidden !important;
    }

    .location-image {
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-brand img {
        height: 60px !important;
        width: auto !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .testimonial-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .testimonial-author-name {
        font-size: 1rem;
    }

    .testimonial-author-details {
        font-size: 0.85rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .footer-section p {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.875rem;
        padding: 0.75rem 0;
    }

    .pricing-note {
        font-size: 0.75rem;
    }
}

/* iPhone SE and smaller devices */
@media (max-width: 375px) {
    .hero-content {
        margin-top: 1rem;
    }

    .hero-location {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
        margin-top: 1rem;
        margin-left: 0;
        padding-left: 0;
        color: var(--white);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.65rem;
        margin-left: 0;
        padding-left: 0;
        color: var(--white);
    }

    .hero-subtitle {
        font-size: 0.72rem;
        margin-bottom: 0;
        margin-left: 0;
        padding-left: 0;
        line-height: 1.5;
        color: var(--white);
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 5rem 0.75rem 1.25rem 0.75rem;
        min-height: 30vh;
        text-align: left;
        align-items: flex-end;
    }
    
    .hero-content {
        margin-left: 0;
        margin-bottom: 0;
        padding-left: 0;
        text-align: left;
        padding-bottom: 0.5rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .service-card {
        padding: 1.25rem 0.75rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.8rem;
    }

    .location-content {
        padding: 1.25rem 0.75rem;
    }

    .location-content h3 {
        font-size: 1.25rem;
    }

    .location-content p {
        font-size: 0.85rem;
    }

    .location-spots li {
        padding-left: 0;
    }

    .location-card {
        overflow: hidden !important;
    }

    .location-image {
        height: 180px !important;
        min-height: 180px !important;
        max-height: 180px !important;
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-brand img {
        height: 45px !important;
        width: auto !important;
        max-width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .pricing-info {
        padding: 1.5rem 1rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.8rem;
    }

    .form-details {
        padding: 1.25rem 0.75rem;
    }

    .nav-menu {
        width: 85%;
        max-width: 280px;
        padding: 4rem 1.5rem 2rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.65rem 0;
    }


    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .nav-brand img {
        height: 45px;
    }

    .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .footer {
        padding: 2rem 0 1.25rem;
    }

    .footer-content {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.65rem;
        padding-bottom: 0.4rem;
    }

    .footer-section p {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.8rem;
    }
}
