 :root {
    --primary-color: #c13832;
    --primary-dark: #952624;
    --primary-light: #e01515;
    --secondary-color: #952624;
    --dark-red: #7a1f1f;
    --light-red: #ffe5e5;
    --lighter-red: #fff5f5;
    --text-dark: #1a365d;
    --text-gray: #44596E;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f7fa;
    --white: #ffffff;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(203, 12, 12, 0.06);
    --shadow-sm: 0 2px 8px rgba(203, 12, 12, 0.08);
    --shadow-md: 0 4px 16px rgba(203, 12, 12, 0.12);
    --shadow-lg: 0 8px 32px rgba(203, 12, 12, 0.16);
    --shadow-xl: 0 16px 48px rgba(203, 12, 12, 0.2);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}
  
/* ========================================
   BUTTONS
   ======================================== */
.btn {
    font-weight: 400;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.btn-outline-primary {
    font-size: 1rem;
    padding: .75rem 1.2rem;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
    background: transparent;
}

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

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

.btn-light:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

/* ========================================
   HERO SECTION
   ======================================== */
.dialys-section {
    position: relative;
    background: linear-gradient(135deg, var(--lighter-red) 0%, var(--white) 50%, #fff4f4 100%);
    padding: 40px 0 30px;
    overflow: hidden;
}

.dialys-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    /* animation: pulse 2s infinite; */
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(203, 12, 12, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(203, 12, 12, 0);
    }
}

.dialys-title {
    font-size: 3.2rem;
    font-weight: 700;
    /* color: var(--primary-color);
    margin: 1rem 0;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.dialys-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 400;
    max-width: 550px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.dialys-cta-group {
    margin-bottom: 2rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(203, 12, 12, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Hero Image */
.dialys-image-wrapper {
    position: relative;
}

.dialys-image {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dialys-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

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

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.stat-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

.stat-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-small i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.05;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -250px;
    right: -250px;
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-dark);
    bottom: -150px;
    left: -150px;
    animation: rotate 15s linear infinite reverse;
}

/* Decorative Elements */
.decorative-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.dot-1 {
    top: 8%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.dot-2 {
    bottom: 15%;
    left: 15%;
    width: 8px;
    height: 8px;
    animation: float 5s ease-in-out infinite 1s;
}

.dot-3 {
    top: 60%;
    right: 8%;
    width: 10px;
    height: 10px;
    animation: float 7s ease-in-out infinite 2s;
}

.decorative-cross {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

.decorative-cross::before,
.decorative-cross::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
}

.decorative-cross::before {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.decorative-cross::after {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.cross-1 {
    top: 5%;
    right: 10%;
    animation: rotate 10s linear infinite;
}

.cross-2 {
    bottom: 20%;
    right: 15%;
    width: 20px;
    height: 20px;
    animation: rotate 8s linear infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 20px 0 40px;
    /* margin-top: -60px; */
    position: relative;
    z-index: 10;
    margin-bottom: 0px;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stat-card-inner {
    position: relative;
    z-index: 2;
    padding: 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transform: translate(30%, -30%);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover .stat-card-overlay {
    transform: translate(40%, -40%) scale(1.2);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    transition: var(--transition);
}

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

.stat-icon i {
    font-size: 1.65rem;
    color: var(--white);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number .plus {
    font-size: 2rem;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   CONTENT SECTION
   ======================================== */
.content-section {
    padding: 60px 0;
    background-color: var(--white);
}

.scdialys-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--lighter-red);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.scdialys-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* .scdialys-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
} */

.scdialys-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 0;
}

/* Content Blocks */
.content-block {
    background: var(--white);
    padding: 1rem 0;
}

.content-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.content-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.scdialys-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.scdialys-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.25rem;
}
.scdialys-text strong{color: var(--primary-color);}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--lighter-red), var(--white));
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--light-red);
    height: 100%;
}

.info-box-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-box-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.info-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-list {
    list-style: none;
    padding: 0;
}

.location-list li {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(203, 12, 12, 0.1);
}

.location-list li:last-child {
    border-bottom: none;
}

.location-list i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2rem;
    border-radius: var(--radius-md);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}
.highlight-box ul{ margin-bottom: 0px;}

.highlight-box h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 800;
    color: var(--white);
}

/* Treatment Cards */
.treatmentdialys-card {
    background: var(--white);
    border: 2px solid var(--light-red);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
 

.treatmentdialys-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.treatmentdialys-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.treatmentdialys-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lighter-red), var(--light-red));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.treatmentdialys-card:hover .treatmentdialys-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.treatmentdialys-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.treatmentdialys-card:hover .treatmentdialys-icon i {
    color: var(--white);
}

.treatmentdialys-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.treatmentdialys-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.treatmentdialys-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--lighter-red);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-tag i {
    font-size: 1rem;
}

/* ========================================
   WHY CHOOSE AINU SECTION
   ======================================== */
.whydialys-section {
 
    background: var(--white);
}

.whydialys-content {
    text-align: center;
}

.whydialys-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.text-primary-red {
    color: var(--primary-color);
}

.whydialys-text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 0px;
}

.whydialys-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   OUR LOCATIONS SECTION
   ======================================== */
.sdlocations-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--lighter-red) 0%, #ffeaea 100%);
    position: relative;
}

.scdialys-title-locations {
    font-size:2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.sdlocation-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    border: 2px solid transparent;
}

.sdlocation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.sdlocation-card-inner {
    padding: 2rem;
    text-align: center;
}

.location-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.location-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.location-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* ========================================
   WE SPECIALIZE IN SECTION
   ======================================== */
.specialize-section {
     
    background: var(--white);
}

.scdialys-title-specialize {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.specialize-card {
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-md);
    padding: 1.6rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.specialize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.specialize-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

/* .specialize-card:hover::before {
    transform: scaleX(1);
} */

.specialize-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lighter-red), var(--light-red));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.specialize-card:hover .specialize-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    /* transform: scale(1.05) rotate(-5deg); */
}

.specialize-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.specialize-card:hover .specialize-icon i {
    color: var(--white);
}

.specialize-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.specialize-description {
    font-size: 1rem;
    line-height: 1.8;
     
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-read-more:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-gray);
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

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

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--secondary-color) 100%);
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--white);
}

.footer-logo i {
    font-size: 2.25rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-contact i {
    font-size: 1.25rem;
    color: var(--white);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top i {
    font-size: 1.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Desktop (≥992px) */
@media (min-width: 992px) {
    .dialys-content {
        padding-right: 2rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .dialys-section {
        padding: 40px 0 60px;
    }
    
    .dialys-image-wrapper {
        margin-top: 3rem;
    }
    
    .stats-section {
        margin-top: 0;
    }
    
    .stat-card-inner {
        padding: 1.2rem 1.5rem;
    }
    
    .floating-stat {
        display: none;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .dialys-section {
        padding: 30px 0 30px;
    }
    
    .dialys-title {
        font-size: 2.2rem;
    }
    .dialys-section .btn{ width: 100%;}
    .dialys-subtitle {
       font-size: 0.98rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dialys-cta-group {
        text-align: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-card-inner {
        padding: 1.2rem 1.5rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-header {
        flex-direction: column;
        text-align: center;
    }
    
    .info-box,
    .highlight-box {
        margin-top: 1.2rem;
    }
    .content-header{     gap: 0.85rem;
    margin-bottom: 0.65rem;}
    
    /* New sections responsive */
    .whydialys-section {
        padding: 30px 0;
    }
    
    .whydialys-title {
        font-size: 1.75rem;
    }
    
    .whydialys-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .sdlocations-section {
        padding: 30px 0;
    }
    
    .scdialys-title-locations {
        font-size: 1.75rem;
    }
    
    .sdlocation-card-inner {
        padding: 1.25rem;
    }
    
    .location-name {
        font-size: 1.5rem;
        margin-bottom: 0px;
    }
    .location-name::after{bottom: 22px;}
    
    .location-description {
        font-size: 0.95rem;
        margin-top: 0px;
    }
    
    .specialize-section {
        padding: 60px 0;
    }
    
    .scdialys-title-specialize {
        font-size: 1.75rem;
    }
    
    .specialize-card {
        padding:1.25rem;
    }
    
    .specialize-title {
        font-size: 1.2rem;
    }
    
    .specialize-description {
        font-size: 0.95rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .footer-bottom-links {
        margin-top: 1rem;
    }
    
    .decorative-dot,
    .decorative-cross,
    .bg-shape {
        display: none;
    }
}

/* Small Mobile (≤576px) */
@media (max-width: 576px) {
  .trust-badges{padding-top: 0.6rem; margin-top: 0px !important;}
    
    .scdialys-main-title {
        font-size: 1.62rem;
    }
    .dialys-cta-group{margin-bottom: 0.3rem;}
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .treatmentdialys-card {
        padding: 1.5rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

 