/* Celestial Arena - Premium Badminton Training Website */
/* Professional agency-level design for elite sports facility */

/* CSS Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #006B5F;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #004A42;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin: 0 0 1.5rem 0;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
}

strong {
    font-weight: 600;
    color: #006B5F;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav {
    padding: 1.5rem 0;
}

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

.logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-menu a {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #006B5F;
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #006B5F, #008F7A);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/photo1.webp') center/cover no-repeat;
    opacity: 0.85;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 107, 95, 0.2) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 0;
}

.hero-content {
    color: #ffffff;
    padding-left: 2rem;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 480px;
}

.hero-image {
    position: relative;
    padding-right: 2rem;
}

.hero-image img {
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stats Section */
.stats {
    padding: 8rem 0 6rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item {
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 107, 95, 0.1);
    border-radius: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 255, 254, 0.8));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #006B5F, #008F7A);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 107, 95, 0.15);
    border-color: #006B5F;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #006B5F;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-label {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Section Grid Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
    padding: 6rem 0;
}

.content-block {
    padding: 4rem 0;
}

.image-block {
    padding: 4rem 0;
    position: relative;
}

.image-block img {
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-block:hover img {
    transform: translateY(-8px) scale(1.02);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background-color: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.feature-item {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 255, 254, 0.9));
    border: 1px solid rgba(0, 107, 95, 0.08);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 107, 95, 0.12);
    border-color: #006B5F;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h3 {
    color: #006B5F;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature-item p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Price Section */
.price-section {
    padding: 8rem 0;
    background-color: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.pricing-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-content > p {
    text-align: center;
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.pricing-block {
    background: #ffffff;
    border: 1px solid rgba(0, 107, 95, 0.08);
    border-radius: 0;
    padding: 3rem;
}

.pricing-block h3 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.duration {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #006B5F;
    letter-spacing: -0.01em;
}

.additional-info {
    background: #ffffff;
    border: 1px solid rgba(0, 107, 95, 0.08);
    border-radius: 0;
    padding: 3rem;
    text-align: center;
}

.additional-info h3 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.additional-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: left;
}

.additional-info li {
    padding: 0.5rem 0;
    color: #666666;
}

.additional-info p {
    color: #666666;
    font-size: 1.1rem;
    margin: 0;
}

/* Gallery */
.gallery {
    padding: 8rem 0;
    background-color: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    border-radius: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.02);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background-color: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    color: #006B5F;
}

.faq-item {
    margin-bottom: 4rem;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    padding-left: 3rem;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: #006B5F;
    border-radius: 50%;
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Contact Teaser */
.contact-teaser {
    padding: 8rem 0;
    background-color: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.contact-form-section h2 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-form-section > p {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-image img {
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-image:hover img {
    transform: translateY(-8px) scale(1.02);
}

/* Location */
.location {
    padding: 8rem 0;
    background-color: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: start;
}

.location-info h3 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.location-info address {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-style: normal;
}

.map-placeholder {
    background: #1a1a1a;
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 107, 95, 0.1), transparent);
}

.map-content {
    position: relative;
    z-index: 1;
}

.map-content p {
    margin: 1rem 0;
    font-weight: 600;
    color: #ffffff;
    font-size: 1.25rem;
}

/* Page Hero */
.page-hero {
    padding: 6rem 0 8rem;
    background: linear-gradient(135deg, #006B5F 0%, #004A42 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), transparent);
}

.page-hero h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 8rem;
}

.content-main {
    padding: 4rem 0;
}

.content-sidebar {
    padding: 4rem 0;
}

.stats-box {
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #d4ede6;
    margin-bottom: 2rem;
}

.stats-box h3 {
    color: #006d5b;
    margin-bottom: 1rem;
}

.stats-list {
    list-style: none;
    padding: 0;
}

.stats-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8f5f0;
}

.stats-list li:last-child {
    border-bottom: none;
}

.stats-list strong {
    color: #006d5b;
}

/* Pricing Tables */
.pricing-section {
    padding: 8rem 0;
    background-color: #fafafa;
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #666666;
}

.pricing-table {
    margin: 4rem 0;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.header {
    background: linear-gradient(135deg, #006B5F, #004A42);
    color: #ffffff;
}

.pricing-cell {
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
}

.pricing-row.header .pricing-cell {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 6rem;
    margin: 4rem 0;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 107, 95, 0.15);
    border-color: #006B5F;
}

.pricing-card.featured {
    border-color: #006B5F;
    box-shadow: 0 8px 40px rgba(0, 107, 95, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.pricing-card h3 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #006B5F;
    margin: 2rem 0;
    letter-spacing: -0.02em;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.featured-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #006B5F, #008F7A);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 107, 95, 0.3);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f2f5;
}

.pricing-card li:last-child {
    border-bottom: none;
}

/* Additional Info */
.additional-info {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8f5f0;
}

.additional-info h2 {
    color: #006d5b;
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f2f5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: #006d5b;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #006d5b 0%, #004d40 100%);
    color: #ffffff;
    border-radius: 12px;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Accordion */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    border: 1px solid #e8f5f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8fffe;
}

.accordion-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #006d5b;
}

.accordion-icon {
    font-size: 1.25rem;
    font-weight: bold;
    color: #006d5b;
    transition: transform 0.3s ease;
}

.accordion-item[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8fffe;
}

.accordion-content p {
    margin: 0;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-section {
    padding: 8rem 0;
    background-color: #fafafa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-intro p {
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.6;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.contact-details-section {
    padding: 8rem 0;
    background-color: #ffffff;
}

.contact-details-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-details-content h2 {
    color: #006B5F;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-details-content > p {
    font-size: 1.25rem;
    color: #666666;
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

.contact-info-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 255, 254, 0.9));
    border: 1px solid rgba(0, 107, 95, 0.08);
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 107, 95, 0.15);
    border-color: #006B5F;
}

.contact-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-info-item h3 {
    color: #006B5F;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info-item address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: normal;
}

.contact-link-large {
    font-size: 1.25rem;
    font-weight: 600;
    color: #006B5F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link-large:hover {
    color: #004A42;
    transform: translateY(-2px);
}

.contact-closing {
    margin-top: 3rem;
}

.contact-closing p {
    font-size: 1.2rem;
    color: #666666;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006B5F;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 107, 95, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.checkbox-label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #6c757d;
}

.checkbox-label a {
    color: #006d5b;
    text-decoration: underline;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    text-align: center;
}

/* Contact Info */
.contact-info-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e8f5f0;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: #006d5b;
    flex-shrink: 0;
}

.contact-method strong {
    color: #006d5b;
    display: block;
    margin-bottom: 0.25rem;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #e8f5f0 0%, #d4ede6 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #c0e0d6;
}

/* FAQ Contact */
.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8f5f0;
}

.faq-contact h2 {
    color: #006d5b;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    border-radius: 8px;
    border: 1px solid #d4ede6;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #006B5F 0%, #004A42 100%);
    color: #ffffff;
    padding: 1.25rem 3rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 107, 95, 0.3);
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 107, 95, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #006B5F;
    border: 2px solid #006B5F;
    box-shadow: none;
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    background-color: #006B5F;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 107, 95, 0.3);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cccccc;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.footer-links a:hover {
    color: #006B5F;
    transform: translateX(4px);
}

.footer-address {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: 1.125rem;
}

.footer-contact {
    display: block;
    color: #ffffff;
    margin-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-contact:hover {
    color: #006B5F;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #888888;
    font-size: 0.95rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 3rem;
    }

    .section-grid,
    .location-content,
    .content-grid,
    .contact-grid {
        gap: 4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 2rem;
    }

    .hero-container,
    .section-grid,
    .location-content,
    .content-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    h1 {
        font-size: 2.75rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .pricing-grid {
        gap: 2rem;
    }

    .pricing-block {
        padding: 2rem;
    }

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

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

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

    .contact-content {
        padding: 0 2rem;
    }

    .contact-intro {
        margin-bottom: 3rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .additional-info ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0 5rem;
    }

    .hero-container {
        padding: 3rem 0;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .page-hero {
        padding: 3rem 0 5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .section-grid,
    .pricing-grid,
    .features-grid,
    .gallery-grid {
        gap: 2rem;
    }

    .pricing-block {
        padding: 1.5rem;
    }

    .price-list {
        gap: 1rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

    .contact-info-grid {
        gap: 1.5rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .additional-info {
        padding: 2rem;
    }

    .additional-info ul {
        gap: 0.5rem;
    }

    .gallery-item img {
        min-height: 200px;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .cta-button {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #006d5b;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .cta-button {
        border: 2px solid #ffffff;
    }

    .cta-button.secondary {
        border: 2px solid #006d5b;
        background-color: #ffffff;
        color: #006d5b;
    }
}
