/*
Theme Name: My Custom Theme
Theme URI: https://dmhayat.com/
Author: DM Hayat
Author URI: https://dmhayat.com/
Description: A premium dark theme for dmhayat.com matching the Figma design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0c0a07;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Helper Class Utilities */
.text-center {
    text-align: center;
}

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

/* Section Common Headers */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 850px;
    margin: 0 auto;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 6% 0 6%;
}

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

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    flex-shrink: 0;
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); filter: drop-shadow(0 0 2px rgba(216, 168, 65, 0.2)); }
    50% { filter: drop-shadow(0 0 6px rgba(216, 168, 65, 0.6)); }
    100% { transform: rotate(360deg); filter: drop-shadow(0 0 2px rgba(216, 168, 65, 0.2)); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d8a841;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 1px;
}

.brand-tagline {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #d8a841;
    opacity: 0.9;
    margin-top: 2px;
}

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    opacity: 1;
    color: #d8a841;
}

.nav-link.active {
    opacity: 1;
    color: #d8a841;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d8a841;
    border-radius: 2px;
}

.btn-contact {
    display: inline-block;
    background-color: #d8a841;
    color: #0c0a07;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(216, 168, 65, 0.2);
}

.btn-contact:hover {
    background-color: #e2b95b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 168, 65, 0.4);
}

/* SECTION 1: HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 10, 7, 0.85) 0%, rgba(12, 10, 7, 0.45) 50%, rgba(12, 10, 7, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 6% 80px 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-content {
    max-width: 680px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-explore {
    display: inline-block;
    background-color: #d8a841;
    color: #0c0a07;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(216, 168, 65, 0.25);
}

.btn-explore:hover {
    background-color: #e2b95b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 168, 65, 0.4);
}

.btn-specialities {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s;
}

.btn-specialities:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Hero Sidebar & Widgets */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 20px;
}

.satisfaction-badge {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rating-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.rating-label {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    margin-bottom: 12px;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #0c0a07;
    margin-left: -12px;
    object-fit: cover;
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2.5px solid #0c0a07;
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-right: 15px;
}

.scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-arrow {
    animation: bounceIndicator 2s infinite;
}

@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* Hero Footer / Absolute Positioned Bottom Content */
.hero-footer {
    position: absolute;
    bottom: 40px;
    left: 6%;
    right: 6%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(12, 10, 7, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(12px);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.status-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
}

.status-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
}

.fab-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d8a841;
    color: #0c0a07;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(216, 168, 65, 0.3);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.fab-contact-btn:hover {
    background-color: #e2b95b;
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 25px rgba(216, 168, 65, 0.5);
}

/* SECTION 2: REDEFINING HEALTHCARE EXPERIENCE */
.redefining-section {
    background-color: #0d0b08;
    padding: 100px 6%;
}

.redefining-header {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.feature-box {
    background-color: rgba(216, 168, 65, 0.03);
    border: 1px solid rgba(216, 168, 65, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    background-color: rgba(216, 168, 65, 0.08);
    border-color: #d8a841;
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(216, 168, 65, 0.15);
}

.feature-icon {
    width: 34px;
    height: 34px;
    color: #d8a841;
}

.feature-title {
    font-size: 1.02rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.stat-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.left-stats {
    align-items: flex-end;
    text-align: right;
}

.right-stats {
    align-items: flex-start;
    text-align: left;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #d8a841;
    line-height: 1;
}

.stat-label {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.stat-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-photo {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.team-photo:hover {
    transform: scale(1.03);
}

.redefining-action {
    text-align: center;
}

.btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #d8a841;
    color: #0c0a07;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 36px;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(216, 168, 65, 0.2);
}

.btn-readmore:hover {
    background-color: #e2b95b;
    transform: translateY(-2px);
}

.arrow-right {
    transition: transform 0.2s;
}

.btn-readmore:hover .arrow-right {
    transform: translateX(4px);
}

/* SECTION 3: CARE PHILOSOPHY */
.philosophy-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 6%;
}

.philosophy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 10, 7, 0.92) 0%, rgba(12, 10, 7, 0.6) 60%, rgba(12, 10, 7, 0.8) 100%);
    z-index: 1;
}

.philosophy-card {
    position: relative;
    z-index: 2;
    max-width: 580px;
    background-color: rgba(20, 18, 15, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.philosophy-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d8a841;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.philosophy-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.philosophy-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-weight: 300;
}

.philosophy-subtag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #d8a841;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.philosophy-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.philosophy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.philosophy-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
}

.list-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* SECTION 4: COMPLETE CARE UNDER ONE ROOF */
.services-section {
    background-color: #0c0a07;
    padding: 100px 6%;
}

.services-header {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: rgba(20, 18, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    background-color: rgba(216, 168, 65, 0.03);
    border-color: rgba(216, 168, 65, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(216, 168, 65, 0.08);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(216, 168, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 8px;
    color: #d8a841;
}

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

.service-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

/* SECTION 5: OUR SPECIALISTS */
.specialists-section {
    background-color: #0d0b08;
    padding: 100px 6%;
}

.specialists-header {
    margin-bottom: 60px;
}

.specialists-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #d8a841;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background-color: rgba(20, 18, 15, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.doctor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216, 168, 65, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.doctor-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #1a1714;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, filter 0.3s;
    filter: grayscale(20%);
}

.doctor-card:hover .doctor-photo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.doctor-info {
    padding: 20px;
    text-align: center;
}

.doctor-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.doctor-dept {
    font-size: 0.85rem;
    color: #d8a841;
    font-weight: 500;
}

/* SECTION 6: BOOK APPOINTMENT */
.booking-section {
    background-color: #0c0a07;
    padding: 120px 6%;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.booking-form-container {
    background-color: rgba(20, 18, 15, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 45px;
}

.booking-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
}

.booking-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 36px;
    font-weight: 300;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d8a841;
    background-color: rgba(255, 255, 255, 0.06);
}

.form-group select option {
    background-color: #12100d;
    color: #ffffff;
}

.btn-submit {
    background-color: #d8a841;
    color: #0c0a07;
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(216, 168, 65, 0.2);
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e2b95b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 168, 65, 0.4);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, rgba(216, 168, 65, 0.06) 0%, rgba(20, 18, 15, 0.4) 100%);
    border: 1px solid rgba(216, 168, 65, 0.15);
    border-radius: 20px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
}

.info-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-top: -12px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: #d8a841;
    flex-shrink: 0;
    margin-top: 3px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #d8a841;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.info-value {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

/* RESPONSIVE LAYOUT MEDIA QUERIES */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 1024px) {
    .site-header {
        padding-top: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }

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

    .rating-value {
        font-size: 2.3rem;
    }

    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .left-stats, .right-stats {
        align-items: center;
        text-align: center;
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .stat-image-container {
        max-width: 480px;
        margin: 0 auto;
        order: -1;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-navigation {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-contact {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 180px;
        padding-bottom: 120px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-sidebar {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .satisfaction-badge {
        align-items: flex-start;
        text-align: left;
    }

    .scroll-down-indicator {
        display: none;
    }

    .hero-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        bottom: 20px;
    }

    .fab-contact-btn {
        position: fixed;
        bottom: 20px;
        right: 6%;
        z-index: 1000;
        width: 50px;
        height: 50px;
    }

    /* Section Mobile Resets */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-box {
        padding: 24px 16px;
    }

    .left-stats, .right-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .philosophy-card {
        padding: 30px 24px;
    }

    .philosophy-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .booking-form-container, .contact-info-card {
        padding: 25px 20px;
    }

    .booking-title {
        font-size: 1.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}
