/* ========================================
   Harmony Garden - Main Stylesheet
   ======================================== */

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

:root {
    /* Color Palette */
    --primary-color: #e8b4c8;
    --secondary-color: #b8a9d4;
    --accent-color: #f3d9a0;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #fef9f5;
    --border-color: #e8e8e8;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Serif JP', serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========== Container ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Typography ========== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(232, 180, 200, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 180, 200, 0.4);
}

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

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

.btn-service {
    background: var(--accent-color);
    color: var(--text-color);
    width: 100%;
    margin-top: auto;
}

.btn-service:hover {
    background: var(--secondary-color);
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    font-size: 1.1rem;
    padding: 1.125rem 2.5rem;
    box-shadow: 0 4px 20px rgba(184, 169, 212, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 169, 212, 0.5);
}

/* Disabled Button Styles */
.btn.disabled,
span.btn {
    cursor: not-allowed;
    pointer-events: none;
}

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ========== Header ========== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-menu a:not(.btn-contact):hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:not(.btn-contact):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 180, 200, 0.3);
}

.btn-contact.disabled {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

span.btn-contact.disabled {
    display: inline-block;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    background: url('../images/hero-piano-garden.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: flex-start;
}

/* グラデーションオーバーレイ - 上部のみ暗く */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(254, 249, 245, 0.75) 0%, rgba(254, 249, 245, 0.4) 40%, rgba(254, 249, 245, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem var(--spacing-md) 2rem;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #d4789d;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(255, 255, 255, 1),
                 0 2px 8px rgba(255, 255, 255, 0.9),
                 0 0 30px rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9a7bb8;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 1),
                 0 1px 6px rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-description {
    font-size: 1.125rem;
    color: #444444;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 1),
                 0 1px 4px rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Decoration - Hidden when background image is used */
.hero-decoration {
    display: none;
}

/* ========== Introduction Section ========== */
.introduction {
    padding: var(--spacing-xl) 0;
    background: white;
}

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

.intro-text {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* スマホで br タグを非表示にして自然な改行にする */
@media (max-width: 768px) {
    .intro-text br {
        display: none;
    }
}

/* ========== Services Section ========== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.service-features i {
    color: var(--primary-color);
}

/* ========== Philosophy Section ========== */
.philosophy {
    padding: var(--spacing-xl) 0;
    background: white;
}

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

.philosophy-text {
    text-align: center;
}

.philosophy-text p {
    font-size: 1.125rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* スマホで br タグを非表示にして自然な改行にする */
@media (max-width: 768px) {
    .philosophy-text br {
        display: none;
    }
}

.signature {
    margin-top: 2rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
}

.philosophy-link {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* ========== Testimonials Section ========== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.author-info {
    font-weight: 500;
    color: var(--primary-color);
    text-align: right;
}

/* ========== CTA Section ========== */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* スマホで br タグを非表示にして自然な改行にする */
@media (max-width: 768px) {
    .cta-text br {
        display: none;
    }
}

/* ========== Footer ========== */
.footer {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

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

.footer-address {
    margin-top: 1rem;
    color: #b0b0b0;
}

.footer-links h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-note {
    font-size: 0.875rem;
    color: #b0b0b0;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #444;
    color: #b0b0b0;
}

/* ========== Scroll to Top Button ========== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========== Page Header (for subpages) ========== */
.page-header {
    background: linear-gradient(135deg, #fef9f5 0%, #f9f0f7 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* ========== Section (for content pages) ========== */
.section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ========== Profile Page Styles ========== */
.profile-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.profile-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-info {
    padding: var(--spacing-md);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-style: italic;
}

.profile-role {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
}

.profile-intro {
    line-height: 2;
    color: var(--text-light);
}

.profile-intro p {
    margin-bottom: 1rem;
}

.profile-section {
    margin-bottom: var(--spacing-xl);
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: -var(--spacing-lg);
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    margin-left: calc(var(--spacing-lg) / 2);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: right;
    padding-top: 0.5rem;
    font-weight: 600;
}

.timeline-content {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid white;
    border-radius: 50%;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

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

/* Message Box */
.message-box {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.message-box p {
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.message-box p:last-of-type {
    margin-bottom: 0;
}

.message-signature {
    text-align: right;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: var(--spacing-md);
    font-weight: 600;
}

/* Services Grid on Profile Page */
.profile-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.profile-section .service-card {
    text-align: center;
}

.profile-section .service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.profile-section .service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-outline-sm {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-sm:hover {
    background: var(--primary-color);
    color: white;
}

/* CTA Section on Profile Page */
.cta-section {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #fef9f5 0%, #f9f0f7 100%);
    border-radius: 20px;
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer Nav Update */
.footer-nav h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-nav ul li {
    margin-bottom: 0.75rem;
}

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

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
}

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

[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease-out;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 1rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        min-height: 550px;
        align-items: flex-start;
        background-position: center 30%;
    }
    
    .hero::before {
        background: linear-gradient(to bottom, rgba(254, 249, 245, 0.85) 0%, rgba(254, 249, 245, 0.5) 35%, rgba(254, 249, 245, 0.15) 100%);
    }
    
    .hero-content {
        padding: 2rem var(--spacing-sm) 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* ヒーローセクションの改行を非表示 */
    .hero-description br {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Profile Page Responsive */
    .profile-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .profile-name {
        font-size: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-year {
        text-align: left;
        font-size: 1.25rem;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .hero {
        min-height: 500px;
        background-position: center 35%;
    }
    
    .hero::before {
        background: linear-gradient(to bottom, rgba(254, 249, 245, 0.9) 0%, rgba(254, 249, 245, 0.6) 30%, rgba(254, 249, 245, 0.2) 100%);
    }
    
    .hero-content {
        padding: 1.5rem var(--spacing-sm) 1.25rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
    
    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    /* Profile Page Small Screen */
    .page-title {
        font-size: 2rem;
    }
    
    .profile-name {
        font-size: 1.75rem;
    }
    
    .message-box {
        padding: var(--spacing-md);
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
}
