@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap');

/* ==========================================================================
   DESIGN TOKENS & RESET
   ========================================================================== */
:root {
    --bg-primary: #050a15;
    --bg-secondary: #0c152b;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.55);
    
    --color-primary: #ff6a00; /* 情熱のオレンジ */
    --color-primary-rgb: 255, 106, 0;
    --color-secondary: #d4a337; /* 信頼のゴールド */
    --color-secondary-rgb: 212, 163, 55;
    --color-navy-light: #16274d;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 106, 0, 0.25);
    --glass-blur: blur(20px);
    
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-english: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-primary);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, .section-title, .hero-title {
    font-family: var(--font-serif);
}

/* ==========================================================================
   FLUID BACKGROUND GRADIENT (流体グラデーション背景 - 温かみのある暖色系をブレンド)
   ========================================================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: linear-gradient(140deg, var(--bg-primary), var(--bg-secondary));
}

/* 背景を温かく彩る光球 */
.bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    filter: blur(100px);
}

.glow-orange {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.12) 0%, rgba(255, 106, 0, 0) 70%);
    top: -200px;
    right: -100px;
    animation: floatGlow 20s infinite alternate;
}

.glow-gold {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 55, 0.08) 0%, rgba(212, 163, 55, 0) 70%);
    bottom: -150px;
    left: -100px;
    animation: floatGlow 25s infinite alternate-reverse;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 80px) scale(1.1); }
}

/* ==========================================================================
   GLASSMORPHISM BASE CLASS
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.glass-card:hover {
    border-color: rgba(255, 106, 0, 0.2);
    box-shadow: 0 15px 50px -10px rgba(255, 106, 0, 0.1);
}

/* ==========================================================================
   NAVBAR (ガラス風ナビゲーション)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 10, 21, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    padding: 5px 0;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--color-primary);
    position: relative;
    margin-right: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.nav-btn {
    text-decoration: none;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: var(--text-primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
    transition: var(--transition-smooth);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.5);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: var(--text-primary);
    border: none;
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   LAYOUT & SECTIONS
   ========================================================================== */
.section-padding {
    padding: 120px 40px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-english);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #ffffff, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   1. HERO SECTION (ヒーローセクション)
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 106, 0, 0.08) 0%, rgba(5, 10, 21, 0) 60%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-primary) 5%, rgba(5, 10, 21, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.3rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.text-highlight {
    background: linear-gradient(120deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   2. CO-SYMPATHY SECTION (共感お悩みセクション)
   ========================================================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pain-card {
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    position: relative;
}

.pain-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.pain-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-left: 3px solid var(--color-primary);
    padding-left: 12px;
}

.pain-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   CONCEPT SECTION (伴走コンセプト)
   ========================================================================== */
.concept-section {
    background: rgba(255, 255, 255, 0.01);
}

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

.concept-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.concept-image-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    position: relative;
    aspect-ratio: 4/3;
}

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

.concept-content {
    padding: 50px;
}

.concept-badge {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.concept-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
}

.concept-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

/* ==========================================================================
   3. STRENGTHS SECTION (選ばれる理由)
   ========================================================================== */
.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strength-item {
    display: flex;
    gap: 40px;
    padding: 40px 50px;
    align-items: center;
}

.strength-num {
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 106, 0, 0.25);
    line-height: 1;
}

.strength-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.strength-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   4. SERVICES SECTION (5つの引き出し)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 5つのカードを綺麗に配置（グリッドコントロール） */
.services-grid .service-card:nth-child(4) {
    grid-column: span 1;
}

.service-card {
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(212, 163, 55, 0.08);
    color: var(--color-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: var(--text-primary);
    transform: scale(1.05);
    transition: var(--transition-smooth);
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-bullets li i {
    width: 14px;
    height: 14px;
    color: var(--color-secondary);
}

/* ==========================================================================
   5. PRICING SECTION (料金システム)
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* 竹プラン（スタンダード）をおすすめとして強調 */
.pricing-card.popular {
    border: 2px solid var(--color-primary);
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(255, 106, 0, 0.15);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.plan-badge {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 38px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.badge-bronze { background: #ab7a4e; color: #fff; }
.badge-silver { background: #b8c4c7; color: #333; }
.badge-gold { background: #e5b842; color: #fff; }

.pricing-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.price span {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-english);
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-body li i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-body li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-body li.disabled i {
    color: var(--text-muted);
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   REPRESENTATIVE PROFILE SECTION (代表紹介)
   ========================================================================== */
.profile-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.profile-desc-box {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.profile-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.profile-name-kana {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.profile-message p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-message p:last-child {
    margin-bottom: 0;
}

/* ギャラリー部分 */
.profile-gallery-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    padding: 15px;
    border-radius: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-main img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.25s ease-in-out;
}

.gallery-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumb-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    aspect-ratio: 4/3;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.thumb-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(255, 106, 0, 0.4);
}

/* ==========================================================================
   6. CONTACT SECTION (お問い合わせ・フォーム)
   ========================================================================== */
.contact-box {
    padding: 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-badge {
    display: inline-block;
    color: var(--color-primary);
    font-family: var(--font-english);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.15);
}

/* チェックボックスグループ */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.btn-cta {
    align-self: center;
    padding: 18px 45px;
    font-size: 1.1rem;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    border-top: 1px solid var(--glass-border);
    background: rgba(5, 10, 21, 0.95);
    padding: 60px 40px;
    text-align: center;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   ANIMATIONS & REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .gallery-main img {
        height: 300px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 20px;
    }
    .nav-container {
        padding: 20px 20px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 10, 21, 0.98);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        padding: 30px 20px;
        border-bottom: 1px solid var(--glass-border);
        gap: 20px;
    }
    .nav-menu.show {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .strength-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 30px;
    }
    .strength-num {
        font-size: 2.5rem;
    }
    .contact-box {
        padding: 40px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .profile-desc-box {
        padding: 30px 20px;
    }
    .gallery-main img {
        height: 250px;
    }
}
