/* M's Company Theme Styles */

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s;
}

.nav.scrolled,
.nav:not(.home) {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 0.75rem 0;
}

.nav.home:not(.scrolled) {
    background-color: transparent;
    padding: 1.5rem 0;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo-title,
.nav:not(.home) .nav-logo-title {
    color: #1e3a8a;
}

.nav.home:not(.scrolled) .nav-logo-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-logo-subtitle {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo-subtitle,
.nav:not(.home) .nav-logo-subtitle {
    color: #64748b;
}

.nav.home:not(.scrolled) .nav-logo-subtitle {
    color: #e2e8f0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Logo Image Styles */
.nav-logo-img {
    height: auto;
    max-height: 3.5rem;
    width: auto;
    transition: all 0.3s;
    display: block;
    object-fit: contain;
}

/* ホームページでスクロールしていない時はロゴを非表示 */
.nav.home:not(.scrolled) .nav-logo-img {
    display: none;
}

/* ロゴが存在しない場合はナビゲーションロゴを非表示 */
.nav-logo:empty {
    display: none;
}

/* 画像ファイル（PNG、JPGなど）の場合、フィルターで色を変更 */
/* ホームページでスクロールしていない時は白いロゴ */
.nav.home:not(.scrolled) .nav-logo-img:not(svg) {
    filter: brightness(0) invert(1);
}

/* スクロール後や他のページでは青いロゴ（青背景のロゴはそのまま） */
.nav.scrolled .nav-logo-img:not(svg),
.nav:not(.home) .nav-logo-img:not(svg) {
    filter: none;
}

/* SVGの場合の色制御 */
.nav.home:not(.scrolled) .nav-logo-img svg {
    color: #ffffff;
}

.nav.home:not(.scrolled) .nav-logo-img svg * {
    fill: #ffffff;
    stroke: #ffffff;
}

.nav.scrolled .nav-logo-img svg,
.nav:not(.home) .nav-logo-img svg {
    color: #1e3a8a;
}

.nav.scrolled .nav-logo-img svg *,
.nav:not(.home) .nav-logo-img svg * {
    fill: #1e3a8a;
    stroke: #1e3a8a;
}

.footer-logo-img {
    height: auto;
    max-height: 2.5rem;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
    object-fit: contain;
}

/* 画像ファイル（PNG、JPGなど）の場合、白くする */
.footer-logo-img:not(svg) {
    filter: brightness(0) invert(1);
}

/* SVGの場合の色制御 */
.footer-logo-img svg {
    color: #ffffff;
}

.footer-logo-img svg * {
    fill: #ffffff;
    stroke: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
}

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

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

/* モバイルメニューが開いている時 */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    padding: 5rem 1.5rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    gap: 2rem;
    align-items: flex-start;
    z-index: 40;
    overflow-y: auto;
}

.nav.home:not(.scrolled) .nav-menu.active {
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
}

.nav-menu.active .nav-item {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav.home:not(.scrolled) .nav-menu.active .nav-item {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* ハンバーガーメニューボタン */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #1e3a8a;
    transition: all 0.3s;
    border-radius: 2px;
}

.nav.home:not(.scrolled) .hamburger-line {
    background-color: #ffffff;
}

.nav.scrolled .hamburger-line,
.nav:not(.home) .hamburger-line {
    background-color: #1e3a8a;
}

/* メニューが開いている時のハンバーガーアイコン */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-item {
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    color: inherit;
}

.nav-item:hover {
    color: #2563eb;
}

.nav.scrolled .nav-item,
.nav:not(.home) .nav-item {
    color: #334155;
}

.nav.home:not(.scrolled) .nav-item {
    color: #ffffff;
}

.nav-item.active {
    color: #2563eb;
    font-weight: 700;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.6;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #0f172a, rgba(15, 23, 42, 0.6), transparent);
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
}

.hero-inner {
    max-width: 48rem;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-in;
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-in;
}

.hero-title span {
    color: #60a5fa;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    color: #cbd5e1;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: #2563eb;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: #ffffff;
}

.section-gray {
    background-color: #f8fafc;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-description {
    color: #475569;
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
    }
}

.section-header-content {
    max-width: 36rem;
}

.section-link {
    color: #2563eb;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.section-link:hover {
    transform: translateX(0.25rem);
}

.section-link svg {
    width: 20px;
    height: 20px;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-1 {
    grid-template-columns: 1fr;
}

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

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

@media (max-width: 1023px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    padding: 2rem;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    transition: all 0.3s;
    background-color: #f8fafc;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.service-description {
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Services Page */
.services-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .services-title {
        font-size: 3rem;
    }
}

.services-divider {
    width: 5rem;
    height: 0.375rem;
    background-color: #2563eb;
    margin: 0 auto 2rem;
    border-radius: 9999px;
}

.services-intro {
    color: #475569;
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.75;
}

.service-card-large {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s;
    position: relative;
}

.service-card-large:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.service-icon-large {
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    color: #2563eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card-large:hover .service-icon-large {
    background-color: #2563eb;
    color: #ffffff;
}

.service-icon-large svg {
    width: 24px;
    height: 24px;
}

.service-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-description-large {
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.service-details {
    color: #64748b;
    line-height: 1.75;
    font-size: 0.875rem;
    flex-grow: 1;
}

.service-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f8fafc;
}

.service-footer-text {
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Special Highlight Section */
.highlight-section {
    margin-top: 6rem;
    background-color: #eff6ff;
    border-radius: 3rem;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .highlight-section {
        flex-direction: row;
        padding: 4rem;
    }
}

.highlight-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .highlight-content {
        width: 50%;
    }
}

.highlight-badge {
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.highlight-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .highlight-title {
        font-size: 2.25rem;
    }
}

.highlight-description {
    color: #475569;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.highlight-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .highlight-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    font-weight: 500;
}

.highlight-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: #2563eb;
    border-radius: 50%;
}

.highlight-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .highlight-image {
        width: 50%;
    }
}

.highlight-image img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
}

/* Overview Page */
.overview-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: #f8fafc;
}

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

.overview-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .overview-title {
        font-size: 3rem;
    }
}

.overview-subtitle {
    color: #64748b;
    font-style: italic;
}

.overview-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .overview-content {
        flex-direction: row;
    }
}

.overview-greeting {
    width: 100%;
}

@media (min-width: 1024px) {
    .overview-greeting {
        width: 33.333333%;
    }
}

.greeting-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.greeting-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.greeting-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.greeting-quote-mark {
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-size: 4rem;
    color: #dbeafe;
    font-family: serif;
    opacity: 0.5;
}

.greeting-text {
    position: relative;
    color: #475569;
    line-height: 1.75;
    font-style: italic;
}

.greeting-signature {
    text-align: right;
}

.greeting-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.greeting-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}

.overview-info {
    width: 100%;
}

@media (min-width: 1024px) {
    .overview-info {
        width: 66.666667%;
    }
}

.info-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1.5rem;
    transition: background-color 0.3s;
}

.info-row:not(:last-child) {
    border-bottom: 1px solid #f8fafc;
}

.info-row:hover {
    background-color: #f8fafc;
}

@media (min-width: 640px) {
    .info-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .info-label {
        margin-bottom: 0;
    }
}

.info-value {
    grid-column: span 1;
    font-weight: 700;
    font-size: 1.125rem;
    color: #0f172a;
}

@media (min-width: 640px) {
    .info-value {
        grid-column: span 2;
    }
}

.info-value-sub {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .info-value-sub {
        display: inline;
        margin-left: 0.5rem;
    }
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-tag {
    background-color: #eff6ff;
    color: #1e40af;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid #dbeafe;
}

/* Map Section */
.map-section {
    max-width: 80rem;
    margin: 0 auto;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.map-container iframe {
    border-radius: 1rem;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contact Page */
.contact-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: #ffffff;
}

.contact-header {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-description {
    color: #475569;
    margin-bottom: 4rem;
    line-height: 1.75;
    font-size: 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 48rem;
    margin: 0 auto 5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 2.5rem;
    border: 1px solid #f1f5f9;
    transition: all 0.5s;
    text-align: center;
}

.contact-card:hover {
    background-color: #2563eb;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: #ffffff;
    color: #2563eb;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.contact-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.contact-card:hover .contact-label {
    color: #bfdbfe;
}

.contact-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.contact-card:hover .contact-value {
    color: #ffffff;
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value-secondary {
    color: #64748b;
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.contact-card:hover .contact-value-secondary {
    color: #dbeafe;
}

.contact-value-secondary a {
    color: inherit;
    text-decoration: none;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
    transition: color 0.3s;
}

.contact-card:hover .contact-note {
    color: #bfdbfe;
}

.contact-map-section {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-map-container {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 2rem;
    border: 1px solid #f1f5f9;
}

.contact-map-title {
    color: #334155;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-map-title svg {
    width: 24px;
    height: 24px;
}

.contact-map-address {
    color: #475569;
    margin-bottom: 1.5rem;
}

.contact-map-iframe {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    background-color: #e2e8f0;
}

.contact-map-iframe iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 4rem 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #1e293b;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        align-items: center;
    }
}

.footer-brand {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.875rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    font-size: 0.875rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-copyright {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.75rem;
    color: #475569;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

/* Page Specific Padding */
.page-content {
    padding-top: 8rem;
    padding-bottom: 6rem;
}
