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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --text-color: #2c2c2c;
    --text-light: #666;
    --accent-color: #c9a961;
    --bg-light: #f8f8f8;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    margin-top: 70px;
    position: relative;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(51, 51, 51, 0.8) 100%);
    z-index: 0;
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-content-below {
    background-color: var(--white);
    padding: 60px 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-text {
    text-align: left;
}

.hero-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-text .highlight-text {
    font-size: 1.1rem !important;
    font-style: italic;
    color: var(--text-light) !important;
    font-weight: 400;
    margin-top: 1.5rem !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-alt {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

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

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.content-wrapper p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.values-preview-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.values-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.values-preview-image:hover img {
    transform: scale(1.05);
}

.values-preview-content {
    padding: 0 20px;
}

.values-preview-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.values-preview-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.values-preview-content .show-more-btn {
    display: inline-block;
}

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

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s ease forwards;
}

.values-list li:nth-child(1) { animation-delay: 0.1s; }
.values-list li:nth-child(2) { animation-delay: 0.2s; }
.values-list li:nth-child(3) { animation-delay: 0.3s; }
.values-list li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.values-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}

.values-list li strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.values-list li p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Expertise Intro */
.expertise-intro {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: center;
}

.expertise-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: justify;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 0;
    padding: 0 20px;
}

.expertise-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 0;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.expertise-card:nth-child(1) { animation-delay: 0.1s; }
.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.3s; }
.expertise-card:nth-child(4) { animation-delay: 0.4s; }
.expertise-card:nth-child(5) { animation-delay: 0.5s; }
.expertise-card:nth-child(6) { animation-delay: 0.6s; }
.expertise-card:nth-child(7) { animation-delay: 0.7s; }
.expertise-card:nth-child(8) { animation-delay: 0.8s; }
.expertise-card:nth-child(9) { animation-delay: 0.9s; }

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

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), rgba(201, 169, 97, 0.5));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.2);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.expertise-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding: 20px 25px 15px;
    color: var(--primary-color);
    line-height: 1.4;
    transition: color 0.3s ease;
    flex-grow: 1;
}

.expertise-card:hover h3 {
    color: var(--accent-color);
}

.expertise-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    display: block;
    transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-card-image {
    transform: scale(1.05);
}

.card-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: auto;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 25px 20px;
}

.expertise-card:hover .card-link {
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Show More Button */
.expertise-show-more {
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
}

.show-more-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.show-more-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Expertise List Grid (for full expertise page) */
.expertise-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 0;
    padding: 0 20px;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-form {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), rgba(201, 169, 97, 0.5));
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 16px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Contact Hero Section (Home Page) */
.contact-hero-section {
    position: relative;
    min-height: 500px;
    height: 60vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(51, 51, 51, 0.82) 100%);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-section .container {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Contact CTA Section */
.contact-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-cta-content {
    padding: 0 20px;
}

.contact-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.contact-hero-section .contact-cta-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-cta-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.contact-hero-section .contact-cta-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 400;
}

.contact-cta-button {
    text-align: center;
}

.contact-hero-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-btn:hover {
    background-color: var(--white);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
}

/* Contact Page Layout */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-info-section {
    padding: 0;
    padding-left: 40px;
}

.contact-info-section h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    text-decoration: none;
}

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

.contact-map {
    margin-top: 20px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.contact-map:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-nav {
    text-align: right;
}

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

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #C9A961;
    text-decoration: underline;
}

.footer-address,
.footer-contact,
.footer-hours {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    margin: 15px 0;
}

.contact-label {
    font-weight: 600;
    color: var(--white);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Page */
.about-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-top: 70px;
    text-align: left;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(51, 51, 51, 0.85) 100%);
    z-index: 0;
}

.about-hero > * {
    position: relative;
    z-index: 1;
}

.about-hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
    text-align: left;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    animation: fadeIn 0.8s ease;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    font-size: 0.95rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.breadcrumb-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 5px;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.about-content-section {
    padding: 40px 0;
    background-color: var(--white);
}

.about-content {
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0 5px;
}

.about-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.about-content h2:first-child {
    margin-top: 0;
    margin-bottom: 15px;
}

.about-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.about-content h3:first-of-type {
    margin-top: 15px;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 12px;
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.about-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 30px;
    position: relative;
}

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

/* Detail Pages */
.detail-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
    margin-top: 70px;
    position: relative;
}

.detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(51, 51, 51, 0.8) 100%);
    z-index: 0;
}

.detail-hero > * {
    position: relative;
    z-index: 1;
}

.detail-hero-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 30px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-link:hover {
    color: var(--white);
    transform: translateX(-5px);
}

.detail-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    animation: fadeIn 0.8s ease;
    margin-bottom: 15px;
}

.detail-content-section {
    padding: 50px 0;
    background-color: var(--white);
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-content h2 {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.detail-content h2:first-child {
    margin-top: 0;
}

.detail-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 12px;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.detail-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.detail-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.detail-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.detail-list li:hover::before {
    transform: translateX(3px);
}

.approach-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 400;
    margin-top: 10px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        gap: 1.5rem;
    }

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

    .hamburger {
        display: flex;
    }

    /* Fix hero carousel on mobile */
    .hero-carousel {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-slide {
        background-attachment: scroll !important;
    }

    .about-hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        height: 40vh;
        min-height: 300px;
    }

    .detail-hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        height: 40vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content-below {
        padding: 40px 0;
    }

    .hero-text {
        margin-top: 0;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-text .highlight-text {
        font-size: 1rem !important;
    }

    .section {
        padding: 40px 0;
    }

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

    .content-wrapper p {
        font-size: 0.9rem;
    }

    .expertise-intro {
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .expertise-intro p {
        font-size: 0.9rem;
        text-align: left;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .expertise-list-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .expertise-show-more {
        margin-top: 30px;
        padding: 0 10px;
    }

    .show-more-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .expertise-card {
        padding: 30px 20px;
    }

    .expertise-card h3 {
        font-size: 1.2rem;
    }

    .detail-section {
        padding: 120px 0 60px;
    }

    .detail-header h1 {
        font-size: 2rem;
    }

    .detail-section-block {
        padding: 20px;
    }

    .detail-section-block h2 {
        font-size: 1.5rem;
    }

    .detail-list li {
        font-size: 1rem;
    }

    .approach-text {
        font-size: 1.1rem !important;
    }

    .values-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-preview-image {
        height: 300px;
        order: 1;
    }

    .values-preview-content {
        padding: 0;
        order: 2;
    }

    .values-preview-content .section-title {
        text-align: center;
    }

    .values-list li {
        margin-bottom: 20px;
        padding-left: 30px;
    }

    .values-list li strong {
        font-size: 1.1rem;
    }

    .values-list li p {
        font-size: 0.9rem;
    }

    .about-hero {
        height: 40vh;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-content {
        padding: 0 20px;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
        margin-top: 0;
    }

    .about-content-section {
        padding: 30px 0;
    }

    .about-content {
        padding: 0 5px;
        margin-bottom: 20px;
    }

    .about-content h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .about-content h2:first-child {
        margin-top: 0;
    }

    .about-content h3 {
        font-size: 1.15rem;
        margin-top: 18px;
        margin-bottom: 8px;
    }

    .about-content h3:first-of-type {
        margin-top: 12px;
    }

    .about-content p {
        font-size: 0.9rem;
        text-align: left;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .about-content p:last-child {
        margin-bottom: 0;
    }

    .about-list li {
        font-size: 1rem;
        padding: 6px 0;
        padding-left: 25px;
    }

    .detail-hero-title {
        font-size: 2.2rem;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
        margin-top: 0;
    }

    .detail-hero-content {
        padding: 0 20px;
    }

    .detail-content-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        padding: 0 20px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav {
        text-align: left;
    }

    .footer-address,
    .footer-contact,
    .footer-hours {
        font-size: 0.9rem;
    }

    .contact-hero-section {
        background-attachment: scroll !important;
        min-height: 400px;
        height: auto;
        padding: 60px 0;
        margin-top: 50px;
    }

    .contact-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        padding: 0 20px;
    }

    .contact-cta-content {
        padding: 0;
    }

    .contact-cta-title {
        font-size: 1.7rem;
    }

    .contact-hero-section .contact-cta-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .contact-hero-section .contact-cta-text {
        font-size: 1rem;
    }

    .contact-hero-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section {
        padding: 0;
        padding-left: 0;
    }

    .contact-info-section h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-map {
        margin-top: 15px;
    }

    .contact-map iframe {
        height: 250px;
    }

    .contact-form {
        padding: 35px 25px;
        border-radius: 12px;
    }

    .contact-form-wrapper {
        padding: 0;
    }

    /* Contact page container adjustment for mobile */
    .about-content-section .container[style*="max-width: 1400px"] {
        padding: 0 20px !important;
    }
}
